/* =========================================================
 * roobet bonus - style.css
 * Site: roobetbonus.click
 * All custom classes use the "se4c-" prefix.
 * Mobile-first: max-width 430px viewport.
 * Code comments in English only.
 * ========================================================= */

:root {
  --se4c-primary: #FF9800;      /* orange */
  --se4c-primary-2: #FFF176;    /* warm yellow */
  --se4c-bg: #1A1A2E;           /* deep navy */
  --se4c-bg-2: #15152a;         /* darker navy */
  --se4c-soft: #FFE4B5;         /* navajo white */
  --se4c-pink: #FFCCCB;         /* soft pink */
  --se4c-text: #f6f7fb;
  --se4c-text-dim: #b6b9cc;
  --se4c-card: #21213c;
  --se4c-card-2: #2a2a48;
  --se4c-border: rgba(255, 152, 0, 0.25);
  --se4c-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --se4c-radius: 14px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--se4c-bg);
  color: var(--se4c-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--se4c-primary-2); text-decoration: none; }
a:hover, a:focus { color: var(--se4c-primary); }

h1, h2, h3, h4 {
  margin: 0 0 .6rem;
  font-weight: 700;
  line-height: 1.4rem;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1rem; color: var(--se4c-text-dim); }

/* ---------- Layout helpers ---------- */
.se4c-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.se4c-wrapper { padding: 1rem 0; }
.se4c-section { padding: 2.4rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.se4c-section-title {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.8rem;
  color: var(--se4c-soft);
  margin-bottom: 1.4rem;
}
.se4c-section-title i { color: var(--se4c-primary); }
.se4c-text-orange { color: var(--se4c-primary); font-weight: 700; }
.se4c-text-yellow { color: var(--se4c-primary-2); font-weight: 700; }

/* ---------- Header ---------- */
.se4c-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #20203a 0%, #1A1A2E 100%);
  border-bottom: 2px solid var(--se4c-border);
  box-shadow: var(--se4c-shadow);
}
.se4c-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem 1rem;
  min-height: 5.6rem;
}
.se4c-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: 1;
  min-width: 0;
}
.se4c-brand img { width: 3rem; height: 3rem; border-radius: 8px; }
.se4c-brand-text {
  font-weight: 800;
  font-size: 1.65rem;
  background: linear-gradient(90deg, var(--se4c-primary) 0%, var(--se4c-primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
}
.se4c-header-actions { display: flex; align-items: center; gap: .5rem; }

.se4c-menu-btn {
  background: transparent;
  border: 1px solid var(--se4c-border);
  color: var(--se4c-text);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.se4c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  min-height: 4rem;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.se4c-btn:active { transform: scale(.96); }
.se4c-btn-primary {
  background: linear-gradient(90deg, var(--se4c-primary) 0%, #ff7a00 100%);
  color: #1A1A2E;
  box-shadow: 0 6px 16px rgba(255,152,0,.35);
}
.se4c-btn-secondary {
  background: linear-gradient(90deg, var(--se4c-primary-2) 0%, #f0d860 100%);
  color: #1A1A2E;
  box-shadow: 0 6px 16px rgba(255,241,118,.28);
}
.se4c-btn-outline {
  background: transparent;
  color: var(--se4c-text);
  border: 2px solid var(--se4c-primary);
}
.se4c-btn-block { width: 100%; }
.se4c-btn-lg { padding: 1.2rem 2rem; font-size: 1.5rem; }

/* ---------- Mobile slide menu ---------- */
.se4c-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 9998;
}
.se4c-overlay-show { opacity: 1; visibility: visible; }

.se4c-mobile-menu {
  position: fixed;
  top: 0;
  right: -85%;
  width: 80%;
  height: 100vh;
  background: var(--se4c-bg-2);
  z-index: 9999;
  transition: right .3s ease;
  padding: 1.4rem;
  overflow-y: auto;
}
.se4c-menu-open { right: 0; }
.se4c-mobile-menu h4 {
  color: var(--se4c-primary-2);
  margin: 1.6rem 0 .8rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
}
.se4c-mobile-menu a {
  display: block;
  padding: 1rem 1rem;
  border-radius: 10px;
  color: var(--se4c-text);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 1.4rem;
}
.se4c-mobile-menu a:active { background: rgba(255,152,0,.12); }
.se4c-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--se4c-text);
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- Carousel ---------- */
.se4c-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--se4c-radius);
  margin: 1.4rem 0;
  box-shadow: var(--se4c-shadow);
}
.se4c-carousel-track {
  display: flex;
  transition: transform .5s ease;
  width: 100%;
}
.se4c-carousel-slide {
  min-width: 100%;
  position: relative;
}
.se4c-carousel-slide img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}
.se4c-carousel-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 1rem;
  border-radius: 10px;
}
.se4c-carousel-caption h3 { font-size: 1.5rem; margin: 0 0 .3rem; color: var(--se4c-soft); }
.se4c-carousel-caption p { margin: 0; font-size: 1.2rem; color: var(--se4c-pink); }
.se4c-carousel-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .8rem;
}
.se4c-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
}
.se4c-dot-active { background: var(--se4c-primary); width: 2rem; border-radius: 4px; }

