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

:root {
    /* ── Backgrounds ── */
    --bg-deep:        #050a07;
    --bg-card:        #090f0b;
    --bg-glass:       rgba(9, 15, 11, 0.72);
    --glass-border:   rgba(16, 185, 129, 0.1);

    /* ── Brand: emerald ── */
    --em:             #10b981;
    --em-dim:         #059669;
    --em-bright:      #34d399;
    --em-ultra:       #6ee7b7;

    /* ── CTA / bonus: amber ── */
    --amber:          #f59e0b;
    --amber-dim:      #d97706;
    --amber-bright:   #fcd34d;

    /* ── Accents ── */
    --teal:           #2dd4bf;
    --rose:           #fb7185;

    /* ── Text ── */
    --text-primary:   #ecfdf5;
    --text-muted:     #7ba693;

    /* ── Glows ── */
    --glow-em:        0 0 22px rgba(16,185,129,0.45), 0 0 44px rgba(16,185,129,0.18);
    --glow-amber:     0 0 22px rgba(245,158,11,0.40), 0 0 44px rgba(245,158,11,0.16);
    --glow-teal:      0 0 18px rgba(45,212,191,0.35);

    /* ── Misc ── */
    --radius-card:    16px;
    --radius-btn:     10px;
}

/* ─────────────────────────────────────────────
   BASE
───────────────────────────────────────────── */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -5%, rgba(16, 185, 129, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 95% 80%, rgba(45, 212, 191, 0.04) 0%, transparent 60%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 44px,
            rgba(16, 185, 129, 0.012) 44px,
            rgba(16, 185, 129, 0.012) 45px
        );
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2 {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(1.35rem, 3.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.25);
}

h2 {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--em-bright);
    text-shadow: var(--glow-teal);
    line-height: 1.3;
}

h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.97rem, 2vw, 1.15rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--teal);
    line-height: 1.4;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.header {
    background: rgba(5, 10, 7, 0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.04em;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.text-yellow { color: var(--amber); }

.header-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
@keyframes btn-pulse-amber {
    0%, 100% { box-shadow: 0 0 16px rgba(245,158,11,0.45), 0 4px 14px rgba(0,0,0,0.3); }
    50%       { box-shadow: 0 0 30px rgba(245,158,11,0.75), 0 0 50px rgba(245,158,11,0.22), 0 4px 14px rgba(0,0,0,0.3); }
}

.btn {
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber-dim) 100%);
    color: #05120a;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius-btn);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-amber);
    transition: transform 0.22s, box-shadow 0.22s;
    animation: btn-pulse-amber 2.4s ease-in-out infinite;
    letter-spacing: 0.01em;
}

.btn:hover {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 0 38px rgba(245,158,11,0.6), 0 6px 22px rgba(0,0,0,0.35);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--em-bright);
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: none;
    animation: none;
    color: var(--em-bright);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(52, 211, 153, 0.7);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.18);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 0.88rem 1.85rem;
    font-size: 0.96rem;
}

/* ─────────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.38rem 0.6rem;
    border-radius: 8px;
    line-height: 1;
}

.nav-menu {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.nav-menu.active { display: block; }

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--em-bright);
    background: rgba(16, 185, 129, 0.08);
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.section {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    margin: 1.75rem auto;
    max-width: 1020px;
    animation: fadeUp 0.45s ease-out both;
}

.section-header { margin-bottom: 1.5rem; }

.section-lead {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-top: 0.3rem;
}

.section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, rgba(5,12,8,0.94) 0%, rgba(7,16,12,0.85) 100%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 22px;
    padding: 2.75rem;
    margin: 1.75rem auto;
    max-width: 1020px;
    position: relative;
    overflow: hidden;
}

/* glow blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -15%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 55%;
    height: 170%;
    background: radial-gradient(ellipse, rgba(45,212,191,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.05));
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: var(--em-bright);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.28rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-sub {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0.25rem;
}

.hero-code {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.1em 0.45em;
    border-radius: 5px;
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-size: 0.95em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.75rem 0 1.5rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.3rem;
}

.hero-trust li {
    color: var(--em);
    font-size: 0.81rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding-left: 1.1em;
    position: relative;
}

.hero-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

.hero-image-wrap {
    flex-shrink: 0;
    max-width: 410px;
    width: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 0 50px rgba(16,185,129,0.18), 0 12px 42px rgba(0,0,0,0.55);
    border: 1px solid rgba(16, 185, 129, 0.14);
    display: block;
}

.bonus-amount {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber-bright), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
    filter: drop-shadow(0 0 16px rgba(245,158,11,0.5));
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.bonus-amount .fill {
    -webkit-text-fill-color: initial;
    color: var(--amber);
}

/* ─────────────────────────────────────────────
   GRIDS
───────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 1.1rem;
    margin: 1.25rem 0;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.card {
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.4rem 1.35rem;
    border-radius: var(--radius-card);
    border-left: 3px solid var(--em-dim);
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
}

.card:hover {
    border-left-color: var(--em-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.28), 0 0 14px rgba(16,185,129,0.1);
    transform: translateY(-3px);
    background: rgba(16, 185, 129, 0.055);
}

.card h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
}

.card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
}

/* Bonus cards — amber left border */
.card-bonus {
    border-left-color: var(--amber-dim);
}

.card-bonus:hover {
    border-left-color: var(--amber-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.28), 0 0 14px rgba(245,158,11,0.1);
    background: rgba(245, 158, 11, 0.04);
}

.card-bonus h3 { color: var(--amber); }

/* Trust cards — teal left border */
.card-trust { border-left-color: var(--teal); }
.card-trust:hover { border-left-color: var(--em-bright); }
.card-trust h3 { color: var(--teal); }

