* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1e293b;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }
        .logo {
            color: #f97316;
            font-size: 1.9rem;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #f1f5f9;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f97316;
            border-bottom: 2px solid #f97316;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f1f5f9;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #f97316;
            font-size: 2.8rem;
            margin: 35px 0;
            text-align: center;
            border-bottom: 4px solid #f97316;
            padding-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            color: #fb923c;
            font-size: 2.2rem;
            margin: 30px 0 18px;
            padding-left: 12px;
            border-left: 5px solid #f97316;
        }
        h3 {
            color: #fdba74;
            font-size: 1.7rem;
            margin: 25px 0 12px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎯";
            margin-right: 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: bold;
            color: #f97316;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 15px 8px;
            background-color: #f97316;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: 0.3s;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        }
        .btn:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.3);
        }
        .btn-login {
            background-color: #10b981;
        }
        .btn-login:hover {
            background-color: #059669;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
        }
        .game-image {
            max-width: 100%;
            transition: 0.5s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
            border-left: 5px solid #f97316;
        }
        .tag {
            display: inline-block;
            background-color: #334155;
            padding: 8px 15px;
            margin: 8px;
            border-radius: 25px;
            text-decoration: none;
            color: #f97316;
            font-size: 1rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #475569;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #cbd5e1;
            font-weight: 600;
            font-size: 1.05rem;
            transition: 0.3s;
        }
        .game-type:hover {
            color: #f97316;
            transform: translateX(5px);
        }
        .footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 3px solid #f97316;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 1rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        .review-box {
            background-color: #334155;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-top: 3px solid #f97316;
        }
        .reviewer {
            font-weight: bold;
            color: #fdba74;
            margin-bottom: 8px;
            display: block;
        }
        .tip-box {
            background-color: rgba(249, 115, 22, 0.1);
            border-left: 4px solid #f97316;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji-bullet {
            display: list-item;
            list-style-type: none;
            position: relative;
            padding-left: 35px;
            margin-bottom: 12px;
        }
        .emoji-bullet::before {
            content: "🔥";
            position: absolute;
            left: 0;
        }
        .state-data {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .state-card {
            background-color: #334155;
            border-radius: 8px;
            padding: 15px;
            flex: 1;
            min-width: 200px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .state-name {
            font-weight: bold;
            color: #fdba74;
            margin-bottom: 5px;
        }
        .download-count {
            color: #f1f5f9;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.9rem;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 20px 0 10px;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 90%;
            }
            .state-card {
                min-width: 100%;
            }
        }
