:root {
    --primary: #14E0FF;
    --secondary: #FF2FD0;
    --accent: #FFD447;
    --bg: #090B1D;
    --surface: #141B36;
    --text-primary: #EAF6FF;
    --text-secondary: #A8BCD7;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* .container определён ниже в Fluid-блоке с clamp() */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.w-full { width: 100%; }

/* Typography — размеры шрифтов заданы через clamp() в Fluid-блоке ниже */
h1, h2, h3, h4, .brand-logo { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
h1 { line-height: 1.2; margin-bottom: 1rem; }
h2 { margin-bottom: 1rem; color: var(--primary); }
h3 { margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}
.btn-primary { background: var(--primary); color: var(--bg); box-shadow: 0 0 10px rgba(20,224,255,0.4); }
.btn-primary:hover { background: var(--text-primary); box-shadow: 0 0 20px rgba(20,224,255,0.8); transform: translateY(-2px); }
.btn-secondary { background: var(--surface); color: var(--primary); border: 1px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--bg); }
.btn-accent { background: var(--accent); color: var(--bg); }
.btn-accent:hover { background: var(--text-primary); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.6rem; }

/* Layout Utils */
.section-padding { padding: 5rem 0; }
.section-alt { background-color: var(--surface); border-top: 1px solid rgba(255,47,208,0.2); border-bottom: 1px solid rgba(255,47,208,0.2); }
.split-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

/* Header — базовые стили; адаптив ниже в Responsive-блоке */
.site-header { background: rgba(9, 11, 29, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(20,224,255,0.2); }

/* Hero */
.hero-bg-image-overlay { position: relative; min-height: 80vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; filter: grayscale(50%) contrast(120%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 10%, rgba(9,11,29,0.6) 100%); z-index: 1; }
.hero-content-stack { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.hero-text-block h1 { text-shadow: 0 0 20px rgba(20,224,255,0.5); }
.hero-sub { font-size: 1.125rem; max-width: 600px; color: var(--text-primary); }
.hero-proof-strip { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.badge { background: rgba(255,47,208,0.2); border: 1px solid var(--secondary); color: var(--secondary); padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; font-weight: bold; font-family: var(--font-heading); }
.hero-actions { display: flex; gap: 1rem; }
.hero-discovery-dock { background: var(--surface); padding: 2rem; border-radius: 8px; border-left: 4px solid var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.discovery-form { display: flex; flex-direction: column; gap: 1rem; }
.discovery-form input, .discovery-form select { width: 100%; padding: 0.75rem; background: var(--bg); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 4px; }

/* Forms generally */
.styled-form .form-group { margin-bottom: 1.5rem; }
.styled-form label { display: block; margin-bottom: 0.5rem; font-weight: bold; color: var(--primary); }
.styled-form input, .styled-form textarea { width: 100%; padding: 0.75rem; background: var(--bg); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; font-family: var(--font-body); }
.styled-form input:focus, .styled-form textarea:focus { outline: none; border-color: var(--primary); }

/* Tournament Cards */
.tournament-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.tournament-card { background: var(--surface); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); display: flex; flex-direction: column; }
.tournament-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.card-img-wrapper { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tournament-card:hover .card-img-wrapper img { transform: scale(1.05); }
.card-badges { position: absolute; top: 1rem; left: 1rem; }
.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff; }
.card-content p { font-size: 0.875rem; margin-bottom: 0.25rem; }
.t-prize { color: var(--accent); font-weight: bold; margin-bottom: 1rem !important; }
.card-actions { margin-top: auto; display: flex; gap: 0.5rem; padding-top: 1rem; }

/* Games Hub Cards */
.games-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.game-hub-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.game-hub-card img { width: 100%; height: 100%; object-fit: cover; }
.ghc-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,11,29,0.9) 0%, transparent 100%); display: flex; align-items: flex-end; padding: 1rem; transition: var(--transition); }
.game-hub-card:hover .ghc-overlay { background: linear-gradient(0deg, rgba(20,224,255,0.5) 0%, rgba(9,11,29,0.5) 100%); }
.ghc-overlay span { font-family: var(--font-heading); font-weight: bold; font-size: 1.2rem; color: #fff; }

/* Visual Game Directory (games.html) */
.visual-game-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.v-game-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; display: flex; }
.v-game-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.v-game-overlay { position: relative; z-index: 1; background: linear-gradient(to top, rgba(9,11,29,1) 0%, rgba(9,11,29,0.4) 60%, transparent 100%); width: 100%; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; transition: var(--transition); }
.v-game-card:hover .v-game-overlay { background: linear-gradient(to top, rgba(9,11,29,1) 0%, rgba(20,224,255,0.4) 100%); }
.v-game-icon { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); margin-bottom: 0.5rem; font-weight: 800; }
.v-game-overlay h3 { font-size: 2rem; margin-bottom: 0.5rem; color: #fff; }
.v-chip { display: inline-block; background: var(--surface); border: 1px solid var(--accent); color: var(--accent); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; margin-bottom: 1rem; align-self: flex-start; }
.v-benefits { margin-bottom: 1rem; }
.v-benefits li { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.v-benefits li::before { content: '>'; color: var(--primary); font-weight: bold; }
.v-example { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 1rem; }

/* Process Timeline */
.process-timeline { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step { background: var(--bg); padding: 2rem; border-radius: 8px; border-left: 2px solid var(--secondary); position: relative; }
.step-num { position: absolute; top: -15px; left: -15px; width: 40px; height: 40px; background: var(--secondary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: bold; font-size: 1.2rem; }

/* Editorial Cards */
.article-stack { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.article-card { background: var(--surface); padding: 2rem; border-radius: 8px; border-top: 4px solid var(--primary); }

/* Checklist Grid */
.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.check-item { background: var(--bg); padding: 1.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.check-item h4 { color: var(--accent); margin-bottom: 0.5rem; }

/* Reviews Wall */
.review-wall { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.review-card { background: var(--surface); padding: 2rem; border-radius: 8px; position: relative; }
.review-card::before { content: '"'; font-family: var(--font-heading); font-size: 4rem; color: rgba(20,224,255,0.2); position: absolute; top: 10px; left: 20px; }
.review-card p { position: relative; z-index: 1; font-style: italic; color: #fff; margin-bottom: 1rem; }
.review-card cite { color: var(--primary); font-weight: bold; font-family: var(--font-heading); font-size: 0.875rem; }

/* FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg); margin-bottom: 1rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); }
.faq-item summary { padding: 1.5rem; cursor: pointer; font-weight: bold; color: var(--text-primary); font-family: var(--font-heading); display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.5rem; }
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-secondary); }

/* Catalog Layout */
.catalog-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
.sticky-filter-bar { background: var(--surface); padding: 1.5rem; border-radius: 8px; }
.filter-group { margin-bottom: 1rem; }
.filter-group label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--primary); text-transform: uppercase; }
.filter-group input, .filter-group select { width: 100%; padding: 0.75rem; background: var(--bg); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; }
.empty-state { padding: 4rem 0; text-align: center; }

/* Compare Tray */
.compare-tray { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); border-top: 2px solid var(--accent); padding: 1rem 0; transform: translateY(100%); transition: transform 0.3s; z-index: 90; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); }
.compare-tray.active { transform: translateY(0); }
.compare-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.compare-items { display: flex; gap: 1rem; flex-grow: 1; overflow-x: auto; padding-bottom: 0.5rem; }
.compare-item { background: var(--bg); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.875rem; white-space: nowrap; border: 1px solid var(--primary); display: flex; align-items: center; gap: 0.5rem; }
.compare-item button { background: none; border: none; color: var(--secondary); cursor: pointer; font-weight: bold; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 1rem; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--surface); padding: 2rem; border-radius: 8px; width: 100%; max-width: 500px; position: relative; border-top: 4px solid var(--primary); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: var(--bg); padding: 1rem; z-index: 1000; display: none; }
.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.cookie-banner p { color: var(--bg); margin: 0; font-weight: bold; }
.cookie-banner a { color: var(--bg); text-decoration: underline; }

/* Footer */
.site-footer { background: #04050d; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { margin-bottom: 1.5rem; color: var(--primary); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* Text Document (Policies) */
.text-document h1 { color: var(--primary); margin-bottom: 2rem; }
.text-document h2 { color: #fff; margin-top: 2rem; margin-bottom: 1rem; }
.text-document p { margin-bottom: 1.5rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(20,224,255,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(20,224,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(20,224,255,0); }
}
.btn-primary { animation: pulse 2s infinite; }
.btn-primary:hover { animation: none; }

/* ================================================
   FLUID TYPOGRAPHY + БАЗОВЫЕ ОТСТУПЫ
   ================================================ */
h1 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); }
h2 { font-size: clamp(1.25rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.5rem); }
.section-padding { padding: clamp(2.5rem, 6vw, 5rem) 0; }

/* Контейнер: боковые отступы всегда минимум 20px,
   на широких экранах до 40px — контент не прилипает к краям */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ================================================
   MOBILE NAV OVERLAY  (JS инжектирует на всех страницах)
   ================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 11, 29, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: var(--primary); font-size: 1.25rem; cursor: pointer;
    border-radius: 8px; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.mobile-nav-close:hover { background: rgba(20,224,255,0.15); }
.mobile-nav-links {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.25rem;
    width: 100%; max-width: 320px;
}
.mobile-nav-links a {
    font-family: var(--font-heading); font-size: 1rem;
    color: var(--text-secondary); text-transform: uppercase;
    letter-spacing: 1.5px; padding: 0.85rem 1.5rem;
    width: 100%; text-align: center;
    border-radius: 8px; transition: var(--transition);
    border: 1px solid transparent;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    background: rgba(20,224,255,0.07);
    border-color: rgba(20,224,255,0.2);
}

/* ================================================
   HEADER — адаптивный на всех размерах
   ================================================ */

/* Всегда: бургер скрыт, nav показан */
.site-header { background: rgba(9,11,29,0.97); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(20,224,255,0.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 64px; gap: 1rem; }
.brand-logo { font-size: clamp(0.75rem, 2vw, 1.3rem); color: var(--primary); white-space: nowrap; flex-shrink: 0; letter-spacing: 0; }
.burger-btn { background: none; border: 1px solid rgba(20,224,255,0.3); color: var(--primary); font-size: 1.1rem; cursor: pointer; border-radius: 6px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.burger-btn:hover { background: rgba(20,224,255,0.1); }

/* Телефоны и маленькие планшеты — бургер */
.main-nav { display: none; gap: clamp(0.5rem, 1.5vw, 1.5rem); align-items: center; }
.main-nav a { font-weight: bold; color: var(--text-primary); text-transform: uppercase; font-size: clamp(0.65rem, 0.9vw, 0.875rem); white-space: nowrap; letter-spacing: 0.3px; }
.main-nav a:hover, .main-nav a.active { color: var(--secondary); }

/* Планшет вертикальный (600-1023px) — бургер остаётся */
/* Планшет горизонтальный / небольшой десктоп (≥1024px) — показываем nav */
@media (min-width: 1024px) {
    .main-nav { display: flex; }
    .burger-btn { display: none; }
    .header-inner { height: 68px; }
}

/* На больших экранах немного крупнее шрифт nav */
@media (min-width: 1280px) {
    .header-inner { height: 72px; }
    .brand-logo { font-size: 1.4rem; }
    .main-nav a { font-size: 0.875rem; gap: 2rem; }
    .main-nav { gap: 1.75rem; }
}

/* ================================================
   BREAKPOINTS — контент
   ================================================ */

/* --- МОБИЛЬНЫЕ (до 599px) ---------------------- */
@media (max-width: 599px) {
    html, body { overflow-x: hidden; }

    /* Hero главной */
    .hero-bg-image-overlay { min-height: 55vh; }
    .hero-content-stack { grid-template-columns: 1fr; padding: 1.5rem 0; gap: 1.5rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-actions { flex-direction: column; gap: 0.6rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-proof-strip { gap: 0.4rem; }
    .badge { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
    .hero-discovery-dock { padding: 1rem; }
    .discovery-form input, .discovery-form select { padding: 0.6rem; font-size: 0.875rem; }

    /* Карточки */
    .tournament-grid { grid-template-columns: 1fr; gap: 1rem; }
    .card-content { padding: 1rem; }
    .card-content h3 { font-size: 1rem; }

    /* Games hub */
    .games-hub-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .ghc-overlay span { font-size: 0.8rem; }
    .ghc-overlay { padding: 0.6rem; }

    /* Остальные гриды */
    .visual-game-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; gap: 2rem; }
    .article-stack { grid-template-columns: 1fr; }
    .checklist-grid { grid-template-columns: 1fr; }
    .review-wall { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .local-comparison { display: flex; flex-direction: column; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .catalog-layout { grid-template-columns: 1fr; }
    .sticky-filter-bar { position: static; }

    /* Тайм-лайн */
    .step { padding: 1.25rem 1rem 1rem 1rem; margin-top: 1.25rem; }
    .step-num { width: 32px; height: 32px; font-size: 0.875rem; top: -12px; left: -12px; }

    /* Контент */
    .article-card { padding: 1.25rem; }
    .section-header p { font-size: 0.875rem; }

    /* FAQ */
    .faq-item summary { padding: 1rem; font-size: 0.85rem; }
    .faq-content { padding: 0 1rem 1rem; }

    /* Footer */
    .footer-col h4 { margin-bottom: 0.75rem; font-size: 0.9rem; }
    .footer-bottom { font-size: 0.75rem; }

    /* Кнопки — минимальная зона тапа */
    .btn { min-height: 44px; font-size: 0.8rem; padding: 0.65rem 1.1rem; }
    .btn-sm { min-height: 38px; font-size: 0.5rem !important; padding: 0.5rem 0.8rem; } 
}

/* --- МАЛЕНЬКИЙ ПЛАНШЕТ (600px – 767px) ---------- */
@media (min-width: 600px) and (max-width: 767px) {
    html, body { overflow-x: hidden; }
    .hero-content-stack { grid-template-columns: 1fr; padding: 2rem 0; gap: 2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; }
    .tournament-grid { grid-template-columns: repeat(2, 1fr); }
    .games-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .review-wall { grid-template-columns: repeat(2, 1fr); }
    .article-stack { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .catalog-layout { grid-template-columns: 1fr; }
    .sticky-filter-bar { position: static; }
    .step { margin-top: 1.5rem; }
}

/* --- ПЛАНШЕТ (768px – 1023px) ------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
    .split-layout { grid-template-columns: 1fr 1fr; }
    .hero-content-stack { grid-template-columns: 1.3fr 1fr; }
    .tournament-grid { grid-template-columns: repeat(2, 1fr); }
    .games-hub-grid { grid-template-columns: repeat(4, 1fr); }
    .visual-game-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .article-stack { grid-template-columns: repeat(2, 1fr); }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .review-wall { grid-template-columns: repeat(2, 1fr); }
    .local-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-layout { grid-template-columns: 200px 1fr; }
    .sticky-filter-bar { position: sticky; top: 80px; height: fit-content; }
}

/* --- ДЕСКТОП (≥ 1024px) ------------------------- */
@media (min-width: 1024px) {
    .split-layout { grid-template-columns: 1fr 1fr; }
    .hero-content-stack { grid-template-columns: 1.5fr 1fr; }
    .tournament-grid { grid-template-columns: repeat(2, 1fr); }
    .games-hub-grid { grid-template-columns: repeat(4, 1fr); }
    .visual-game-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .article-stack { grid-template-columns: repeat(3, 1fr); }
    .checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .review-wall { grid-template-columns: repeat(2, 1fr); }
    .local-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .catalog-layout { grid-template-columns: 250px 1fr; }
    .sticky-filter-bar { position: sticky; top: 80px; height: fit-content; }
}

/* --- ШИРОКИЙ ДЕСКТОП (≥ 1280px) ---------------- */
@media (min-width: 1280px) {
    .tournament-grid { grid-template-columns: repeat(3, 1fr); }
    .visual-game-grid { grid-template-columns: repeat(3, 1fr); }
    .wide-card { grid-column: span 2; aspect-ratio: 16/9; }
    .process-timeline { grid-template-columns: repeat(4, 1fr); }
    .checklist-grid { grid-template-columns: repeat(3, 1fr); }
    .review-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
