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

        body {
            background-color: #0A0F14;
            font-family: 'Inter', sans-serif;
            color: #E8EDF3;
            font-size: 14px;
            line-height: 1.4;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: rgba(74, 143, 229, 0.25);
        }

        .main {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
            padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
            padding-bottom: env(safe-area-inset-bottom, 0px);
        }

        .hero {
            text-align: center;
            margin: 2.5rem 0 2.5rem 0;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 0.6rem;
            color: #E8EDF3;
        }

        .hero-subtitle {
            font-size: 15px;
            color: #7E8D9F;
        }

        .hero .seo-lead {
            margin-left: auto;
            margin-right: auto;
            margin-top: 0.75rem;
        }

        .hubs-section {
            margin-bottom: 2.5rem;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            color: #5A7A9F;
            margin-bottom: 1.2rem;
            letter-spacing: 0.2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .card {
            position: relative;
            background: #0D1219;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            padding: 1.4rem 1.4rem;
            transition: background 0.15s ease, border-color 0.15s ease;
        }

        .card:hover {
            background: #141B24;
            border-color: rgba(74, 143, 229, 0.3);
        }

        .card-cover-link {
            position: absolute;
            inset: 0;
            z-index: 1;
            border-radius: inherit;
        }

        .card .quick-filters,
        .card .card-link {
            position: relative;
            z-index: 2;
        }

        .card-name {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.2px;
            margin-bottom: 0.5rem;
        }

        .card-stats {
            font-size: 13px;
            color: #7E8D9F;
            margin-bottom: 0.6rem;
        }

        .card-stats span {
            color: #E8EDF3;
            font-weight: 500;
        }

        .card-link {
            margin-top: 0.8rem;
            font-size: 13px;
            font-weight: 500;
            color: #4A8FE5;
            text-decoration: none;
            display: inline-block;
            transition: opacity 0.15s ease;
        }

        .card-link:hover {
            opacity: 0.8;
        }

        .card-rust {
            background: #11161D;
        }
        .card-l2 {
            background: #11161D;
        }

        .card-guides {
            background: #11161D;
        }

        .card-guides:hover {
            border-color: rgba(93, 184, 122, 0.35);
        }

        .section-unavailable {
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .section-unavailable:hover {
            background: #0D1219;
            border-color: rgba(255, 255, 255, 0.05);
        }

        .section-unavailable-content {
            filter: blur(5px);
            opacity: 0.35;
            user-select: none;
            pointer-events: none;
        }

        .section-unavailable-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.35rem;
            padding: 1.2rem;
            background: rgba(10, 15, 20, 0.72);
            backdrop-filter: blur(2px);
        }

        .section-unavailable-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: #8EB8FF;
            background: rgba(74, 143, 229, 0.15);
            border: 1px solid rgba(74, 143, 229, 0.35);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            margin-bottom: 0.15rem;
        }

        .section-unavailable-title {
            font-size: 15px;
            font-weight: 600;
            color: #E8EDF3;
        }

        .section-unavailable-text {
            font-size: 12px;
            line-height: 1.45;
            color: #7E8D9F;
            max-width: 280px;
        }

        .compact-card.section-unavailable {
            min-height: 180px;
        }

        .compact-card.section-unavailable .section-unavailable-overlay {
            padding: 0.9rem;
        }

        .quick-filters-container {
            margin: 0.8rem 0 0.3rem 0;
        }
        .quick-filters-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #5A7A9F;
            margin-bottom: 0.6rem;
        }
        .quick-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .quick-filter-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            background: #1E2A38;
            border: 1px solid rgba(74, 143, 229, 0.45);
            color: #C5D9FF;
            font-size: 11px;
            font-weight: 600;
            padding: 0.45rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.15s ease;
            text-decoration: none;
            line-height: 1.4;
            -webkit-tap-highlight-color: transparent;
        }

        .quick-filter-btn:hover {
            background: #2A3A50;
            border-color: #4A8FE5;
            color: white;
        }

        /* Стримеры-партнёры — оптимизированные карточки, без трансформации при наведении */
        .streamers-section {
            margin: 2rem 0 2rem 0;
            overflow: hidden;
        }

        .streamers-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.8rem;
        }

        .streamers-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #5A7A9F;
        }

        .streamers-line {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
        }

        .streamers-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .streamers-track {
            display: flex;
            gap: 1rem;
            width: max-content;
        }

        @media (min-width: 1025px) {
            .streamers-track {
                animation: streamers-marquee 90s linear infinite;
                will-change: transform;
            }

            @keyframes streamers-marquee {
                from { transform: translateX(0); }
                to { transform: translateX(calc(-100% / 3)); }
            }

            .streamers-carousel:hover .streamers-track {
                animation-play-state: paused;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .streamers-track {
                animation: none !important;
            }
        }

        .streamer-card {
            flex: 0 0 auto;
            width: 160px;
            background: #0D1219;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 0.8rem 0.5rem;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: background 0.15s ease, border-color 0.15s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .streamer-card:hover {
            background: #141B24;
            border-color: rgba(74, 143, 229, 0.3);
            /* Без transform: scale() */
        }

        .streamer-icon {
            font-size: 26px;
            margin-bottom: 0.3rem;
        }

        .streamer-name {
            font-size: 14px;
            font-weight: 600;
            color: #E8EDF3;
            margin-bottom: 0.15rem;
        }

        .streamer-platform {
            font-size: 10px;
            color: #5A7A9F;
            text-transform: uppercase;
        }

        .streamer-card-partner .streamer-icon-plus {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin: 0 auto 0.3rem;
            border: 1px dashed rgba(74, 143, 229, 0.45);
            border-radius: 50%;
            font-size: 22px;
            font-weight: 300;
            color: #4A8FE5;
            line-height: 1;
        }

        .streamer-card-partner:hover .streamer-icon-plus {
            border-color: rgba(74, 143, 229, 0.65);
            color: #6BA3F0;
        }

        .streamer-card-partner .streamer-name {
            font-size: 12px;
            line-height: 1.3;
        }

        .bottom-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .compact-card {
            background: #0D1219;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            padding: 0.8rem 1.1rem;
        }

        .compact-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #5A7A9F;
            margin-bottom: 0.6rem;
        }

        .compact-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.6rem;
        }

        .compact-title-row .compact-title {
            margin-bottom: 0;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            font-weight: 600;
            color: #5EEAD4;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            transition: opacity 0.25s ease;
        }

        .live-badge.live-sync {
            opacity: 1;
        }

        .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #5EEAD4;
            box-shadow: 0 0 6px rgba(94, 234, 212, 0.45);
            animation: live-pulse 2s ease-in-out infinite;
        }

        .live-badge.live-sync .live-dot {
            animation: live-sync 0.6s ease-out;
        }

        @keyframes live-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.55; transform: scale(0.85); }
        }

        @keyframes live-sync {
            0% { transform: scale(1); box-shadow: 0 0 6px rgba(94, 234, 212, 0.45); }
            40% { transform: scale(1.35); box-shadow: 0 0 12px rgba(94, 234, 212, 0.75); }
            100% { transform: scale(1); box-shadow: 0 0 6px rgba(94, 234, 212, 0.45); }
        }

        .compact-list.live-flash {
            animation: live-flash 0.55s ease-out;
        }

        @keyframes live-flash {
            0% { opacity: 0.55; }
            100% { opacity: 1; }
        }

        .compact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .compact-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            padding: 0.25rem 0;
        }

        .compact-item--link {
            padding: 0;
        }

        .compact-item-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 0.5rem;
            padding: 0.3rem 0.4rem;
            margin: 0 -0.4rem;
            border-radius: 6px;
            color: inherit;
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .compact-item-link:hover {
            background: rgba(74, 143, 229, 0.1);
        }

        .compact-item-link:hover .compact-name {
            color: #4A8FE5;
        }

        .compact-item-link:hover .compact-meta {
            color: #6B8FB8;
        }

        .compact-name {
            color: #E8EDF3;
            font-weight: 500;
        }

        .compact-meta {
            font-size: 11px;
            color: #5A7A9F;
        }

        .compact-game {
            font-weight: 400;
            color: #7E8D9F;
        }

        /* Планшеты */
        @media (max-width: 1024px) {
            .streamers-carousel {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                margin: 0 calc(-1 * max(1.5rem, env(safe-area-inset-left, 0px)));
                padding: 0 max(1.5rem, env(safe-area-inset-left, 0px));
            }

            .streamers-carousel::-webkit-scrollbar {
                display: none;
            }

            .streamers-track {
                animation: none;
                padding-right: 1rem;
            }

            .streamer-card {
                scroll-snap-align: start;
            }

            .cards-grid {
                gap: 1rem;
            }
        }

        @media (max-width: 900px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Телефоны */
        @media (max-width: 700px) {
            .main {
                padding-left: max(1rem, env(safe-area-inset-left, 0px));
                padding-right: max(1rem, env(safe-area-inset-right, 0px));
            }

            .hero {
                margin: 1.75rem 0 1.75rem;
            }

            .cards-grid { gap: 0.8rem; }
            .bottom-row { grid-template-columns: 1fr; gap: 0.8rem; }
            .hero-title { font-size: 26px; }
            .hero-subtitle { font-size: 14px; }
            .card { padding: 1.15rem 1.1rem; }
            .card-name { font-size: 18px; }
            .streamer-card { width: 140px; min-height: 44px; }
            .quick-filters { gap: 0.5rem; }
            .quick-filter-btn {
                min-height: 44px;
                padding: 0.4rem 0.85rem;
                font-size: 10px;
            }
            .compact-item-link {
                min-height: 44px;
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }
            .section-unavailable-text { max-width: 100%; }
        }

        @media (max-width: 380px) {
            .hero-title { font-size: 22px; }
            .quick-filter-btn { flex: 1 1 calc(50% - 0.25rem); }
        }
