/* ============================================
   LEMON CASINO - DESIGN SYSTEM
   Mobile-first | Dark-only fruity-vegas aesthetic
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * { min-width: 0; }

pre, code, .code-block {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }

p, li, td, th { overflow-wrap: break-word; }

input, textarea, select { max-width: 100%; }

section { overflow: clip; position: relative; }

/* ============================================
   BASE - Typography, colors, body background
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 227, 77, 0.08), transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(123, 203, 58, 0.08), transparent 70%),
        radial-gradient(ellipse 60% 40% at 0% 60%, rgba(255, 182, 39, 0.06), transparent 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
    color: var(--foreground);
}

h1 { font-size: clamp(2.2rem, 5.5vw + 0.5rem, 4.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 1.5vw + 0.8rem, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 0.8vw + 0.8rem, 1.35rem); font-weight: 600; }

p { margin: 0 0 1.25rem; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

ul, ol { padding-left: 1.25rem; margin: 0 0 1.25rem; }
li { margin-bottom: 0.35rem; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: .75rem 1rem;
    z-index: 9999;
    font-weight: 700;
}
.skip-link:focus { left: .5rem; top: .5rem; }

.eyebrow {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--secondary-2);
    padding: .4rem .75rem;
    background: rgba(123, 203, 58, 0.12);
    border: 1px solid rgba(123, 203, 58, 0.35);
    border-radius: 999px;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%, var(--secondary-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================
   LAYOUT - Container, sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section {
    padding: 4.5rem 0;
}
@media (min-width: 1024px) { .section { padding: 7.5rem 0; } }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.section-title { margin-bottom: .5rem; }
.section-sub { color: var(--muted-foreground); font-size: 1.05rem; }

/* ============================================
   HEADER - Fixed translucent glassmorphism
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 31, 21, 0.82);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
@media (min-width: 768px) {
    .site-header {
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        background: rgba(10, 31, 21, 0.65);
    }
}

.header-inner {
    height: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 768px) { .header-inner { padding: 0 2rem; } }

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--foreground);
    font-family: "Fraunces", serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 4px;
    box-shadow: 0 0 20px rgba(255, 227, 77, 0.4);
}
.brand-text { display: inline-block; }
.brand-accent { color: var(--primary); }

/* Nav - desktop */
.site-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}
@media (min-width: 1024px) { .site-nav { display: flex; } }

.nav-list {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-link {
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.97rem;
    padding: .5rem 0;
    position: relative;
    transition: color .2s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width .3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    gap: .6rem;
    align-items: center;
}

/* Mobile drawer - shown under 1024px */
@media (max-width: 1023.98px) {
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 1.5rem 1.25rem 2rem;
        background: var(--background);
        border-top: 1px solid var(--border);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.2,.8,.2,1);
        visibility: hidden;
    }
    .site-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .nav-list li {
        border-bottom: 1px solid var(--border);
        margin: 0;
    }
    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: .75rem .25rem;
        font-size: 1.05rem;
        font-weight: 600;
    }
    .nav-link::after { display: none; }
    .nav-cta {
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
    }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* Hamburger */
.menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS - Primary (pulse), ghost, large
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.5rem;
    min-height: 48px;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: .97rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .3s ease, background .3s ease, color .2s ease;
    white-space: nowrap;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 8px 24px rgba(255, 227, 77, 0.35), 0 0 0 rgba(255, 227, 77, 0);
}
.btn-primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 12px 36px rgba(255, 227, 77, 0.55), 0 0 40px rgba(255, 227, 77, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255, 227, 77, 0.08); border-color: var(--primary); color: var(--primary); }

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-2) 100%);
    color: var(--secondary-foreground);
}

.btn-lg {
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    min-height: 56px;
    border-radius: 14px;
}

.btn-block { width: 100%; }

/* Pulsing glow animation */
.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 227, 77, 0.35), 0 0 0 0 rgba(255, 227, 77, 0.5); }
    50%      { box-shadow: 0 10px 30px rgba(255, 227, 77, 0.55), 0 0 0 14px rgba(255, 227, 77, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   GLASS CARDS - Reusable glassmorphism surface
   ============================================ */
.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-card);
}