/* ─────────────────────────────────────────────
   SLOTS GRID
───────────────────────────────────────────── */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.75rem;
}

.slot-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.1);
    background: rgba(9, 15, 11, 0.8);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.slot-card:hover {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 22px rgba(16,185,129,0.2);
    border-color: rgba(52, 211, 153, 0.4);
}

.slot-img-wrap {
    position: relative;
    overflow: hidden;
}

.slot-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.slot-card:hover .slot-img-wrap img {
    transform: scale(1.07);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,10,7,0.9) 0%, rgba(5,10,7,0.2) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.65rem;
    opacity: 0;
    transition: opacity 0.25s;
}

.slot-card:hover .slot-overlay { opacity: 1; }

.slot-overlay span {
    background: linear-gradient(135deg, var(--amber-bright), var(--amber-dim));
    color: #05120a;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.28rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.slot-name {
    display: block;
    padding: 0.55rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    background: rgba(5, 10, 7, 0.6);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────
   SECTION BUTTONS
───────────────────────────────────────────── */
.section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.section-buttons .btn {
    font-size: 0.88rem;
    padding: 0.65rem 1.3rem;
}

/* ─────────────────────────────────────────────
   PAYMENT ICONS
───────────────────────────────────────────── */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    padding: 1.35rem;
    background: rgba(16, 185, 129, 0.025);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.payment-icons img {
    height: 34px;
    max-width: 68px;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.22s, transform 0.22s, filter 0.22s;
    filter: grayscale(30%) brightness(0.9);
}

.payment-icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%) brightness(1.1) drop-shadow(0 0 6px rgba(16,185,129,0.35));
}

/* ─────────────────────────────────────────────
   TABLE
───────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(9, 15, 11, 0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table th {
    background: rgba(16, 185, 129, 0.1);
    color: var(--text-primary);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
    font-family: 'DM Sans', sans-serif;
}

table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

table tr:last-child td { border-bottom: none; }
table tbody tr:hover { background: rgba(16, 185, 129, 0.03); }
table td:first-child { color: var(--text-primary); font-weight: 600; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.1rem 0;
}

.faq-item:first-of-type { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-question {
    color: var(--text-primary);
    font-size: 0.99rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s;
    user-select: none;
    font-family: 'DM Sans', sans-serif;
}

.faq-question:hover { color: var(--em-bright); }

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--em);
    font-weight: 900;
    line-height: 26px;
    text-align: center;
    transition: background 0.2s, transform 0.25s, border-color 0.2s;
}

.faq-question.active::after {
    content: '−';
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: var(--amber);
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.75;
    display: none;
    font-size: 0.93rem;
    padding-top: 0.85rem;
}

.faq-answer.active { display: block; }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.section-cta {
    text-align: center;
    background: linear-gradient(140deg, rgba(9,15,11,0.9) 0%, rgba(12,22,16,0.8) 100%);
    border-color: rgba(16, 185, 129, 0.18);
    padding: 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(16,185,129,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.35rem, 3.2vw, 1.9rem);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cta-desc {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
   SEO CONTENT
───────────────────────────────────────────── */
.anchors-block {
    margin-bottom: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.anchors-block a {
    color: var(--teal);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.anchors-block a:hover { color: var(--em-bright); text-decoration: underline; }

.seo-content ul {
    margin: 0.75rem 0 1.25rem 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.seo-content ul li {
    color: var(--text-muted);
    font-size: 0.93rem;
    padding-left: 1.1rem;
    position: relative;
}

.seo-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--em);
    font-size: 0.82rem;
}

/* ─────────────────────────────────────────────
   MISC
───────────────────────────────────────────── */
.disclaimer-text {
    color: var(--text-muted);
    font-size: 0.81rem;
    margin-top: 1rem;
    opacity: 0.7;
    line-height: 1.55;
}

.feature-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-with-image .feature-content { flex: 1; min-width: 260px; }
.feature-with-image .feature-img-wrap { flex-shrink: 0; max-width: 320px; }

.feature-with-image .feature-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
    background: rgba(3, 6, 4, 0.97);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 20px;
    margin-top: 2rem;
    text-align: center;
}

.footer-payments {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-payments-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-payments .payment-icons {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    gap: 0.9rem;
}

.footer-payments .payment-icons img {
    height: 28px;
    max-width: 58px;
    opacity: 0.5;
    filter: grayscale(40%) brightness(0.85);
}

.footer-payments .payment-icons img:hover {
    opacity: 0.9;
    filter: grayscale(0%) brightness(1.05) drop-shadow(0 0 5px rgba(16,185,129,0.3));
    transform: translateY(-1px);
}

.footer-note {
    font-size: 0.83rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    font-family: 'DM Sans', sans-serif;
}

.footer-note strong { color: var(--em); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 14px; }

    .section {
        padding: 1.5rem;
        margin: 1.25rem auto;
    }

    .hero { padding: 1.75rem 1.5rem; }

    .hero-inner {
        flex-direction: column;
        gap: 1.75rem;
    }

    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-trust  { justify-content: center; }
    .hero-image-wrap { max-width: 100%; }

    .mobile-menu-toggle { display: block; }

    .header-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .header-btns .btn {
        width: 100%;
        text-align: center;
    }

    table { font-size: 0.8rem; }
    table th, table td { padding: 0.65rem 0.5rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .section-buttons { flex-direction: column; align-items: stretch; }
    .section-buttons .btn { width: 100%; text-align: center; }

    .feature-with-image { flex-direction: column; gap: 1rem; }
    .feature-with-image .feature-img-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
    .section { padding: 1.25rem; }
    .hero { padding: 1.35rem; }
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.15rem; }
    h3 { font-size: 0.97rem; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-amount { font-size: 1.55rem; }
}
