:root {
  --radius: 0.5rem;
  --background: oklch(0.19 0.012 250);
  --foreground: oklch(0.97 0.005 250);
  --surface: oklch(0.24 0.014 250);
  --card: oklch(0.23 0.013 250);
  --primary: oklch(0.62 0.17 148);
  --primary-foreground: oklch(0.99 0.01 150);
  --secondary: oklch(0.29 0.015 250);
  --muted-foreground: oklch(0.74 0.012 250);
  --accent: oklch(0.75 0.17 62);
  --brand: oklch(0.72 0.15 178);
  --gold: oklch(0.78 0.16 70);
  --gold-foreground: oklch(0.2 0.03 60);
  --destructive: oklch(0.6 0.22 27);
  --border: oklch(0.33 0.014 250);

  --gradient-gold: linear-gradient(100deg, oklch(0.78 0.16 70), oklch(0.72 0.19 48));
  --gradient-surface: linear-gradient(180deg, oklch(0.26 0.014 250), oklch(0.21 0.012 250));
  --shadow-glow: 0 12px 34px -14px oklch(0.62 0.17 148 / 0.65);
  --shadow-card: 0 10px 30px -18px oklch(0 0 0 / 0.9);

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-sans: "Barlow", system-ui, sans-serif;
}

* { border-color: var(--border); }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.01em; }

.container-app { max-width: 48rem; margin-inline: auto; padding-inline: 0.75rem; }

.text-muted-2 { color: var(--muted-foreground); }
.text-accent-2 { color: var(--accent); }
.text-primary-2 { color: var(--primary); }
.text-brand-2 { color: var(--brand); }
.text-gold-2 { color: var(--gold); }
.text-destructive-2 { color: var(--destructive); }
.bg-secondary-2 { background-color: var(--secondary); }
.bg-card-2 { background-color: var(--card); }
.border-2px { border: 1px solid var(--border); }

.surface-panel {
  background-image: var(--gradient-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}

.text-gradient-gold {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0;
}
.section-title.lg { font-size: 1.875rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--border);
  background-color: color-mix(in oklab, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
}
.header-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 0.75rem; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; flex: 1 1 auto; min-width: 0; }
.icon-btn {
  display: grid; place-items: center; height: 2.25rem; width: 2.25rem;
  border: 0; background: transparent; color: var(--foreground); border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-panel { border-top: 1px solid var(--border); background-color: var(--card); }
.nav-panel ul { list-style: none; margin: 0; padding: 0.5rem 0.75rem; }
.nav-panel a {
  display: block; padding: 0.75rem 0; font-size: 15px; font-weight: 500;
  color: var(--foreground); text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.nav-panel li:last-child a { border-bottom: 0; }
.nav-panel a.active, .nav-panel a:hover { color: var(--primary); }

/* Buttons */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: var(--radius); font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; transition: transform .12s ease, filter .12s ease;
  border: 0;
}
.btn-wa:active { transform: scale(0.98); }
.btn-wa.v-primary { background-color: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-glow); }
.btn-wa.v-primary:hover { filter: brightness(1.1); color: var(--primary-foreground); }
.btn-wa.v-gold { background-image: var(--gradient-gold); color: var(--gold-foreground); }
.btn-wa.v-gold:hover { filter: brightness(1.05); color: var(--gold-foreground); }
.btn-wa.v-outline { border: 1px solid color-mix(in oklab, var(--primary) 60%, transparent); color: var(--primary); background: color-mix(in oklab, var(--primary) 10%, transparent); }
.btn-wa.v-ghost { background: var(--secondary); color: var(--foreground); }
.btn-wa.s-sm { height: 2.25rem; padding: 0 0.75rem; font-size: 0.875rem; }
.btn-wa.s-md { height: 2.75rem; padding: 0 1.25rem; font-size: 15px; }
.btn-wa.s-lg { width: 100%; padding: 0.875rem 1.5rem; font-size: 1rem; }

/* Form */
.field {
  height: 3rem; width: 100%; border-radius: 0.375rem; background: var(--secondary);
  padding: 0 0.75rem; font-size: 15px; color: var(--foreground); border: 0; outline: none;
}
.field::placeholder { color: var(--muted-foreground); }
.field:focus { box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 50%, transparent); }
.field-label { display: block; font-weight: 700; margin-bottom: 0.5rem; }
.pw-toggle { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--muted-foreground); padding: 0.5rem; }
.chk { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.25rem; accent-color: oklch(0.62 0.17 148); }

/* Hero */
.hero { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.hero img { height: 14rem; width: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), color-mix(in oklab, var(--background) 70%, transparent), transparent); }
.hero-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.game-card { display: block; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); text-decoration: none; color: var(--foreground); }
.game-card img { height: 7rem; width: 100%; object-fit: cover; display: block; }

.step-icon { display: grid; place-items: center; height: 2.75rem; width: 2.75rem; flex-shrink: 0; border-radius: 999px; background: color-mix(in oklab, var(--primary) 15%, transparent); color: var(--primary); }

/* Reviews */
.review-scroll { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; }
.review-scroll::-webkit-scrollbar { height: 6px; }
.review-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.review-card { width: 16rem; flex-shrink: 0; scroll-snap-align: start; padding: 1rem; }

