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

:root {
    --primary: #4A2B7A;
    --primary-dark: #351f5c;
    --primary-light: #6b42b0;
    --secondary: #FFD700;
    --secondary-dark: #e6c200;
    --accent: #F59E0B;
    --bg-light: #F3F4F6;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --success: #10B981;
    --danger: #EF4444;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

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

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--primary);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    transition: background var(--transition);
}
.navbar.scrolled { background: var(--primary-dark); }
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 70px;
}
.navbar-logo img { height: 40px; }
.navbar-links { display: flex; gap: 6px; align-items: center; }
.navbar-links a {
    color: #fff; text-decoration: none; font-size: .875rem; font-weight: 600;
    padding: 8px 14px; border-radius: var(--radius-sm);
    transition: background var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.navbar-links a:hover { background: rgba(255,255,255,.15); }
.nav-cta {
    background: var(--secondary) !important; color: var(--primary-dark) !important;
    font-weight: 700 !important; border-radius: 50px !important; padding: 10px 24px !important;
}
.nav-cta:hover { background: var(--secondary-dark) !important; transform: scale(1.05); }
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: var(--transition); }
.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark); z-index: 999; padding: 30px 20px;
    flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: #fff; text-decoration: none; font-size: 1.1rem; font-weight: 600;
    padding: 14px 20px; border-radius: var(--radius-sm);
    transition: background var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-menu .mobile-cta {
    background: var(--secondary); color: var(--primary-dark);
    text-align: center; border-radius: 50px; font-weight: 800;
}

.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d1a4e 40%, #1a0f30 100%);
    position: relative; overflow: hidden; text-align: center; color: #fff;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,215,0,.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107,66,176,.3) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.3);
    padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600;
    margin-bottom: 24px; color: var(--secondary);
}
.hero-badge .flag { font-size: 1.1rem; }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
    margin-bottom: 16px; letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--secondary); }
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem); opacity: .85;
    margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer;
    transition: all var(--transition); font-family: 'Montserrat', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary-dark); box-shadow: 0 4px 20px rgba(255,215,0,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,215,0,.5); }
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.hero-stats {
    display: flex; justify-content: center; gap: 50px; margin-top: 50px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
    font-family: 'Montserrat', sans-serif; font-size: 2rem;
    font-weight: 800; color: var(--secondary);
}
.hero-stat-label { font-size: .85rem; opacity: .7; margin-top: 4px; }

