        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Starfield Background */
        .starfield {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10 !important;
        }
		
		section { position: relative; z-index: 10 !important; }
		
        /* Header */
        header {
            padding: 30px 0;
            text-align: center;
        }

        .logo-img {
            max-width: 600px;
            width: 90%;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 20px rgba(255, 255, 0, 0.3));
			position: relative;
			z-index: 10 !important;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .nav-btn {
            font-size: 14pt;
            color: white;
            font-family: 'Luckiest Guy', 'Roboto', Arial;
            text-decoration: none;
            text-align: center;
            border: 1px lightgray solid;
            border-radius: 3px;
            padding: 10px 20px;
            display: inline-block;
            transition: all 0.3s ease;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background-color: #555;
            border: 1px yellow solid;
            color: yellow;
        }

        /* Language Selector */
        .language-selector {
            margin: 20px 0;
			position: relative;
			z-index: 10;
        }

        .language-selector select {
            font-size: 14pt;
            padding: 12px 15px;
            background-color: #222;
            color: white;
            border: 1px lightgray solid;
            border-radius: 3px;
            cursor: pointer;
            font-family: 'Roboto', Arial;
            min-height: 44px;
        }

        .language-selector select:hover {
            border-color: yellow;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 40px 0 60px 0;
        }

        .hero h1 {
            font-family: 'Luckiest Guy', 'Roboto', Arial;
            font-size: clamp(2em, 5vw, 3.5em);
            margin-bottom: 20px;
            text-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
            color: #FFD700;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px rgba(255, 255, 0, 0.25), 0 0 15px rgba(255, 255, 0, 0.15); }
            to { text-shadow: 0 0 15px rgba(255, 255, 0, 0.4), 0 0 20px rgba(255, 255, 0, 0.25); }
        }

        .hero p {
            font-size: clamp(1em, 2.5vw, 1.3em);
            margin-bottom: 30px;
            color: #ddd;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Download Buttons */
        .download-section {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .download-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 35px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            font-size: clamp(1em, 2vw, 1.2em);
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            min-height: 60px;
        }

        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
            border-color: yellow;
        }

        .download-icon {
            font-size: 2em;
        }

        /* Features Grid */
        .features {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 50px 30px;
            margin: 60px 0;
        }

        .features h2 {
            text-align: center;
            font-family: 'Luckiest Guy', 'Roboto', Arial;
            font-size: clamp(1.8em, 4vw, 2.5em);
            margin-bottom: 40px;
            color: #FFD700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: yellow;
        }

        .feature-card img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

        .feature-card img[src*="bonusscore"] {
            max-width: 249px;
            width: 100%;
            height: auto;
        }

        .feature-card img[src*="hazards"] {
            max-width: 150px;
            width: 100%;
            height: auto;
        }

        .feature-card img[src*="bonus"] {
            max-width: 264px;
            width: 100%;
            height: auto;
        }

        .feature-card img[src*="wild"],
        .feature-card img[src*="bomb"],
        .feature-card img[src*="ship"],
        .feature-card img[src*="eq"] {
            width: 64px;
            height: 64px;
        }

        .feature-card h3 {
            font-size: clamp(1.2em, 3vw, 1.4em);
            margin-bottom: 12px;
            color: #FFD700;
        }

        .feature-card p {
            opacity: 0.9;
            line-height: 1.6;
            font-size: clamp(0.9em, 2vw, 1em);
        }

        /* Game Screenshots */
        .screenshots {
            text-align: center;
            margin: 60px 0;
        }

        .screenshots h2 {
            font-family: 'Luckiest Guy', 'Roboto', Arial;
            font-size: clamp(1.8em, 4vw, 2.5em);
            margin-bottom: 30px;
            color: #FFD700;
        }

        .screenshot-demo {
            max-width: 600px;
            width: 100%;
            height: auto;
            margin: 0 auto;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
        }

        /* Content sections */
        .features p {
            font-size: clamp(1em, 2vw, 1.2em);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        footer p {
            font-size: clamp(0.9em, 2vw, 1em);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            header {
                padding: 20px 0;
            }

            .hero {
                padding: 30px 0 40px 0;
            }

            .nav-links {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .nav-btn {
                width: 100%;
                font-size: 12pt;
                padding: 12px 15px;
            }

            .language-selector select {
                width: 100%;
                font-size: 12pt;
            }

            .features {
                padding: 30px 15px;
                margin: 40px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .download-section {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }

            .download-btn {
                width: 100%;
                padding: 15px 20px;
                justify-content: center;
            }

            .screenshots {
                margin: 40px 0;
            }

            .screenshot-demo {
                border-radius: 5px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                width: 95%;
            }

            .hero h1 {
                margin-bottom: 15px;
            }

            .features {
                padding: 20px 10px;
                margin: 30px 0;
            }

            .feature-card {
                padding: 20px 15px;
            }

            .download-icon {
                font-size: 1.5em;
            }
        }

        /* Tablet landscape */
        @media (min-width: 769px) and (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
