/* ===== MAD CASINO — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --accent: #E60033;
    --accent-dark: #B8002A;
    --accent-light: #FF1A4D;
    --pink-glow: #FF0055;
    --gold: #FFD700;
    --gold-dark: #E6C200;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #777777;
    --border: #2a2a2a;
    --border-light: #333333;
    --success: #00C853;
    --warning: #FFB300;
    --gradient-accent: linear-gradient(135deg, #E60033 0%, #FF0055 50%, #FF1A4D 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    --gradient-card: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-accent: 0 4px 25px rgba(230,0,51,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(230,0,51,0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--text-primary);
}

.header-nav a:hover::after {
    width: 100%;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-accent);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-accent);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230,0,51,0.5);
    color: #fff !important;
}

.btn-cta-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent-light) !important;
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff !important;
}

/* ===== MOBILE BURGER ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 20%, rgba(230,0,51,0.12) 0%, transparent 60%),
                var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(230,0,51,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,0,85,0.04) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-2%, 1%); }
    66% { transform: translate(2%, -1%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #E60033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION IMAGE ===== */
.section-image {
    margin: 30px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-image figcaption {
    background: var(--bg-card);
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border);
}

/* ===== SECTIONS ===== */
.section {
    padding: 70px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CONTENT TEXT ===== */
.content-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-text strong {
    color: var(--text-primary);
}

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== TABLES ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.info-table thead th {
    background: var(--accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-table tbody tr {
    background: var(--bg-card);
    transition: background 0.2s ease;
}

.info-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.info-table tbody tr:nth-child(even) {
    background: var(--bg-secondary);
}

.info-table tbody tr:nth-child(even):hover {
    background: var(--bg-card-hover);
}

.info-table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding: 10px 0 10px 35px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== NUMBER LIST ===== */
.number-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: step;
}

.number-list li {
    counter-increment: step;
    position: relative;
    padding: 12px 0 12px 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.number-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, #1a0010 0%, #2d0018 30%, #1a0010 100%);
    border: 1px solid rgba(230,0,51,0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 35px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(230,0,51,0.08) 0%, transparent 50%);
    animation: bannerPulse 4s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.promo-banner h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: var(--gold);
}

.promo-banner .promo-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-light);
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(230,0,51,0.5);
}

.promo-banner p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.promo-banner .btn-cta {
    position: relative;
    z-index: 1;
}

/* ===== BONUS CARD BANNER ===== */
.bonus-banner {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.bonus-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230,0,51,0.05));
}

.bonus-banner-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.bonus-banner-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.bonus-banner-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ===== INFO BANNER STRIP ===== */
.info-strip {
    background: var(--gradient-accent);
    padding: 15px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.info-strip a {
    color: var(--gold);
    text-decoration: underline;
}

/* ===== ADVANTAGES GRID ===== */
.advantages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.advantage-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease;
}

.advantage-item:hover {
    border-color: var(--accent);
}

.advantage-item .adv-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.advantage-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-question .faq-toggle {
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--accent);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .advantages-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav a {
        padding: 14px 0;
        width: 100%;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .header-nav .btn-cta {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 16px 40px;
    }

    .hero h1 { font-size: 1.6rem; }
    .hero-text { font-size: 0.95rem; line-height: 1.7; }

    .container { padding: 0 16px; }
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.35rem; }
    .section-header p { font-size: 0.9rem; }

    .content-text { font-size: 0.93rem; line-height: 1.7; margin-bottom: 18px; }

    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 22px 18px; }
    .feature-card h3 { font-size: 1.05rem; }
    .feature-card p { font-size: 0.88rem; }
    .feature-icon { font-size: 1.8rem; margin-bottom: 10px; }

    .promo-banner { padding: 25px 18px; margin: 25px 0; }
    .promo-banner h3 { font-size: 1.3rem; }
    .promo-banner .promo-value { font-size: 2rem; }
    .promo-banner p { font-size: 0.88rem; }

    .bonus-banner { flex-direction: column; text-align: center; padding: 22px 18px; gap: 15px; }
    .bonus-banner-icon { font-size: 2.5rem; }
    .bonus-banner-content h3 { font-size: 1.15rem; }
    .bonus-banner-content p { font-size: 0.88rem; }

    .advantages-row { gap: 12px; margin: 18px 0; }
    .advantage-item { padding: 16px; gap: 12px; }
    .advantage-item .adv-icon { font-size: 1.5rem; }
    .advantage-item h4 { font-size: 0.93rem; }
    .advantage-item p { font-size: 0.83rem; }

    /* Таблицы — горизонтальный скролл */
    .info-table { font-size: 0.82rem; display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    .info-table thead, .info-table tbody, .info-table tr, .info-table th, .info-table td { white-space: nowrap; }
    .info-table thead th { padding: 10px 14px; font-size: 0.78rem; }
    .info-table tbody td { padding: 9px 14px; }

    .check-list li { font-size: 0.88rem; padding: 8px 0 8px 32px; }
    .check-list li::before { width: 20px; height: 20px; font-size: 0.65rem; top: 9px; }

    .number-list li { font-size: 0.88rem; padding: 10px 0 10px 42px; }
    .number-list li::before { width: 28px; height: 28px; font-size: 0.75rem; }

    .faq-question { padding: 15px 18px; font-size: 0.9rem; }
    .faq-item.active .faq-answer { padding: 0 18px 16px; }
    .faq-answer p { font-size: 0.88rem; }

    .section-image { margin: 20px 0; border-radius: var(--radius-md); }
    .section-image figcaption { font-size: 0.78rem; padding: 8px 12px; }

    .footer-top { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-about p { font-size: 0.82rem; }
    .site-footer { padding: 35px 0 25px; }

    .logo img { height: 40px; }
    .header-inner { height: 60px; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }

    .hero { padding: 90px 14px 35px; }
    .hero h1 { font-size: 1.35rem; }
    .hero-text { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }

    .btn-cta { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.88rem; }
    .btn-cta-sm { padding: 10px 18px; font-size: 0.82rem; }

    .container { padding: 0 12px; }
    .section { padding: 30px 0; }
    .section-header h2 { font-size: 1.2rem; }
    .section-header p { font-size: 0.82rem; }
    .section-header { margin-bottom: 22px; }

    .content-text { font-size: 0.88rem; }

    .promo-banner { padding: 20px 14px; border-radius: var(--radius-md); }
    .promo-banner h3 { font-size: 1.15rem; }
    .promo-banner .promo-value { font-size: 1.7rem; }

    .bonus-banner { padding: 18px 14px; border-radius: var(--radius-md); }

    .feature-card { padding: 18px 14px; }

    .info-table thead th { padding: 8px 10px; font-size: 0.72rem; }
    .info-table tbody td { padding: 7px 10px; font-size: 0.78rem; }

    .faq-question { padding: 13px 14px; font-size: 0.85rem; }

    .logo img { height: 36px; }
    .header-inner { height: 55px; }

    .footer-links h4, .footer-info h4 { font-size: 0.9rem; }
    .footer-links a { font-size: 0.82rem; }
    .footer-info p { font-size: 0.78rem; }
    .footer-bottom p { font-size: 0.75rem; }
    .age-badge { width: 35px; height: 35px; font-size: 0.75rem; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 1.15rem; }
    .hero-text { font-size: 0.85rem; }
    .promo-banner .promo-value { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.05rem; }
    .faq-question { font-size: 0.8rem; padding: 12px; }
}
