* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1042 100%);
            color: #fff;
            overflow-x: hidden;
        }

        .background-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, #ff00ff15 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
            animation: drift 20s linear infinite;
        }

        @keyframes drift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }

        .floating-cube {
            position: fixed;
            width: 100px;
            height: 100px;
            border: 2px solid #ff00ff;
            transform: rotate(45deg);
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
            z-index: -1;
        }

        .cube1 { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .cube2 { top: 60%; right: 15%; animation-delay: 7s; animation-duration: 25s; }
        .cube3 { bottom: 20%; left: 20%; animation-delay: 14s; animation-duration: 22s; }

        @keyframes float {
            0% { 
                transform: rotate(45deg) translate(0px, 0px); 
                opacity: 0.1;
            }
            25% { 
                transform: rotate(90deg) translate(100px, -50px); 
                opacity: 0.2;
            }
            50% { 
                transform: rotate(135deg) translate(50px, -100px); 
                opacity: 0.15;
            }
            75% { 
                transform: rotate(180deg) translate(-50px, -50px); 
                opacity: 0.2;
            }
            100% { 
                transform: rotate(225deg) translate(0px, 0px); 
                opacity: 0.1;
            }
        }

        header {
            background: linear-gradient(90deg, #1a0033 0%, #33006b 100%);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 2em;
            font-weight: bold;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        .hero {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
            font-family: 'Orbitron', sans-serif;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px #ff00ff); }
            to { filter: drop-shadow(0 0 20px #ff00ff); }
        }

        .hero p {
            font-size: 1.3em;
            color: #ccc;
            margin-bottom: 30px;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .stat-box {
            background: rgba(255, 0, 255, 0.1);
            border: 2px solid #ff00ff;
            padding: 30px 40px;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #ff00ff;
        }

        .stat-label {
            color: #ccc;
            margin-top: 10px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            font-size: 1.2em;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(135deg, #ff00ff, #8000ff);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
            margin: 20px 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
        }

        .section {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 2.5em;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
            font-family: 'Orbitron', sans-serif;
        }

        .video-thumbnail-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .video-card {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .video-card {
            background: rgba(255, 0, 255, 0.05);
            border: 2px solid rgba(255, 0, 255, 0.3);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .video-card:hover {
            transform: translateY(-10px);
            border-color: #ff00ff;
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
        }

        .video-thumbnail {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #330066, #660099);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: #ff00ff;
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #fff;
        }

        .video-desc {
            color: #999;
            font-size: 0.9em;
        }

        .about-content {
            background: rgba(255, 0, 255, 0.05);
            border: 2px solid rgba(255, 0, 255, 0.3);
            border-radius: 15px;
            padding: 50px;
            line-height: 1.8;
            font-size: 1.1em;
        }

        .progress-bar-container {
            background: rgba(255, 0, 255, 0.1);
            border: 2px solid #ff00ff;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .progress-bar {
            width: 100%;
            height: 30px;
            background: rgba(255, 0, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            width: 70%;
            border-radius: 15px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        footer {
            background: #0a0e27;
            padding: 40px 20px;
            text-align: center;
            margin-top: 100px;
            border-top: 2px solid #ff00ff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .social-links a {
            color: #ff00ff;
            font-size: 1.5em;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: scale(1.2);
            text-shadow: 0 0 20px #ff00ff;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5em; }
            .nav-links { flex-direction: column; gap: 15px; }
            .stats { flex-direction: column; gap: 20px; }
            .about-content { padding: 30px; }
        }