* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #1a0b2e;
            color: #f8f0ff;
            padding-bottom: 80px;
        }
        .header {
            background-color: #2d1b55;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 2px 5px rgba(0,0,0,0.6);
            display: inline-block;
            letter-spacing: 0.8px;
            font-family: 'Times New Roman', serif;
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #f8f0ff;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 3px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8f0ff;
            font-size: 2rem;
            cursor: pointer;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #ffd700;
            font-size: 3rem;
            margin: 40px 0;
            text-align: center;
            border-bottom: 5px solid #ffd700;
            padding-bottom: 20px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.5);
        }
        h2 {
            color: #ffecb3;
            font-size: 2.3rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 6px solid #ffd700;
        }
        h3 {
            color: #ffe082;
            font-size: 1.8rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎶";
            margin-right: 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #e0cffc;
        }
        .highlight {
            font-weight: bold;
            color: #ffd700;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 20px 10px;
            background-color: #ffd700;
            color: #1a0b2e;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: 0.3s;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        }
        .btn:hover {
            background-color: #ffc107;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
        }
        .btn-login {
            background-color: #7e57c2;
            color: white;
        }
        .btn-login:hover {
            background-color: #673ab7;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
        }
        .game-image {
            max-width: 100%;
            transition: 0.6s;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: #2d1b55;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
            border-left: 6px solid #ffd700;
        }
        .tag {
            display: inline-block;
            background-color: #4a2c8a;
            padding: 10px 18px;
            margin: 10px;
            border-radius: 30px;
            text-decoration: none;
            color: #ffd700;
            font-size: 1.1rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #5b32a3;
            transform: translateY(-3px);
        }
        .game-type {
            display: inline-block;
            margin: 15px 10px;
            text-decoration: none;
            color: #d1c4e9;
            font-weight: 600;
            font-size: 1.1rem;
            transition: 0.3s;
        }
        .game-type:hover {
            color: #ffd700;
            transform: translateX(7px);
        }
        .footer {
            background-color: #2d1b55;
            color: #d1c4e9;
            padding: 50px 20px;
            margin-top: 80px;
            border-top: 4px solid #ffd700;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.8;
            padding-top: 25px;
            border-top: 1px solid #4a2c8a;
        }
        .review-box {
            background-color: #4a2c8a;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-top: 4px solid #ffd700;
        }
        .reviewer {
            font-weight: bold;
            color: #ffe082;
            margin-bottom: 10px;
            display: block;
            font-size: 1.2rem;
        }
        .tip-box {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 5px solid #ffd700;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji-bullet {
            display: list-item;
            list-style-type: none;
            position: relative;
            padding-left: 40px;
            margin-bottom: 15px;
        }
        .emoji-bullet::before {
            content: "🌟";
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }
        .state-data {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }
        .state-card {
            background-color: #4a2c8a;
            border-radius: 10px;
            padding: 20px;
            flex: 1;
            min-width: 220px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        }
        .state-name {
            font-weight: bold;
            color: #ffe082;
            margin-bottom: 8px;
            font-size: 1.3rem;
        }
        .download-count {
            color: #f8f0ff;
            font-size: 1.4rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #2d1b55;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
                margin: 30px 0;
            }
            h2 {
                font-size: 2rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 14px 28px;
                font-size: 1.1rem;
                display: block;
                text-align: center;
                margin: 15px auto;
                width: 90%;
            }
            .state-card {
                min-width: 100%;
            }
        }