/* ---------- Game grid & cards ---------- */
.se4c-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.se4c-tab {
  background: var(--se4c-card);
  color: var(--se4c-text-dim);
  border: 1px solid var(--se4c-border);
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: capitalize;
}
.se4c-tab.se4c-tab-active { background: var(--se4c-primary); color: #1A1A2E; }

.se4c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.se4c-grid-4 { grid-template-columns: repeat(4, 1fr); }
.se4c-game-card {
  background: var(--se4c-card);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, border-color .15s ease;
}
.se4c-game-card:active { transform: scale(.95); border-color: var(--se4c-primary); }
.se4c-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.se4c-game-card .se4c-game-name {
  font-size: 1.1rem;
  padding: .5rem .3rem;
  color: var(--se4c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Cards ---------- */
.se4c-card {
  background: var(--se4c-card);
  border-radius: var(--se4c-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: var(--se4c-shadow);
}
.se4c-card-accent { border-left: 4px solid var(--se4c-primary); }
.se4c-card-soft { background: linear-gradient(135deg, var(--se4c-card) 0%, var(--se4c-card-2) 100%); }

.se4c-list { list-style: none; padding: 0; margin: 0; }
.se4c-list li {
  padding: .8rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.se4c-list li i { color: var(--se4c-primary); margin-top: .2rem; }

/* ---------- Steps ---------- */
.se4c-steps { counter-reset: step; padding: 0; list-style: none; }
.se4c-steps li {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4.2rem;
  background: var(--se4c-card);
  border-radius: 10px;
  margin-bottom: .8rem;
}
.se4c-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--se4c-primary);
  color: #1A1A2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}

/* ---------- Testimonial / winners ---------- */
.se4c-testimonial {
  background: var(--se4c-card-2);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: .8rem;
  border-left: 3px solid var(--se4c-primary-2);
}
.se4c-testimonial .se4c-quote { font-style: italic; color: var(--se4c-text); font-size: 1.3rem; }
.se4c-testimonial .se4c-author { margin-top: .6rem; font-size: 1.15rem; color: var(--se4c-pink); }

/* ---------- Payment ---------- */
.se4c-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.se4c-pay-item {
  background: var(--se4c-card);
  border-radius: 10px;
  padding: .8rem .4rem;
  text-align: center;
  font-size: 1rem;
  color: var(--se4c-text-dim);
}
.se4c-pay-item i { font-size: 1.8rem; color: var(--se4c-primary); display: block; margin-bottom: .3rem; }

/* ---------- RTP table ---------- */
.se4c-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.se4c-table th, .se4c-table td {
  padding: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.se4c-table th { color: var(--se4c-primary-2); font-weight: 700; }

/* ---------- Badges / chips ---------- */
.se4c-chip {
  display: inline-block;
  background: rgba(255,152,0,.15);
  color: var(--se4c-primary);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: 1.1rem;
  margin: .2rem .2rem 0 0;
}
.se4c-chip-soft { background: rgba(255,241,118,.15); color: var(--se4c-primary-2); }

/* ---------- Promo banner ---------- */
.se4c-banner {
  background: radial-gradient(circle at top left, rgba(255,152,0,.25), transparent 60%),
              linear-gradient(135deg, #23234a 0%, #15152a 100%);
  border-radius: var(--se4c-radius);
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--se4c-border);
  margin-bottom: 1.4rem;
}
.se4c-banner h2 { color: var(--se4c-primary); }
.se4c-banner p { color: var(--se4c-soft); }

/* ---------- App download ---------- */
.se4c-app-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.se4c-app-row .se4c-btn { flex: 1; min-width: 14rem; }

/* ---------- Footer ---------- */
.se4c-footer {
  background: var(--se4c-bg-2);
  padding: 2.4rem 1.2rem;
  margin-top: 2rem;
  border-top: 2px solid var(--se4c-border);
}
.se4c-footer h4 {
  color: var(--se4c-primary-2);
  font-size: 1.4rem;
  margin-bottom: .8rem;
  text-transform: uppercase;
  letter-spacing: .08rem;
}
.se4c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .8rem 0 1.4rem;
}
.se4c-footer-links a {
  background: var(--se4c-card);
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--se4c-text);
}
.se4c-footer-links a:hover { background: var(--se4c-primary); color: #1A1A2E; }
.se4c-footer-copy {
  font-size: 1.1rem;
  color: var(--se4c-text-dim);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.2rem;
}

/* ---------- Bottom nav (mobile only) ---------- */
.se4c-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #20203a 0%, #15152a 100%);
  border-top: 2px solid var(--se4c-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: .3rem 0;
  height: 6rem;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,.4);
}
.se4c-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  min-width: 6rem;
  min-height: 5.6rem;
  color: var(--se4c-text-dim);
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
}
.se4c-bottom-nav a i,
.se4c-bottom-nav a .material-symbols-outlined {
  font-size: 2.2rem;
  transition: transform .15s ease, color .2s ease;
}
.se4c-bottom-nav a:active i,
.se4c-bottom-nav a:active .material-symbols-outlined {
  transform: scale(1.15);
}
.se4c-bottom-nav a.se4c-nav-active { color: var(--se4c-primary); }
.se4c-bottom-nav a.se4c-nav-active .material-symbols-outlined,
.se4c-bottom-nav a.se4c-nav-active i { color: var(--se4c-primary); }
.se4c-bottom-nav .se4c-nav-badge {
  position: absolute;
  top: .3rem;
  right: 1.4rem;
  background: #ff4d4d;
  color: #fff;
  font-size: .9rem;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .3rem;
}

/* ---------- Back-to-top ---------- */
.se4c-back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 7.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--se4c-primary);
  color: #1A1A2E;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Utilities ---------- */
.se4c-mt-1 { margin-top: .5rem; }
.se4c-mt-2 { margin-top: 1rem; }
.se4c-mt-3 { margin-top: 1.6rem; }
.se4c-mb-0 { margin-bottom: 0; }
.se4c-center { text-align: center; }
.se4c-hidden { display: none !important; }
.se4c-flex { display: flex; gap: .8rem; align-items: center; }
.se4c-flex-wrap { flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (min-width: 769px) {
  .se4c-bottom-nav { display: none; }
  .se4c-back-top { bottom: 2rem; }
}

@media (max-width: 768px) {
  main { padding-bottom: 8rem; } /* keep content above bottom nav */
}

/* Pull mobile container in slightly on very small phones */
@media (max-width: 360px) {
  .se4c-grid { grid-template-columns: repeat(2, 1fr); }
  .se4c-pay-grid { grid-template-columns: repeat(3, 1fr); }
}