.ticker {
    background: var(--primary-dark); border-bottom: 2px solid rgba(255,215,0,.2);
    overflow: hidden; padding: 12px 0;
}
.ticker-track {
    display: flex; gap: 60px; animation: ticker 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500;
    flex-shrink: 0;
}
.ticker-item .win-amount { color: var(--secondary); font-weight: 700; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section { padding: 80px 0; }
.section-dark { background: linear-gradient(180deg, #1a0f30 0%, var(--primary-dark) 100%); color: #fff; }
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
    text-align: center; margin-bottom: 16px;
}
.section-subtitle {
    text-align: center; color: var(--text-muted);
    max-width: 600px; margin: 0 auto 50px; font-size: 1rem;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

.section-label {
    display: inline-block; background: #EEF2FF; color: var(--primary);
    padding: 5px 14px; border-radius: 50px; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.section-label-dark { background: rgba(255,215,0,.15); color: var(--secondary); }

.two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.two-col-wide { grid-template-columns: 3fr 2fr; }

.content-block p {
    margin-bottom: 18px; font-size: 1rem; line-height: 1.75; color: var(--text-muted);
}
.content-block p:last-of-type { margin-bottom: 0; }
.content-block h2 { margin-bottom: 20px; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.content-block h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; }

.content-dark p { color: rgba(255,255,255,.75); }
.content-dark h2 { color: #fff; }
.content-dark h3 { color: #fff; }

.bonus-main {
    background: linear-gradient(135deg, var(--primary) 0%, #6b42b0 100%);
    border-radius: 20px; padding: 50px; color: #fff;
    position: relative; overflow: hidden; margin-top: -40px;
    box-shadow: var(--shadow-xl);
}
.bonus-main::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.bonus-main-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 40px; }
.bonus-info { flex: 1; }
.bonus-tag {
    display: inline-block; background: var(--secondary); color: var(--primary-dark);
    padding: 6px 16px; border-radius: 50px; font-size: .8rem;
    font-weight: 700; margin-bottom: 16px; text-transform: uppercase;
}
.bonus-info h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.bonus-info h2 .gold { color: var(--secondary); }
.bonus-info p { opacity: .85; margin-bottom: 16px; font-size: 1.05rem; line-height: 1.65; }
.bonus-details {
    display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.bonus-detail {
    background: rgba(255,255,255,.1); border-radius: var(--radius-sm);
    padding: 12px 20px;
}
.bonus-detail-label { font-size: .75rem; opacity: .6; text-transform: uppercase; letter-spacing: 1px; }
.bonus-detail-val { font-size: 1.1rem; font-weight: 700; margin-top: 4px; }
.bonus-visual {
    flex-shrink: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,.2) 0%, transparent 70%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.bonus-spin-count {
    font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 900;
    color: var(--secondary); text-shadow: 0 4px 30px rgba(255,215,0,.5);
}
.bonus-spin-label {
    position: absolute; bottom: 30px;
    font-size: 1rem; font-weight: 700; color: var(--secondary); opacity: .8;
}

.promo-table-wrap {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.promo-table { width: 100%; border-collapse: collapse; }
.promo-table thead { background: var(--primary); color: #fff; }
.promo-table th {
    padding: 18px 20px; text-align: left; font-family: 'Montserrat', sans-serif;
    font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.promo-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); font-size: .95rem; }
.promo-table tbody tr { transition: background var(--transition); }
.promo-table tbody tr:hover { background: #f9f5ff; }
.promo-table .bonus-name { font-weight: 700; color: var(--primary); }
.promo-table .badge-wager {
    display: inline-block; background: #EEF2FF; color: var(--primary);
    padding: 4px 12px; border-radius: 50px; font-size: .8rem; font-weight: 700;
}
.promo-table .btn-sm {
    padding: 8px 20px; font-size: .85rem; border-radius: 50px;
    background: var(--primary); color: #fff; text-decoration: none;
    font-weight: 600; display: inline-block; transition: all var(--transition);
}
.promo-table .btn-sm:hover { background: var(--primary-light); transform: translateY(-1px); }

.tournament-banner {
    background: linear-gradient(135deg, #1a0f30 0%, var(--primary) 50%, #6b42b0 100%);
    border-radius: 20px; padding: 50px; color: #fff; text-align: center;
    position: relative; overflow: hidden;
}
.tournament-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,215,0,.1) 0%, transparent 50%);
}
.tournament-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; position: relative; }
.tournament-banner p { opacity: .8; margin-bottom: 30px; position: relative; font-size: 1.05rem; line-height: 1.7; }
.countdown {
    display: flex; gap: 20px; justify-content: center; margin-bottom: 30px;
    position: relative;
}
.countdown-item {
    background: rgba(255,255,255,.1); border-radius: var(--radius-sm);
    padding: 16px 20px; min-width: 80px;
}
.countdown-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--secondary); }
.countdown-label { font-size: .75rem; opacity: .6; text-transform: uppercase; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 13px 4px; font-size: .9rem; vertical-align: top; }
.info-table td:first-child { color: var(--text-muted); width: 52%; padding-right: 12px; }
.info-table td:last-child { font-weight: 600; color: var(--text-dark); }
.info-table tr:last-child { border-bottom: none; }

.game-rows { display: flex; flex-direction: column; }
.game-row {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 22px 0; border-bottom: 1px solid var(--border);
}
.game-row:last-child { border-bottom: none; }
.game-row img {
    width: 90px; height: 64px; object-fit: cover;
    border-radius: var(--radius-sm); flex-shrink: 0;
}
.game-row-info h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .95rem; margin-bottom: 6px; color: var(--text-dark);
}
.game-row-info p {
    font-size: .85rem; color: var(--text-muted); line-height: 1.65;
}
.game-meta { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.game-meta span {
    background: #EEF2FF; color: var(--primary);
    padding: 3px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700;
}

.live-game-list { display: flex; flex-direction: column; }
.live-game-item {
    padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex; gap: 14px; align-items: flex-start;
}
.live-game-item:last-child { border-bottom: none; }
.live-dot {
    width: 10px; height: 10px; background: var(--danger); border-radius: 50%;
    flex-shrink: 0; margin-top: 5px; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.live-game-item h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .95rem; margin-bottom: 5px; color: #fff;
}
.live-game-item p { font-size: .875rem; opacity: .7; line-height: 1.65; }
.live-variants { font-size: .75rem; color: var(--secondary); margin-top: 7px; font-weight: 600; }

.sport-list { display: flex; flex-direction: column; margin-top: 24px; }
.sport-item {
    display: flex; gap: 14px; padding: 16px 0;
    border-bottom: 1px solid var(--border); align-items: flex-start;
}
.sport-item:last-child { border-bottom: none; }
.sport-item-icon { font-size: 1.4rem; flex-shrink: 0; width: 34px; text-align: center; padding-top: 2px; }
.sport-item-text h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: .95rem; margin-bottom: 4px;
}
.sport-item-text p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}
.provider-card {
    background: #fff; border-radius: var(--radius-sm); padding: 18px 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); transition: all var(--transition);
    border: 2px solid transparent;
}
.provider-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.provider-card img { max-width: 100%; height: 30px; object-fit: contain; }

.reg-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.reg-step {
    background: #fff; border-radius: var(--radius); padding: 36px;
    text-align: center; box-shadow: var(--shadow); position: relative;
    transition: all var(--transition);
}
.reg-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.reg-step-num {
    width: 50px; height: 50px; background: var(--primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem;
    margin: 0 auto 20px;
}
.reg-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.reg-step p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

.payments-grid {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px;
}
.payment-card {
    background: #fff; border-radius: var(--radius-sm); padding: 18px 26px;
    box-shadow: var(--shadow); transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid transparent;
}
.payment-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.payment-card img { height: 30px; object-fit: contain; }

.pay-table {
    width: 100%; border-collapse: collapse;
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.pay-table th {
    background: var(--primary); color: #fff; padding: 14px 18px; text-align: left;
    font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
}
.pay-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.pay-table tbody tr:last-child td { border-bottom: none; }
.pay-table tbody tr { transition: background var(--transition); }
.pay-table tbody tr:hover { background: #f9f5ff; }
.pay-table .ok { color: var(--success); font-weight: 700; }

.trust-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.trust-list li { display: flex; gap: 14px; align-items: flex-start; }
.trust-list li::before {
    content: '✓'; display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: #d1fae5; color: var(--success); font-weight: 700;
    font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.trust-list li strong { display: block; font-family: 'Montserrat', sans-serif; font-size: .95rem; margin-bottom: 3px; }
.trust-list li span { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

.trust-list-dark li::before { background: rgba(16,185,129,.2); }
.trust-list-dark li strong { color: #fff; }
.trust-list-dark li span { color: rgba(255,255,255,.65); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review-card {
    background: #fff; border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow); transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-xl); }
.review-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: .95rem; color: var(--text-muted); margin-bottom: 16px; font-style: italic; line-height: 1.7; }
.review-author { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .8rem; color: var(--text-light); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff; border-radius: var(--radius-sm); margin-bottom: 10px;
    box-shadow: var(--shadow); overflow: hidden;
}
.faq-q {
    padding: 20px 24px; cursor: pointer; font-weight: 700;
    font-family: 'Montserrat', sans-serif; font-size: .95rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: background var(--transition); gap: 16px;
}
.faq-q:hover { background: #f9f5ff; }
.faq-q .arrow { transition: transform var(--transition); font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
    padding: 0 24px; font-size: .9rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

.footer {
    background: #0f0a1a; color: rgba(255,255,255,.7); padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1rem;
    margin-bottom: 20px; font-weight: 700;
}
.footer-col a {
    display: block; color: rgba(255,255,255,.5); text-decoration: none;
    padding: 4px 0; font-size: .9rem; transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
    text-align: center; font-size: .85rem;
}
.footer-18 {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--danger); color: #fff; padding: 6px 16px;
    border-radius: 50px; font-weight: 700; font-size: .85rem; margin-bottom: 12px;
}
.footer-responsible {
    max-width: 700px; margin: 16px auto 0; font-size: .8rem;
    color: rgba(255,255,255,.4); line-height: 1.7;
}
.footer-payments {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    margin: 24px 0;
}
.footer-payments img { height: 22px; opacity: .45; transition: opacity var(--transition); }
.footer-payments img:hover { opacity: 1; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
    background: #1a0f30; color: rgba(255,255,255,.8); padding: 20px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    font-size: .9rem;
}
.cookie-banner.hidden { display: none; }
.cookie-banner .btn-cookie {
    background: var(--secondary); color: var(--primary-dark); padding: 10px 28px;
    border: none; border-radius: 50px; font-weight: 700; cursor: pointer;
    font-size: .9rem; transition: all var(--transition);
}
.cookie-banner .btn-cookie:hover { background: var(--secondary-dark); }

@media (max-width: 1024px) {
    .bonus-main-inner { flex-direction: column; text-align: center; }
    .bonus-visual { width: 200px; height: 200px; margin: 0 auto; }
    .bonus-details { justify-content: center; }
    .two-col-wide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col-wide { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 120px 20px 60px; }
    .hero-stats { gap: 30px; }
    .bonus-main { padding: 30px 20px; margin-top: -20px; }
    .promo-table-wrap { overflow-x: auto; }
    .promo-table { min-width: 650px; }
    .pay-table { display: block; overflow-x: auto; min-width: 540px; }
    .section { padding: 50px 0; }
    .countdown-item { padding: 12px 14px; min-width: 60px; }
    .countdown-num { font-size: 1.5rem; }
    .providers-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .game-row img { width: 70px; height: 50px; }
}
