/* =========================================
   Kriya Casino — style.css
   Brand palette:
     --orange : #f26522
     --green  : #2d8b6b  /  #1a6b4a
     --dark   : #0a0a0a  /  #111111
   ========================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #f26522;
  --orange-hover:  #d94e0a;
  --orange-dim:    rgba(242,101,34,.15);
  --green:         #2d8b6b;
  --green-dark:    #1a6b4a;
  --green-light:   #3aab84;
  --dark:          #0a0a0a;
  --dark2:         #111111;
  --dark3:         #181818;
  --dark4:         #222222;
  --section-green: #1e5c42;
  --text:          #ffffff;
  --text-dim:      #b0b8c0;
  --text-muted:    #778899;
  --border:        rgba(255,255,255,.08);
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 4px 24px rgba(0,0,0,.5);
  --font:          'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(.97); }

.btn.accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(242,101,34,.35);
}
.btn.accent:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 24px rgba(242,101,34,.5);
}

.btn.outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,.5);
}
.btn.outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.06);
}

.btn.secondary {
  background: var(--green);
  color: #fff;
}
.btn.secondary:hover { background: var(--green-light); }

.btn.lg { padding: .85rem 2rem; font-size: 1rem; }
.btn.full { width: 100%; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.7); }

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo__icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #f26522, #e84a0c);
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
}
.logo__text {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav */
.desktop_nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  justify-content: center;
}
.desktop_nav a {
  color: var(--text-dim);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: color .2s;
  text-decoration: none;
}
.desktop_nav a:hover { color: var(--orange); }

/* Header buttons */
.header__buttons { display: flex; gap: .6rem; align-items: center; }

/* Mobile menu button */
.mobile_menu_button {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.mobile_menu_button span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.mobile_menu_button.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile_menu_button.active span:nth-child(2) { opacity: 0; }
.mobile_menu_button.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile_menu_container {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark2);
  z-index: 199;
  padding: 2rem 5%;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s;
}
.mobile_menu_container.open {
  transform: translateX(0);
}
.mobile_menu_container nav a {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.mobile_menu_container .mobile_btns {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  padding: 120px 0 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(242,101,34,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange-dim);
  border: 1px solid rgba(242,101,34,.3);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { margin-bottom: 1rem; }
.hero h1 span { color: var(--orange); }

.hero__desc {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.hero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero__stats {
  display: flex;
  gap: 2rem;
}
.hero__stat .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.hero__stat .lbl {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Hero image card */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  width: 100%;
  max-width: 380px;
}
.hero__card-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.bonus__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
}
.bonus__sub { color: var(--text-dim); font-size: .875rem; margin-bottom: 1.5rem; }
.bonus__list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.bonus__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-dim);
}
.bonus__list li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================
   SECTION BASE
   ========================================== */
.section { padding: 70px 0; }
.section--green { background: var(--section-green); }
.section--dark2 { background: var(--dark2); }
.section--dark3 { background: var(--dark3); }