.glass-strong {
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ============================================
   GAME CARD - Reusable game showcase
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 520px) { .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 768px) { .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }

.game-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 0 40px rgba(255,227,77,.25);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
}
.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.game-card:hover .game-card-img { transform: scale(1.06); }
.game-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255,227,77,.5));
}
.game-card-badge {
    position: absolute;
    top: .75rem; left: .75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .7rem;
    font-weight: 800;
    padding: .3rem .6rem;
    border-radius: 999px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.game-card-cat {
    position: absolute;
    top: .75rem; right: .75rem;
    background: rgba(10,31,21,.8);
    color: var(--secondary-2);
    font-size: .7rem;
    font-weight: 600;
    padding: .3rem .6rem;
    border-radius: 999px;
}
.game-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1;
}
.game-card-title {
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}
.game-card-provider {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--secondary-2);
    margin: 0 0 .5rem;
}
.game-card .btn { margin-top: auto; }

/* ============================================
   BONUS CARD - Tall glass card with mascot
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }

.bonus-card {
    position: relative;
    background: linear-gradient(165deg, var(--card) 0%, var(--card-2) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    min-width: 0;
}
@media (min-width: 768px) { .bonus-card { padding: 2.25rem 1.75rem 2rem; } }

.bonus-card::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto auto;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,227,77,.22), transparent 70%);
    pointer-events: none;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 50px rgba(255,227,77,.2);
}
.bonus-card-highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255,227,77,.25), 0 24px 60px rgba(0,0,0,.5);
}
.bonus-card-mascot {
    position: absolute;
    font-size: 3.5rem;
    opacity: .9;
    top: -10px;
    right: 12px;
    transform: rotate(20deg);
    filter: drop-shadow(0 0 20px rgba(255,227,77,.5));
    pointer-events: none;
}
.bonus-card.pose-2 .bonus-card-mascot { right: auto; left: -8px; top: auto; bottom: 70px; transform: rotate(-15deg); font-size: 3rem; }
.bonus-card.pose-3 .bonus-card-mascot { right: 50%; top: -20px; transform: translateX(50%) rotate(0deg); font-size: 3rem; }
.bonus-card.pose-4 .bonus-card-mascot { right: -6px; bottom: 80px; top: auto; transform: rotate(-10deg); }

.bonus-card-head { position: relative; z-index: 1; }
.bonus-card-amount {
    display: block;
    font-family: "Fraunces", serif;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .35rem;
    letter-spacing: -0.02em;
}
.bonus-card-amount::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin-top: .4rem;
}
.bonus-card-title {
    font-size: 1.25rem;
    margin-bottom: .35rem;
    color: var(--foreground);
}
.bonus-card-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin: 0;
}
.bonus-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.bonus-card-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .97rem;
    color: var(--foreground);
    margin: 0;
}
.bonus-card-list .check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: 900;
    font-size: .72rem;
    margin-top: 2px;
}
.bonus-card-terms {
    font-size: .72rem;
    color: var(--secondary-2);
    text-align: center;
    margin: 0;
    letter-spacing: .02em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 4.5rem 0;
}
@media (min-width: 1024px) { .faq-section { padding: 6.5rem 0; } }

.faq-wrap {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .faq-wrap { padding: 0 2rem; } }

.faq-head { text-align: center; margin-bottom: 2.5rem; }
.faq-title { margin: 0 0 .5rem; }
.faq-intro { color: var(--muted-foreground); max-width: 640px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: border-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
    position: relative;
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255,227,77,.15);
}
.faq-item[open]::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    min-height: 48px;
}
@media (min-width: 768px) { .faq-q { padding: 1.5rem 2rem; font-size: 1.25rem; } }
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    position: relative;
    transition: transform .3s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 14px; height: 2px;
    background: var(--primary-foreground);
    transform: translate(-50%, -50%);
    border-radius: 2px;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.65;
}
@media (min-width: 768px) { .faq-a { padding: 0 2rem 1.5rem; } }
.faq-a p:last-child { margin-bottom: 0; }

.faq-mascot {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 5rem;
    opacity: .25;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* ============================================
   INFO TABLE - Responsive comparison table
   ============================================ */
