* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #0f4c81;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.4rem;
            margin: 20px 0 30px;
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            border-left: 5px solid #ff4500;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        h2 {
            color: #0f4c81;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4682b4;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 2px;
            background-color: #ff4500;
        }
        h3 {
            color: #0f4c81;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #4682b4;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #ff4500;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #0f4c81;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #0a3357;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #228b22;
        }
        .download-btn:hover {
            background-color: #1a6d1a;
        }
        .login-btn {
            background-color: #ff4500;
        }
        .login-btn:hover {
            background-color: #cc3700;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid #228b22;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .review-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-top: 3px solid #4682b4;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            display: block;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #e6f2ff;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #0f4c81;
            font-weight: 500;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #cce0ff;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 0 10px 10px 0;
        }
        .game-type a {
            color: #0f4c81;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border: 1px solid #4682b4;
            border-radius: 4px;
            transition: 0.3s;
        }
        .game-type a:hover {
            background-color: #0f4c81;
            color: white;
        }
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-left: 3px solid #ffd700;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .emoji-highlight {
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 12px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