/* Accordion */
.faq .accordion-item { background: transparent; border: 0; border-bottom: 1px solid var(--border); }
.faq .accordion-button {
  background: transparent; color: var(--foreground); font-weight: 600; font-size: 15px;
  padding: 1rem 0; box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--foreground); background: transparent; }
.faq .accordion-button::after { filter: invert(1) grayscale(1) brightness(1.6); }
.faq .accordion-body { padding: 0 0 1rem; color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }

/* Footer */
.site-footer { margin-top: 2.5rem; background: var(--card); }
.support-bar { display: block; background: var(--secondary); padding: 0.75rem; text-align: center; font-size: 1.125rem; font-weight: 700; letter-spacing: 0.03em; color: var(--foreground); text-decoration: none; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; font-size: 0.875rem; }
.dot { height: 0.375rem; width: 0.375rem; border-radius: 999px; background: var(--primary); display: inline-block; }
.trust-circle { display: grid; place-items: center; height: 4rem; width: 4rem; border-radius: 999px; font-family: var(--font-display); font-weight: 700; }
.ssl-badge { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: var(--radius); background: color-mix(in oklab, var(--primary) 15%, transparent); padding: 0.5rem 0.75rem; }
.to-top { position: fixed; bottom: 1.25rem; right: 1rem; display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border: 0; border-radius: var(--radius); background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-glow); z-index: 1040; }

a { color: inherit; }
.link-primary-2 { color: var(--primary); text-decoration: underline; }
.link-accent-2 { color: var(--accent); text-decoration: underline; }
.lead-copy { font-size: 15px; line-height: 1.75; color: var(--muted-foreground); }

/* Icon sizing to match the original design */
.icon-btn svg { width: 1.5rem; height: 1.5rem; }
.surface-panel > svg { width: 1.75rem; height: 1.75rem; }
.step-icon svg { width: 1.25rem; height: 1.25rem; }
.review-card svg { width: 1rem; height: 1rem; fill: currentColor; }
.ssl-badge svg { width: 2rem; height: 2rem; }
.to-top svg { width: 1.25rem; height: 1.25rem; }
.btn-wa svg { width: 1.25rem; height: 1.25rem; }
.pw-toggle svg { width: 1.25rem; height: 1.25rem; }
.min-w-0 { min-width: 0; }
/* =========================================================
   REUSABLE CONTENT SECTIONS
   MOBILE FIRST
   ========================================================= */

.info-content-section {
    width: 100%;
    padding: 45px 0;
    background: #0d1115;
}

.info-content-section .container-app {
    width: 100%;
}


/* =========================================================
   DEFAULT ROW
   ========================================================= */

.info-content-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 28px;
}


/* =========================================================
   MOBILE ORDER
   IMPORTANT:
   EVERY SECTION = CONTENT → IMAGE
   ========================================================= */

@media (max-width: 991px) {

    .info-content-row .info-content-box {
        order: 1 !important;
    }

    .info-content-row .info-content-image {
        order: 2 !important;
    }

}


/* =========================================================
   CONTENT
   ========================================================= */

.info-content-box {
    width: 100%;
}

.info-content-label {
    display: inline-block;
    margin-bottom: 10px;

    color: #ff9417;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.info-content-box h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.info-content-box p {
    margin: 0 0 15px;

    color: #a7aeb6;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.info-content-box p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   IMAGE
   ========================================================= */

.info-content-image {
    width: 100%;

    overflow: hidden;

    border: 1px solid #293139;
    border-radius: 13px;

    background: #11161b;
}

.info-content-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* =========================================================
   BUTTON
   ========================================================= */

.info-content-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    margin-top: 20px;
    padding: 12px 24px;

    border: 0;
    border-radius: 8px;

    background: #19a943;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1;
    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.info-content-btn:hover {
    background: #15943a;
    color: #ffffff;
}

.info-content-btn:active {
    transform: scale(0.97);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 576px) and (max-width: 991px) {

    .info-content-section {
        padding: 55px 0;
    }

    .info-content-row {
        gap: 35px;
    }

    .info-content-box h2 {
        font-size: 31px;
    }

    .info-content-box p {
        font-size: 16px;
    }

    .info-content-image img {
        aspect-ratio: 16 / 9;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .info-content-section {
        padding: 75px 0;
    }

    .info-content-row {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 55px;

        align-items: center;
    }


    /* -----------------------------------------
       SECTION 1
       CONTENT | IMAGE
       ----------------------------------------- */

    .info-content-row:not(.info-content-row-reverse)
    .info-content-box {
        order: 1;
    }

    .info-content-row:not(.info-content-row-reverse)
    .info-content-image {
        order: 2;
    }


    /* -----------------------------------------
       SECTION 2
       IMAGE | CONTENT
       ----------------------------------------- */

    .info-content-row.info-content-row-reverse
    .info-content-image {
        order: 1;
    }

    .info-content-row.info-content-row-reverse
    .info-content-box {
        order: 2;
    }


    .info-content-box h2 {
        font-size: 35px;
    }

    .info-content-box p {
        font-size: 17px;
        line-height: 1.75;
    }

    .info-content-image {
        border-radius: 15px;
    }

    .info-content-image:hover img {
        transform: scale(1.03);
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .info-content-row {
        gap: 70px;
    }

    .info-content-box h2 {
        font-size: 37px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .info-content-image img,
    .info-content-btn {
        transition: none;
    }
}