.info-table-wrap { margin: 2rem 0; }
.info-table-caption {
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}
.table-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--glass);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
.info-table thead {
    background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
}
.info-table th {
    font-family: "Fraunces", serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 2px solid var(--primary);
}
.info-table td, .info-table tbody th {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    min-height: 48px;
    color: var(--foreground);
    font-weight: 400;
    text-align: left;
}
.info-table tbody th { font-weight: 600; }
.info-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.info-table tbody tr:hover { background: rgba(255,227,77,0.05); }
.info-table tr.row-highlight {
    background: rgba(255,227,77,0.1) !important;
    box-shadow: inset 4px 0 0 var(--secondary);
}
.info-table tr.row-highlight td,
.info-table tr.row-highlight th { color: var(--primary); font-weight: 700; }
.info-table-note {
    font-size: .88rem;
    color: var(--muted-foreground);
    margin-top: .75rem;
    font-style: italic;
}

/* Mobile - convert table to cards */
@media (max-width: 639.98px) {
    .info-table, .info-table thead, .info-table tbody,
    .info-table tr, .info-table td, .info-table th { display: block; }
    .info-table { min-width: 0; }
    .info-table thead { display: none; }
    .info-table tr {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        margin-bottom: .75rem;
        padding: .5rem 0;
    }
    .info-table tr:last-child { margin-bottom: 0; }
    .info-table td, .info-table tbody th {
        border-bottom: 1px solid var(--border);
        padding: .65rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: right;
    }
    .info-table td:last-child, .info-table tbody th:last-child { border-bottom: none; }
    .info-table td::before, .info-table tbody th::before {
        content: attr(data-label);
        font-family: "Fraunces", serif;
        font-weight: 600;
        color: var(--primary);
        text-align: left;
        flex-shrink: 0;
        font-size: .85rem;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   ============================================ */
.cta-banner {
    position: relative;
    margin: 3rem 0;
    padding: 3rem 1rem;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(123,203,58,.2), transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,227,77,.2), transparent 60%),
        linear-gradient(135deg, #0f2419 0%, #1a3d2a 50%, #0f2419 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 768px) { .cta-banner { padding: 4.5rem 2rem; margin: 4rem 0; } }

.cta-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.cta-banner-bg .cta-coin,
.cta-banner-bg .cta-slice {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .85;
}
.cta-coin { background: radial-gradient(circle, var(--primary), var(--accent) 70%); box-shadow: 0 0 24px rgba(255,227,77,.5); }
.cta-coin.c1 { width: 60px; height: 60px; top: 15%; left: 8%; animation: floatA 7s ease-in-out infinite; }
.cta-coin.c2 { width: 40px; height: 40px; top: 70%; left: 12%; animation: floatB 9s ease-in-out infinite; }
.cta-coin.c3 { width: 50px; height: 50px; top: 25%; right: 10%; animation: floatA 8s ease-in-out infinite reverse; }
.cta-slice { background: radial-gradient(circle, var(--secondary-2), var(--secondary) 70%); }
.cta-slice.s1 { width: 70px; height: 70px; bottom: 15%; right: 15%; animation: floatB 10s ease-in-out infinite; }
.cta-slice.s2 { width: 30px; height: 30px; top: 40%; left: 45%; animation: floatA 6s ease-in-out infinite; opacity: .5; }

@keyframes floatA {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    50%     { transform: translate(10px,-18px) rotate(20deg); }
}
@keyframes floatB {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    50%     { transform: translate(-12px,14px) rotate(-15deg); }
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-banner-inner { grid-template-columns: 1.5fr 1fr; text-align: left; gap: 3rem; }
    .cta-side-left { direction: rtl; }
    .cta-side-left > * { direction: ltr; }
}

.cta-banner-headline {
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: .5rem 0 1rem;
    color: var(--foreground);
}
.cta-banner-headline strong,
.cta-banner-headline .hl {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-banner-sub {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.75rem;
    max-width: 560px;
}
@media (max-width: 767.98px) { .cta-banner-sub { margin-left: auto; margin-right: auto; } }

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
}
@media (min-width: 768px) { .cta-banner-actions { align-items: flex-start; } }
.cta-disclaimer { font-size: .8rem; color: var(--secondary-2); }

.cta-banner-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot-orb {
    width: clamp(140px, 30vw, 240px);
    height: clamp(140px, 30vw, 240px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--primary) 0%, var(--accent) 45%, #b8860b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(5rem, 12vw, 9rem);
    box-shadow: 0 0 80px rgba(255,227,77,.5), inset -20px -30px 50px rgba(0,0,0,.3);
    animation: mascotFloat 4s ease-in-out infinite;
}
@keyframes mascotFloat {
    0%,100% { transform: translateY(0) rotate(-4deg); }
    50%     { transform: translateY(-14px) rotate(4deg); }
}

/* ============================================
   FEATURE GRID - USP strip
   ============================================ */
.feature-grid-section {
    padding: 3rem 0;
}
@media (min-width: 1024px) { .feature-grid-section { padding: 5rem 0; } }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(10,31,21,.6), rgba(19,48,42,.8));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 2rem; gap: 1.5rem; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 2.5rem; } }