.section__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section__title { margin-bottom: .6rem; }
.section__sub {
  color: var(--text-dim);
  font-size: .95rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ==========================================
   INFO TABLE (general info)
   ========================================== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0,0,0,.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table td {
  padding: .8rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .875rem;
  vertical-align: middle;
}
.info-table td:first-child {
  font-weight: 700;
  color: var(--text-dim);
  width: 38%;
}
.info-table td:last-child { color: var(--text); }
.info-table tr:last-child td { border-bottom: none; }
.info-table .green { color: #4cd98a; font-weight: 700; }
.info-table .orange { color: var(--orange); font-weight: 700; }

/* ==========================================
   MEDIA BLOCKS (alternating left/right)
   ========================================== */
.media_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
.media_block:last-child { margin-bottom: 0; }
.media_block.reverse { direction: rtl; }
.media_block.reverse > * { direction: ltr; }

.media_block__img {
  background: var(--dark4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.media_block__content h2,
.media_block__content h3 { margin-bottom: 1rem; }
.media_block__content p { color: var(--text-dim); margin-bottom: 1rem; line-height: 1.8; }

/* ==========================================
   STEPS LIST
   ========================================== */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step__num {
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: .875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__body h4 { margin-bottom: .2rem; font-size: .95rem; }
.step__body p { color: var(--text-dim); font-size: .875rem; }

/* ==========================================
   GAMES GRID
   ========================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.game-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.game-card__thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.game-card__thumb.g1 { background: linear-gradient(135deg,#1a0a00,#3a1800); }
.game-card__thumb.g2 { background: linear-gradient(135deg,#001a0a,#003820); }
.game-card__thumb.g3 { background: linear-gradient(135deg,#0a0018,#180038); }
.game-card__thumb.g4 { background: linear-gradient(135deg,#001818,#003030); }
.game-card__thumb.g5 { background: linear-gradient(135deg,#180a00,#382000); }
.game-card__thumb.g6 { background: linear-gradient(135deg,#00100a,#002820); }

.game-card__body { padding: 1rem 1.2rem; }
.game-card__body h4 { font-size: .95rem; margin-bottom: .3rem; }
.game-card__body p { color: var(--text-dim); font-size: .8rem; }
.game-tag {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 4px;
  margin-top: .5rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ==========================================
   PAYMENTS TABLE
   ========================================== */
.payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.payments-table th {
  background: var(--dark4);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .78rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 2px solid var(--border);
}
.payments-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.payments-table tr:last-child td { border-bottom: none; }
.payments-table tr:hover td { background: rgba(255,255,255,.02); }
.badge-instant {
  background: rgba(76,217,138,.12);
  color: #4cd98a;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 4px;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq_item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq_item.open { border-color: var(--orange); }
.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  user-select: none;
}
.faq_question .arrow {
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq_item.open .faq_question .arrow { transform: rotate(45deg); }
.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq_answer__inner {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-dim);
  font-size: .875rem;
  line-height: 1.75;
}

/* ==========================================
   BONUS BANNER
   ========================================== */
.bonus-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--section-green));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(242,101,34,.15), transparent 70%);
}
.bonus-banner__amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.bonus-banner__desc { color: var(--text-dim); font-size: .9rem; margin-top: .3rem; }

/* ==========================================
   BOTTOM PANEL (sticky CTA)
   ========================================== */
.bottom_panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: .75rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform .3s;
}
.bottom_panel.hidden { transform: translateY(100%); }
.bottom_panel__text .title {
  font-weight: 700;
  font-size: .9rem;
}
.bottom_panel__text .desc {
  font-size: .8rem;
  color: var(--text-dim);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 50px 0 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__brand p {
  color: var(--text-dim);
  font-size: .85rem;
  margin-top: .8rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer__col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  font-size: .85rem;
  margin-bottom: .45rem;
  transition: color .2s;
  text-decoration: none;
}
.footer__col a:hover { color: #fff; }

.footer__disclaimer {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  color: var(--text-muted);
  font-size: .75rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer__bottom p { color: var(--text-muted); font-size: .75rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .desktop_nav { display: none; }
  .header__buttons .btn.outline { display: none; }
  .mobile_menu_button { display: flex; }
  .mobile_menu_container { display: block; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

  .media_block { grid-template-columns: 1fr; }
  .media_block.reverse { direction: ltr; }

  .games-grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .games-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .bottom_panel { flex-wrap: wrap; }
  .bonus-banner { flex-direction: column; }
  .hero__stats { gap: 1.2rem; }

  .payments-table { font-size: .78rem; }
  .payments-table th,
  .payments-table td { padding: .6rem .7rem; }
}

/* =========================================
   Kriya Casino — style.css
   Brand palette:
     --orange      : #f26522
     --green       : #2d8b6b  (hero / green sections)
     --green-dark  : #1e5c42
     --body-bg     : #ffffff  (white main bg)
     --header-bg   : #0a0a0a  (black header)
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #f26522;
  --orange-hover:  #d94e0a;
  --orange-dim:    rgba(242,101,34,.12);
  --green:         #2d8b6b;
  --green-dark:    #1e5c42;
  --green-light:   #3aab84;
  --green-pale:    #f0f7f4;
  --body-bg:       #ffffff;
  --header-bg:     #0a0a0a;
  --footer-bg:     #111111;
  --text-dark:     #1a1a1a;
  --text-mid:      #555555;
  --text-muted:    #888888;
  --text-white:    #ffffff;
  --text-white-dim:rgba(255,255,255,.75);
  --border-light:  rgba(0,0,0,.08);
  --border-dark:   rgba(255,255,255,.08);
  --radius:        8px;
  --radius-lg:     14px;
  --shadow-card:   0 2px 16px rgba(0,0,0,.07);
  --font:          'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--body-bg);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font); font-size: .875rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: .7rem 1.6rem; border-radius: var(--radius);
  border: none; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn.accent {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 18px rgba(242,101,34,.4);
}
.btn.accent:hover { background: var(--orange-hover); box-shadow: 0 6px 24px rgba(242,101,34,.55); }

.btn.outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn.outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn.outline-dark {
  background: transparent; color: var(--text-dark);
  border: 2px solid rgba(0,0,0,.2);
}
.btn.outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn.secondary { background: var(--green); color: #fff; }
.btn.secondary:hover { background: var(--green-light); }

.btn.lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn.full { width: 100%; }

/* ---- CONTAINER ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* ==========================================
   HEADER (dark/black)
   ========================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.8); }

.header__top {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 1rem;
}

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo__icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg,#f26522,#e84a0c);
  clip-path: polygon(0 0,60% 0,100% 50%,60% 100%,0 100%,40% 50%);
  flex-shrink: 0;
}
.logo__text { font-size: 1.25rem; font-weight: 900; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; }

.desktop_nav {
  display: flex; align-items: center; gap: 1.4rem;
  flex: 1; justify-content: center;
}
.desktop_nav a {
  color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 600;
  letter-spacing: .3px; text-transform: uppercase; text-decoration: none;
  transition: color .2s;
}
.desktop_nav a:hover { color: var(--orange); opacity: 1; }

.header__buttons { display: flex; gap: .6rem; align-items: center; }

.mobile_menu_button {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.mobile_menu_button span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.mobile_menu_button.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile_menu_button.active span:nth-child(2) { opacity: 0; }
.mobile_menu_button.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile_menu_container {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: #0f0f0f; z-index: 199;
  padding: 2rem 5%; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s;
}
.mobile_menu_container.open { transform: translateX(0); }
.mobile_menu_container nav a {
  display: block; padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #fff; font-weight: 600; font-size: 1rem; text-decoration: none;
}
.mobile_menu_container .mobile_btns { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }

/* ==========================================
   HERO (green background, white text)
   ========================================== */
.hero {
  padding: 120px 0 70px;
  background: var(--green);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #3aab84 100%);
}
.hero::after {
  content: ''; position: absolute;
  right: -80px; bottom: -80px;
  width: 420px; height: 420px;
  border: 70px solid rgba(255,255,255,.05);
  border-radius: 50%; pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.1rem;
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: blink 1.8s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--orange); }

.hero__desc { color: var(--text-white-dim); font-size: 1rem; margin-bottom: 2rem; max-width: 460px; }
.hero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2.5rem; }
.hero__stat .num { font-size: 1.7rem; font-weight: 900; color: var(--orange); }
.hero__stat .lbl { font-size: .7rem; color: var(--text-white-dim); text-transform: uppercase; letter-spacing: .8px; }

.hero__visual { display: flex; justify-content: center; }
.hero__card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 2rem;
  width: 100%; max-width: 360px; color: #fff;
}
.hero__card-title {
  font-size: .75rem; font-weight: 700;
  color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 1rem;
}
.bonus__amount { font-size: 2.6rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: .3rem; }
.bonus__sub { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 1.4rem; }
.bonus__list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.bonus__list li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.8); }
.bonus__list li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 70px 0; }
.section--white     { background: var(--body-bg); }
.section--pale      { background: var(--green-pale); }
.section--green     { background: var(--green); color: #fff; }
.section--green-dark{ background: var(--green-dark); color: #fff; }

.section__label { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
.section__title { margin-bottom: .6rem; }
.section__sub { font-size: .95rem; max-width: 560px; margin-bottom: 2.5rem; }
.section--white .section__sub,
.section--pale  .section__sub  { color: var(--text-mid); }
.section--green .section__sub,
.section--green-dark .section__sub { color: var(--text-white-dim); }

/* ==========================================
   INFO TABLE
   ========================================== */
.info-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }

.section--white .info-table,
.section--pale  .info-table  { background: #fff; border: 1px solid var(--border-light); }
.section--white .info-table td,
.section--pale  .info-table td { color: var(--text-dark); border-bottom: 1px solid rgba(0,0,0,.05); }
.section--white .info-table td:first-child,
.section--pale  .info-table td:first-child { color: var(--text-mid); font-weight: 700; background: var(--green-pale); width: 38%; }

.section--green .info-table,
.section--green-dark .info-table { background: rgba(0,0,0,.15); }
.section--green .info-table td,
.section--green-dark .info-table td { color: #fff; border-bottom: 1px solid rgba(255,255,255,.07); }
.section--green .info-table td:first-child,
.section--green-dark .info-table td:first-child { color: rgba(255,255,255,.65); font-weight: 700; width: 38%; }

.info-table td { padding: .8rem 1.2rem; font-size: .875rem; vertical-align: middle; }
.info-table tr:last-child td { border-bottom: none; }
.tag-green  { display:inline-block; background:rgba(45,139,107,.13); color:#1e7a55; font-size:.75rem; font-weight:700; padding:.2rem .55rem; border-radius:4px; }
.tag-orange { display:inline-block; background:var(--orange-dim); color:var(--orange); font-size:.75rem; font-weight:700; padding:.2rem .55rem; border-radius:4px; }
.section--green  .tag-green,
.section--green-dark .tag-green { background:rgba(255,255,255,.15); color:#fff; }

/* ==========================================
   MEDIA BLOCKS
   ========================================== */
.media_block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start; margin-bottom: 4rem;
}
.media_block:last-child { margin-bottom: 0; }
.media_block.reverse { direction: rtl; }
.media_block.reverse > * { direction: ltr; }

.media_block__img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4.5rem;
}
.section--white .media_block__img,
.section--pale  .media_block__img { background: var(--green-pale); border: 1px solid rgba(0,0,0,.06); }
.section--green .media_block__img,
.section--green-dark .media_block__img { background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.1); }

.media_block__content h2,
.media_block__content h3 { margin-bottom: .9rem; }
.section--white .media_block__content p,
.section--pale  .media_block__content p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.section--green .media_block__content p,
.section--green-dark .media_block__content p { color: var(--text-white-dim); margin-bottom: 1rem; line-height: 1.8; }

/* ==========================================
   STEPS
   ========================================== */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__num { width: 36px; height: 36px; background: var(--orange); color: #fff; font-weight: 900; font-size: .875rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step__body h4 { margin-bottom: .2rem; font-size: .95rem; }
.section--white .step__body p,
.section--pale  .step__body p { color: var(--text-mid); font-size: .875rem; }
.section--green .step__body p,
.section--green-dark .step__body p { color: var(--text-white-dim); font-size: .875rem; }

/* ==========================================
   GAMES GRID
   ========================================== */
.games-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.game-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer; box-shadow: var(--shadow-card);
}
.game-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(242,101,34,.15); }
.game-card__thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.game-card__thumb.g1 { background: linear-gradient(135deg,#1a0a00,#3a1800); }
.game-card__thumb.g2 { background: linear-gradient(135deg,#001a0a,#003820); }
.game-card__thumb.g3 { background: linear-gradient(135deg,#0a0018,#180038); }
.game-card__thumb.g4 { background: linear-gradient(135deg,#001818,#003030); }
.game-card__thumb.g5 { background: linear-gradient(135deg,#180a00,#382000); }
.game-card__thumb.g6 { background: linear-gradient(135deg,#0a1800,#1e3800); }
.game-card__body { padding: 1rem 1.2rem; }
.game-card__body h4 { font-size: .95rem; margin-bottom: .3rem; color: var(--text-dark); }
.game-card__body p  { color: var(--text-mid); font-size: .8rem; }
.game-tag { display:inline-block; background:var(--orange-dim); color:var(--orange); font-size:.68rem; font-weight:700; padding:.18rem .55rem; border-radius:4px; margin-top:.5rem; letter-spacing:.5px; text-transform:uppercase; }

/* ==========================================
   BONUS BANNER
   ========================================== */
.bonus-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; margin-bottom: 2.5rem;
}
.bonus-banner::before { content:''; position:absolute; right:-60px; top:-60px; width:260px; height:260px; background:radial-gradient(circle,rgba(242,101,34,.18),transparent 70%); pointer-events:none; }
.bonus-banner__amount { font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.bonus-banner__desc   { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .3rem; }

/* ==========================================
   PAYMENTS TABLE
   ========================================== */
.payments-table { width:100%; border-collapse:collapse; font-size:.875rem; background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-card); }
.payments-table th { background:var(--green); color:#fff; padding:.8rem 1.1rem; text-align:left; font-size:.78rem; letter-spacing:.5px; text-transform:uppercase; font-weight:700; }
.payments-table td { padding:.8rem 1.1rem; border-bottom:1px solid var(--border-light); vertical-align:middle; color:var(--text-dark); }
.payments-table tr:last-child td { border-bottom:none; }
.payments-table tr:hover td { background:var(--green-pale); }
.badge-instant { background:rgba(45,139,107,.1); color:var(--green-dark); font-size:.72rem; font-weight:700; padding:.22rem .6rem; border-radius:4px; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { display:flex; flex-direction:column; gap:.6rem; }
.faq_item { background:#fff; border:1px solid var(--border-light); border-radius:var(--radius); overflow:hidden; transition:border-color .2s; box-shadow:var(--shadow-card); }
.faq_item.open { border-color:var(--orange); }
.faq_question { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.1rem 1.4rem; cursor:pointer; font-weight:600; font-size:.9rem; color:var(--text-dark); user-select:none; }
.faq_question .arrow { color:var(--orange); font-size:1.1rem; transition:transform .3s; flex-shrink:0; }
.faq_item.open .faq_question .arrow { transform:rotate(45deg); }
.faq_answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq_answer__inner { padding:0 1.4rem 1.2rem; color:var(--text-mid); font-size:.875rem; line-height:1.75; }

/* ==========================================
   BULLET LIST
   ========================================== */
.bullet-list { display:flex; flex-direction:column; gap:.55rem; }
.bullet-list li { display:flex; gap:.7rem; align-items:flex-start; }
.bullet-list .bul { color:var(--orange); font-weight:900; flex-shrink:0; margin-top:.05em; }
.section--white .bullet-list span,
.section--pale  .bullet-list span { color:var(--text-mid); font-size:.9rem; }
.section--green .bullet-list span,
.section--green-dark .bullet-list span { color:var(--text-white-dim); font-size:.9rem; }

/* ==========================================
   BOTTOM PANEL
   ========================================== */
.bottom_panel { position:fixed; bottom:0; left:0; right:0; z-index:150; background:var(--header-bg); border-top:1px solid rgba(255,255,255,.08); padding:.75rem 5%; display:flex; align-items:center; justify-content:space-between; gap:1rem; transition:transform .3s; }
.bottom_panel.hidden { transform:translateY(100%); }
.bottom_panel__text .title { font-weight:700; font-size:.9rem; color:#fff; }
.bottom_panel__text .desc  { font-size:.78rem; color:rgba(255,255,255,.55); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background:var(--footer-bg); border-top:2px solid var(--green); padding:50px 0 20px; color:#fff; }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2.5rem; margin-bottom:2.5rem; }
.footer__brand p { color:rgba(255,255,255,.45); font-size:.85rem; margin-top:.8rem; max-width:280px; line-height:1.7; }
.footer__col h5 { font-size:.75rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--orange); margin-bottom:.9rem; }
.footer__col a { display:block; color:rgba(255,255,255,.45); font-size:.85rem; margin-bottom:.45rem; transition:color .2s; text-decoration:none; }
.footer__col a:hover { color:#fff; opacity:1; }
.footer__disclaimer { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:var(--radius); padding:1rem 1.4rem; color:rgba(255,255,255,.3); font-size:.75rem; line-height:1.6; margin-bottom:1.5rem; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:1.2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.8rem; }
.footer__bottom p { color:rgba(255,255,255,.3); font-size:.75rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width:960px) {
  .desktop_nav { display:none; }
  .header__buttons .btn.outline-white { display:none; }
  .mobile_menu_button { display:flex; }
  .mobile_menu_container { display:block; }
  .hero__inner { grid-template-columns:1fr; }
  .hero__visual { display:none; }
  .media_block { grid-template-columns:1fr; }
  .media_block.reverse { direction:ltr; }
  .games-grid { grid-template-columns:1fr 1fr; }
  .footer__grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:600px) {
  .hero { padding-top:100px; }
  .games-grid { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr; }
  .bottom_panel { flex-wrap:wrap; }
  .bonus-banner { flex-direction:column; }
  .hero__stats { gap:1.2rem; }
  .payments-table { font-size:.78rem; }
  .payments-table th, .payments-table td { padding:.6rem .8rem; }
}