        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #003b46;
            background: linear-gradient(135deg, #c4dfe6 0%, #66a5ad 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(0, 59, 70, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 59, 70, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #c4dfe6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo::before {
            content: "⭐";
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #c4dfe6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #66a5ad;
        }

        .hero {
            padding: 6rem 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(196, 223, 230, 0.9), rgba(102, 165, 173, 0.9));
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23003b46" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%2307575b" opacity="0.4"/><circle cx="60" cy="80" r="1.5" fill="%2366a5ad" opacity="0.2"/></svg>') repeat;
            animation: stars 20s linear infinite;
        }

        @keyframes stars {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            color: #003b46;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 59, 70, 0.3);
        }

        .hero p {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 2rem;
            color: #07575b;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #07575b, #003b46);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(7, 87, 91, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(7, 87, 91, 0.4);
            background: linear-gradient(45deg, #003b46, #07575b);
        }

        .features {
            padding: 5rem 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #003b46;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 59, 70, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(102, 165, 173, 0.3);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #003b46;
        }

        .screenshots {
            padding: 5rem 0;
            text-align: center;
        }

        .screenshots h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #003b46;
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .screenshot-placeholder {
            aspect-ratio: 9/16;
            background: linear-gradient(135deg, rgba(0, 59, 70, 0.1), rgba(7, 87, 91, 0.2));
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #07575b;
            font-size: 1.1rem;
            border: 2px dashed #66a5ad;
            transition: all 0.3s ease;
            text-align: center;
            padding: 20px;
        }

        .screenshot-placeholder:hover {
            background: linear-gradient(135deg, rgba(0, 59, 70, 0.2), rgba(7, 87, 91, 0.3));
        }

        .about {
            padding: 5rem 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #003b46;
        }

        .about p {
            font-size: 1.1rem;
            color: #07575b;
            margin-bottom: 1.5rem;
        }

        .game-placeholder {
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(0, 59, 70, 0.1), rgba(7, 87, 91, 0.2));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #07575b;
            font-size: 1.2rem;
            border: 2px dashed #66a5ad;
        }

        footer {
            background: #003b46;
            color: #c4dfe6;
            text-align: center;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #66a5ad;
        }

        .footer-section a {
            color: #c4dfe6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #66a5ad;
        }

        .mobile-menu {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
                background: none;
                border: none;
                color: #c4dfe6;
                font-size: 1.5rem;
                cursor: pointer;
            }

            .hero {
                padding: 4rem 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .screenshot-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 0;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .features, .screenshots, .about {
                padding: 3rem 0;
            }
        }

        /* Performance optimizations */
        .hero, .features, .screenshots, .about {
            will-change: transform;
        }

        img {
            max-width: 100%;
            height: auto;
            loading: lazy;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(0, 59, 70, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 59, 70, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #c4dfe6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo::before {
            content: "⭐";
            font-size: 2rem;
        }

        .back-link {
            color: #c4dfe6;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            background: rgba(196, 223, 230, 0.2);
            transition: all 0.3s ease;
        }

        .back-link:hover {
            background: rgba(196, 223, 230, 0.3);
            color: #66a5ad;
        }

        .page-header {
            padding: 4rem 0 2rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .page-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: #003b46;
            font-weight: 900;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #07575b;
            max-width: 600px;
            margin: 0 auto;
        }

        .content {
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 59, 70, 0.1);
        }

        .content-inner {
            padding: 0 3rem;
        }

        .last-updated {
            background: linear-gradient(45deg, #c4dfe6, #66a5ad);
            color: #003b46;
            padding: 1rem 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
        }



        .highlight-box {
            background: linear-gradient(135deg, rgba(196, 223, 230, 0.3), rgba(102, 165, 173, 0.2));
            border-left: 4px solid #07575b;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .warning-box {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
            border-left: 4px solid #ff9800;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .contact-info {
            background: rgba(0, 59, 70, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }

        .contact-info h3 {
            color: #003b46;
            margin-bottom: 1rem;
        }

        .contact-info a {
            color: #07575b;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            color: #003b46;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .rule-card {
            background: rgba(255, 255, 255, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #66a5ad;
        }

        .rule-card h4 {
            color: #003b46;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

                .highlight-box {
            background: linear-gradient(135deg, rgba(196, 223, 230, 0.3), rgba(102, 165, 173, 0.2));
            border-left: 4px solid #07575b;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .warning-box {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
            border-left: 4px solid #ff9800;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .contact-info {
            background: rgba(0, 59, 70, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }

        .contact-info h3 {
            color: #003b46;
            margin-bottom: 1rem;
        }

        .contact-info a {
            color: #07575b;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            color: #003b46;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .rule-card {
            background: rgba(255, 255, 255, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #66a5ad;
        }

        .rule-card h4 {
            color: #003b46;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