.feature-cell {
    text-align: center;
    padding: 1.25rem .75rem;
    position: relative;
    min-width: 0;
}
@media (min-width: 1024px) {
    .feature-cell + .feature-cell::before {
        content: "";
        position: absolute;
        left: 0; top: 15%; bottom: 15%;
        width: 1px;
        background: linear-gradient(180deg, transparent, var(--primary), transparent);
        opacity: .4;
    }
}
.feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 0 28px rgba(255,227,77,.35);
    color: var(--primary-foreground);
}
.feature-title {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 .4rem;
    color: var(--foreground);
}
.feature-desc {
    font-size: .97rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS - TL;DR, callouts, quotes
   ============================================ */
.summary-box {
    background: linear-gradient(135deg, rgba(255,227,77,.08), rgba(123,203,58,.08));
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
}
.summary-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: .75rem;
}
.summary-box p:last-child { margin-bottom: 0; }

.callout {
    background: rgba(123,203,58,.08);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    color: var(--foreground);
}
.callout strong { color: var(--secondary-2); }
.callout.callout-warn { background: rgba(255,182,39,.08); border-left-color: var(--accent); }
.callout.callout-warn strong { color: var(--accent-2); }

.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin: 1rem .5rem 1rem 0;
}
.stat-highlight .stat-num {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-highlight .stat-label {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted-foreground);
    margin-top: .35rem;
}
.stat-highlight .stat-source {
    font-size: .75rem;
    color: var(--secondary-2);
    margin-top: .35rem;
}

.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 0 1.5rem 1.5rem;
    margin: 2rem 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.25rem, 2vw + .5rem, 1.75rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: .75rem;
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-size: .9rem;
    font-weight: 700;
    color: var(--secondary-2);
    letter-spacing: .06em;
    text-transform: uppercase;
}

details.detail {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
details.detail summary {
    cursor: pointer;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    list-style: none;
}
details.detail summary::-webkit-details-marker { display: none; }
details.detail summary::after {
    content: "+";
    float: right;
    color: var(--primary);
    font-weight: 800;
    transition: transform .25s ease;
}
details.detail[open] summary::after { content: "−"; }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 1.5rem 1rem;
}
.trust-row .trust-item {
    font-family: "Fraunces", serif;
    font-size: .95rem;
    color: var(--muted-foreground);
    opacity: .85;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-width: 0;
}
.testimonial-card .stars { color: var(--primary); font-size: 1.1rem; margin-bottom: .5rem; }
.testimonial-card blockquote {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    font-style: italic;
}
.testimonial-card .author {
    font-size: .88rem;
    font-weight: 700;
    color: var(--secondary-2);
}

/* SEO text block - enforces readable line length */
.seo-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 1.05rem;
    line-height: 1.72;
}
@media (min-width: 768px) { .seo-content { padding: 0 2rem; } }
.seo-content h2 { margin-top: 3rem; }
.seo-content h3 { margin-top: 2rem; }
.seo-content h2:first-child, .seo-content h3:first-child { margin-top: 0; }
.seo-content ul, .seo-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.seo-content li { margin-bottom: .5rem; }

