 :root {
            --cosmic-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --cosmic-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --cosmic-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --space-dark: #0f0f23;
            --space-medium: #1a1a2e;
            --nebula-purple: #6c5ce7;
            --star-white: #ffffff;
            --cosmic-text: #b2b8d4;
        }

     
        /* Hero Banner */
        .game-hero-banner {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('./assets/main-port.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--star-white);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
        }

        .game-logo-title {
            font-size: 5rem;
            font-weight: 900;
            background: var(--cosmic-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
            letter-spacing: -3px;
        }

        .game-tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--cosmic-text);
            font-weight: 300;
        }

        .game-quick-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            background: var(--cosmic-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--cosmic-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cosmic-cta-button {
            background: var(--cosmic-primary);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            color: var(--star-white);
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cosmic-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cosmic-cta-button:hover::before {
            left: 100%;
        }

        .cosmic-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
            color: var(--star-white);
        }

        /* Game Overview */
        .game-overview-section {
            padding: 120px 0;
            background: var(--space-medium);
            position: relative;
        }

        .section-headline {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--cosmic-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .game-description-block {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--cosmic-text);
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        /* Screenshots Gallery */
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .screenshot-frame {
            position: relative;
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .screenshot-frame:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .screenshot-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .screenshot-frame:hover .screenshot-image {
            transform: scale(1.1);
        }

        /* Features Section */
        .features-cosmos {
            padding: 120px 0;
            background: var(--space-dark);
        }

        .features-constellation {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 4rem;
        }

        .feature-star {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .feature-star:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .feature-icon-cosmic {
            font-size: 3rem;
            background: var(--cosmic-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .feature-title-cosmic {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--star-white);
        }

        .feature-description-cosmic {
            color: var(--cosmic-text);
            line-height: 1.6;
        }

        /* System Requirements */
        .requirements-nebula {
            padding: 120px 0;
            background: var(--space-medium);
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            margin-top: 3rem;
        }

        .requirement-block {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(108, 92, 231, 0.3);
        }

        .req-category-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--cosmic-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .req-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .req-label {
            color: var(--cosmic-text);
            font-weight: 500;
        }

        .req-value {
            color: var(--star-white);
            font-weight: 600;
        }

        /* Download Section */
        .download-galaxy {
            padding: 120px 0;
            background: var(--space-dark);
            text-align: center;
        }

        .download-platforms {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .platform-button {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 25px 40px;
            color: var(--star-white);
            text-decoration: none;
            transition: all 0.4s ease;
            min-width: 200px;
        }

        .platform-button:hover {
            background: var(--cosmic-primary);
            border-color: transparent;
            transform: translateY(-5px);
            color: var(--star-white);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .platform-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .platform-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .game-logo-title {
                font-size: 3rem;
            }

            .game-quick-stats {
                gap: 20px;
            }

            .screenshots-grid {
                grid-template-columns: 1fr;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .download-platforms {
                flex-direction: column;
                align-items: center;
            }
        }