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

        :root {
            --black: #0a0a0a;
            --dark-blue: #0f172a;
            --medium-blue: #1e293b;
            --accent-blue: #3b82f6;
            --light-blue: #60a5fa;
            --text-gray: #e2e8f0;
            --text-secondary: #94a3b8;
            --success: #0c6ec3;
            --warning: #5183c4;
            --danger: #3538ef;
        }
        body {
            font-family: 'MyFont';
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
            color: var(--text-gray);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

header {
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--light-blue);
}

.logo::before {
    content: "404";
    background: var(--accent-blue);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

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

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

.nav-active {
    color: var(--accent-blue)!important;
    border-bottom: var(--accent-blue) 3px solid;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.3s ease;
        padding: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .logo::before {
        font-size: 14px;
        padding: 3px 6px;
    }
    
    header {
        padding: 20px 0;
    }
}

        .top-banner {
            background: linear-gradient(90deg, var(--warning), var(--accent-blue));
            padding: 10px;
            text-align: center;
            color: var(--black);
            font-weight: bold;
            font-size: 14px;
            position: fixed;
            top: 110px;
            width: 100%;
            z-index: 999;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.9; }
        }

        .main-content {
            padding: 140px 0 80px;
        }

        .title-section {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 30px;
            position: relative;
        }

        .title-section::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        h1 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 30px;
            color: var(--text-gray);
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInDown 0.8s ease;
        }

        .subtitle {
            font-size: clamp(18px, 2.5vw, 22px);
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.5;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .subtitle-highlight {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--light-blue);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .video-section {
            margin-bottom: 60px;
            position: relative;
        }

        .video-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(59, 130, 246, 0.3);
            animation: fadeIn 1s ease 0.6s both;
        }

        .video-wrapper::before {
            content: "";
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            background: var(--black);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
            margin-bottom: 20px;
            position: relative;
        }

        .play-button::before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            animation: pulse-ring 1.5s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .play-button::after {
            content: "▶";
            color: white;
            font-size: 40px;
            margin-left: 8px;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: var(--light-blue);
            box-shadow: 0 15px 50px rgba(96, 165, 250, 0.5);
        }

        .play-text {
            color: var(--text-gray);
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-radius: 12px;
}

.play-button,
.play-text {
    position: relative;
    z-index: 2;
}

.video-placeholder:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(59, 130, 246, 0.5) 100%
    );
}

        .video-info {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            padding: 0 10px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .video-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            padding: 10px 20px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .video-stat-icon {
            color: var(--accent-blue);
            font-size: 18px;
        }

        .cta-section {
            text-align: center;
            padding: 80px 0;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
            border: 3px solid rgba(59, 130, 246, 0.4);
            border-radius: 16px;
            padding: 60px 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .cta-box::after {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-title {
            font-size: clamp(24px, 3vw, 32px);
            margin-bottom: 25px;
            color: var(--text-gray);
            position: relative;
            z-index: 1;
            line-height: 1.3;
        }

        .cta-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }

        .btn-primary {
            display: inline-block;
            padding: 25px 60px;
            background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
        }

        .features {
            padding: 60px 0;
            background: rgba(30, 41, 59, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 12px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
            animation: scan 3s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .feature-card:hover {
            background: rgba(15, 23, 42, 0.8);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }

        .feature-title {
            font-size: 18px;
            color: var(--light-blue);
            margin-bottom: 10px;
        }

        .feature-text {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
        }

        .warning-box {
            background: rgba(68, 145, 239, 0.1);
            border: 2px solid var(--warning);
            border-radius: 12px;
            padding: 30px;
            margin: 60px auto;
            max-width: 800px;
            text-align: center;
            position: relative;
        }

       

        .warning-title {
            font-size: 24px;
            color: var(--warning);
            margin-bottom: 15px;
        }

        .warning-text {
            color: var(--text-gray);
            line-height: 1.6;
        }

        footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            background: rgba(10, 10, 10, 0.9);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 120px 0 60px;
            }

            .video-wrapper {
                padding: 15px;
            }

            .cta-box {
                padding: 40px 20px;
            }

            .btn-primary {
                padding: 20px 40px;
                font-size: 18px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .video-info {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            .play-button {
                width: 80px;
                height: 80px;
            }

            .play-button::after {
                font-size: 30px;
            }

            .play-text {
                font-size: 16px;
            }

            .top-banner {
                font-size: 12px;
                top: 70px;
            }
        }