/* ============================================
   HERO - shared patterns
   ============================================ */
.hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: 5rem 0 7rem; } }

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding: 0 2rem; } }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

.hero-title {
    font-size: clamp(2.25rem, 5vw + 1rem, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: clamp(1.05rem, 1vw + .7rem, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: center;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}
.hero-visual-bg {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,227,77,.4), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(123,203,58,.35), transparent 60%);
    filter: blur(30px);
}

/* ============================================
   FILTER BAR - Category chips
   ============================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin: 0 0 2rem;
    padding: 0 .25rem;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: .6rem 1.1rem;
    min-height: 40px;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: .9rem;
    background: var(--glass);
    color: var(--foreground);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}
.filter-chip.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(255,227,77,.3);
}
.filter-chip:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

#category-grid > [data-category].is-hidden { display: none; }

/* Lemon Exclusives - 3-column grid override on desktop */
.game-grid-exclusives { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .game-grid-exclusives { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .game-grid-exclusives { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid-exclusives { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 960px; margin-left: auto; margin-right: auto; } }

/* ============================================
   PROVIDER GRID
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}
@media (min-width: 520px) { .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.provider-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.1rem .75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    min-height: 88px;
    justify-content: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .3s ease;
}
.provider-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255,227,77,.2);
}
.provider-name {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    line-height: 1.15;
}
.provider-meta {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--secondary-2);
}

/* ============================================
   PAYMENT GRID & TICKER
   ============================================ */
.pay-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}
@media (min-width: 520px) { .pay-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
@media (min-width: 768px) { .pay-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .pay-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.pay-cell {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem .5rem;
    text-align: center;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: .97rem;
    color: var(--foreground);
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .3s ease;
}
.pay-cell:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255,227,77,.2);
}

.ticker {
    overflow: hidden;
    background: linear-gradient(90deg, rgba(19,48,42,.8), rgba(10,31,21,.4), rgba(19,48,42,.8));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .85rem 0;
}
.ticker-track {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1rem;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .92rem;
    color: var(--foreground);
    white-space: nowrap;
}
.ticker-item .tkr-user { font-weight: 700; color: var(--secondary-2); }
.ticker-item .tkr-win { font-weight: 800; color: var(--primary); font-family: "Fraunces", serif; }
.ticker-item .tkr-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: .5; transform: scale(.85); }
}

/* ============================================
   BADGE / PILL / CHIP
   ============================================ */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    background: rgba(255,227,77,.08);
    color: var(--primary);
    border: 1px solid rgba(255,227,77,.3);
    letter-spacing: .04em;
}
.badge-pill.badge-18 {
    background: rgba(244,63,94,.1);
    color: var(--destructive);
    border-color: rgba(244,63,94,.4);
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    color: var(--foreground);
    border: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(10,31,21,.4) 0%, #081710 100%);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 1rem;
    padding-bottom: calc(72px + 1rem);
}
@media (min-width: 1024px) { .site-footer { padding-bottom: 2rem; } }

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        padding: 0 2rem;
        gap: 3rem;
    }
}

.footer-brand .brand { margin-bottom: 1rem; }
.footer-about {
    font-size: .95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-heading {
    font-family: "Fraunces", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.footer-links a {
    color: var(--foreground);
    font-size: .95rem;
    opacity: .85;
    transition: color .2s ease, opacity .2s ease;
}
.footer-links a:hover { color: var(--primary); opacity: 1; }

.pay-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 2.5rem auto 0;
    padding: 1.5rem 1rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { padding: 1.5rem 2rem 0; } }
.footer-copy {
    font-size: .82rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
    position: fixed;
    left: .75rem; right: .75rem;
    bottom: .75rem;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: .85rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--primary-foreground);
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 40px rgba(255,227,77,.35);
    animation: btnPulse 2.4s ease-in-out infinite;
}
@media (min-width: 1024px) { .mobile-sticky-cta { display: none; } }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   BODY LOCK when drawer open
   ============================================ */
body.menu-open { overflow: hidden; touch-action: none; }