:root {
            --accent: #ff0000;
            --bg-deep: #050505;
            --text-pure: #ffffff;
            --text-dim: #999999;
            --border: rgba(255, 255, 255, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
            border-radius: 0 !important;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-pure);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            overflow-y: auto;
            min-height: 100vh;
            width: 100vw;
        }

        .main-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://empirebay-gta.online/forum-assets/fon.jpg') no-repeat center center;
            background-size: cover;
            z-index: -5;
            filter: brightness(0.25) contrast(1.15);
        }

        .vignette {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 10%, rgba(0,0,0,0.98) 100%);
            z-index: -2;
            pointer-events: none;
        }

        .top-notif {
            position: fixed;
            top: -160px;
            left: 0;
            width: 100%;
            min-height: 100px;
            background: #0a0a0a;
            color: #ffffff;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 5%;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            border-bottom: 5px solid var(--accent);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }

        .top-notif.active {
            transform: translateY(160px);
        }

        .notif-content {
            display: flex;
            align-items: center;
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        .notif-badge {
            background: var(--accent);
            color: #fff;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 900;
            letter-spacing: 3px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .notif-main-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .notif-title {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .notif-desc {
            font-size: 12px;
            font-weight: 600;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .notif-close {
            position: absolute;
            right: 5%;
            cursor: pointer;
            font-size: 22px;
            color: #ffffff;
            opacity: 0.2;
            transition: 0.3s;
        }

        .notif-close:hover {
            opacity: 1;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            padding: 0 7%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 100;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
            backdrop-filter: blur(8px);
            transition: height 0.3s ease;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .logo-box img {
            height: 42px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 50px;
        }

        nav a {
            color: var(--text-dim);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 4px;
            position: relative;
            padding: 10px 0;
            transition: var(--transition);
        }

        nav a:hover, nav a.active {
            color: var(--text-pure);
        }

        nav a.active::after {
            content: "";
            position: absolute;
            bottom: -35px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fff;
        }

        .btn-cabinet {
            background: transparent;
            color: #fff;
            padding: 12px 25px;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            border: 1px solid rgba(255,255,255,0.4);
            white-space: nowrap;
        }

        .btn-cabinet i {
            padding-right: 18px;
            margin-right: 18px;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-cabinet:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 10% 120px 10%;
            z-index: 10;
            position: relative;
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(50px, 10vw, 150px);
            font-weight: 700;
            line-height: 0.85;
            text-transform: uppercase;
            margin-bottom: 25px;
            color: #fff;
        }

        .hero-title span {
            display: block;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.1);
            letter-spacing: -2px;
        }

        .hero-subtitle {
            font-size: clamp(12px, 1.2vw, 14px);
            color: var(--text-dim);
            max-width: 850px;
            width: 100%;
            margin-bottom: 50px;
            line-height: 1.8;
            border-left: 4px solid var(--accent);
            padding-left: 28px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .btn-play {
            background: #fff;
            color: #000;
            padding: 22px 70px;
            font-size: 16px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 5px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            width: fit-content;
        }

        .btn-play:hover {
            background: var(--accent);
            color: #fff;
            transform: scale(1.03);
        }

        footer {
            position: fixed;
            bottom: 40px;
            left: 7%;
            right: 7%;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            z-index: 10;
            pointer-events: none;
        }

        footer * {
            pointer-events: auto;
        }

        .footer-left {
            display: flex;
            gap: clamp(30px, 5vw, 80px);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-val {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .stat-label {
            font-size: 9px;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 20px;
        }

        .social-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: clamp(40px, 4vw, 46px);
            height: clamp(40px, 4vw, 46px);
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
            font-size: 17px;
        }

        .social-link:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        .social-text {
            font-size: 9px;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
        }

        .copyright {
            font-size: 9px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: right;
            border-top: 1px solid rgba(255,255,255,0.04);
            padding-top: 15px;
            width: 100%;
        }

        @media (max-width: 1400px) {
            .header-left { gap: 40px; }
            nav { gap: 30px; }
        }

        @media (max-width: 1366px) {
            header { padding: 0 4%; height: 80px; }
            nav a.active::after { bottom: -25px; }
            .hero-section { padding-left: 7%; }
        }

        @media (max-height: 800px) {
            header { height: 70px; }
            .hero-title { margin-bottom: 15px; }
            .hero-subtitle { margin-bottom: 30px; }
            footer { bottom: 20px; }
            nav a.active::after { bottom: -22px; }
        }

        @media (max-width: 1024px) {
            nav { display: none; }
            header { padding: 0 5%; }
            .hero-section { align-items: center; padding-left: 0; text-align: center; }
            .hero-subtitle { border-left: none; border-bottom: 3px solid var(--accent); padding-left: 0; padding-bottom: 25px; margin: 0 auto 40px auto; max-width: 90%; }
            footer { position: relative; bottom: 0; left: 0; right: 0; flex-direction: column; align-items: center; gap: 40px; padding: 0 0 40px 0; margin-top: -60px; }
            .footer-left { justify-content: center; width: 100%; }
            .footer-right, .social-block { align-items: center; }
            .copyright { text-align: center; }
            body { overflow-y: auto; }
        }

        @media (max-width: 600px) {
            .notif-content { gap: 15px; flex-direction: column; text-align: center; }
            .notif-badge { padding: 5px 10px; font-size: 12px; }
            .notif-title { font-size: 16px; }
            .top-notif.active { transform: translateY(200px); }
            .top-notif { height: auto; padding: 20px 10%; }
            .logo-box img { height: 32px; }
            .btn-cabinet { padding: 10px 15px; font-size: 10px; }
            .btn-cabinet i { padding-right: 10px; margin-right: 10px; }
            .btn-play { width: 100%; padding: 20px 0; }
        }