* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .header {
            background-color: #e11d48;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fbbf24;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
        }
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 15px;
        }
        h1 {
            color: #fbbf24;
            font-size: 2.8rem;
            margin: 20px 0 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #e11d48;
            line-height: 1.3;
        }
        h2 {
            color: #fbbf24;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #e11d48;
        }
        h3 {
            color: #e2e8f0;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🔥";
            margin-right: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #38bdf8;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            margin: 20px 10px 20px 0;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #38bdf8;
            color: #0f172a;
            box-shadow: 0 4px 0 #0ea5e9;
        }
        .login-btn {
            background-color: #fbbf24;
            color: #0f172a;
            box-shadow: 0 4px 0 #f59e0b;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            border: 3px solid #fbbf24;
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-top: 5px solid #e11d48;
        }
        .stats-box h3 {
            color: #fbbf24;
            margin-top: 0;
        }
        .stats-box p {
            margin: 12px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #38bdf8;
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .review-box {
            background-color: #0284c7;
            border-left: 5px solid #fbbf24;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review-box::before {
            content: '"';
            font-size: 5rem;
            color: rgba(255, 191, 36, 0.1);
            position: absolute;
            top: -15px;
            left: 10px;
            font-family: 'Georgia', serif;
        }
        .reviewer {
            font-style: italic;
            color: #e0f2fe;
            margin-top: 12px;
            font-weight: 500;
            font-size: 1rem;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
        }
        .tips-list li::before {
            content: "•";
            color: #38bdf8;
            font-size: 1.5rem;
            position: absolute;
            left: -20px;
            top: -5px;
        }
        .footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 5px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #e2e8f0;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #fbbf24;
            transform: translateX(3px);
        }
        .recommendation {
            margin: 40px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #e11d48;
                padding: 20px;
                box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            }
            .nav-links li {
                margin: 15px 0;
                border-bottom: 1px solid rgba(255,255,255,0.2);
                padding-bottom: 10px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                padding-bottom: 10px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 15px 0;
                padding: 12px;
            }
            .stats-box, .review-box {
                padding: 15px;
            }
            .tips-list {
                margin-left: 25px;
            }
            .image-container {
                margin: 20px 0;
            }
        }
