 /* Inherit main theme variables and styles */
        :root {
            --primary: #00f5ff;
            --secondary: #ff006e;
            --accent: #8338ec;
            --bg-dark: #0a0a0f;
            --bg-card: rgba(255, 255, 255, 0.05);
            --text: #e2e8f0;
            --text-dim: #94a3b8;
            --glow: rgba(0, 245, 255, 0.4);
            --glow-pink: rgba(255, 0, 110, 0.3);
            --glow-purple: rgba(131, 56, 236, 0.3);
        }

        /* About Section */
        .about-section {
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 245, 255, 0.2);
            border-bottom: 1px solid rgba(0, 245, 255, 0.2);
            position: relative;
            overflow: hidden;
            margin: 2rem 0;
            max-width: auto;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
            animation: float 25s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .about-container {
            max-width: auto;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-header h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            position: relative;
        }

        .about-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .about-description {
            font-size: 1.2rem;
            color: var(--text);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            font-family: 'Inter', sans-serif;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
            transition: left 0.8s;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 245, 255, 0.2);
        }

        .stat-number {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            background: rgba(10, 10, 15, 0.6);
            backdrop-filter: blur(15px);
            padding: 4rem 0;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: auto;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--glow), var(--glow-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #000;
        }

        .feature-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-dim);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* SEO Content Section */
        .seo-content {
            max-width: auto;
            margin: 0 auto;
            padding: 3rem 2rem;
            color: var(--text);
            line-height: 1.8;
        }

        .seo-content h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            color: var(--primary);
            margin: 2rem 0 1rem 0;
        }

        .seo-content p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .game-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .category-item {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .category-item:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .category-item h4 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-header h2 {
                font-size: 2rem;
            }
            
            .about-description {
                font-size: 1.1rem;
            }
            
            .about-container {
                padding: 3rem 1rem;
            }
            
            .features-grid {
                padding: 0 1rem;
            }
            
            .feature-card {
                padding: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .about-header h2 {
                font-size: 1.8rem;
            }
        }

        @keyframes float {
            0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
            33% { transform: translate(20px, -20px) rotate(60deg); }
            66% { transform: translate(-15px, 15px) rotate(120deg); }
        }