* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif; }
        body { background: #f8f5f0; color: #2d2a26; line-height: 1.8; padding-bottom: 60px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #0f3460; padding: 12px 0; color: #ffffff; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 26px; font-weight: bold; color: #ffd700; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: #ffffff; text-decoration: none; font-weight: 500; transition: color 0.3s; padding: 5px 0; }
        .nav-links a:hover { color: #ffd700; border-bottom: 2px solid #ffd700; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }
        h1 { font-size: 34px; color: #0f3460; margin: 30px 0 25px; text-align: center; padding-bottom: 12px; border-bottom: 3px solid #ffd700; }
        h2 { font-size: 26px; color: #0f3460; margin: 40px 0 20px; padding-left: 10px; border-left: 4px solid #ffd700; }
        h3 { font-size: 22px; color: #c0392b; margin: 30px 0 15px; }
        p { margin-bottom: 18px; font-size: 17px; max-width: 100%; }
        .highlight { font-weight: bold; color: #0f3460; }
        .btn-container { margin: 35px 0; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
        .download-btn, .login-btn { 
            padding: 14px 28px; font-size: 17px; font-weight: bold; text-decoration: none; 
            border-radius: 6px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-align: center;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        .download-btn { background: #27ae60; color: white; }
        .login-btn { background: #3498db; color: white; }
        .download-btn:hover, .login-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 8px rgba(0,0,0,0.2); }
        .image-container { margin: 25px 0; text-align: center; }
        img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
        .stats-box { background: #ffffff; border-radius: 8px; padding: 22px; margin: 25px 0; box-shadow: 0 3px 10px rgba(0,0,0,0.07); }
        .review { background: #fff8e1; border-left: 4px solid #ffd700; padding: 18px; margin: 22px 0; border-radius: 0 6px 6px 0; }
        .reviewer { font-style: italic; color: #7f8c8d; margin-top: 8px; font-size: 15px; }
        .strategy-tip { background: #e8f4f8; border-radius: 6px; padding: 18px; margin: 18px 0; }
        .event-card { background: white; border-radius: 8px; overflow: hidden; margin: 28px 0; box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
        .event-details { padding: 18px; }
        .tag-container { margin: 35px 0; display: flex; flex-wrap: wrap; gap: 12px; }
        .tag { background: #f1f1f1; padding: 7px 14px; border-radius: 20px; text-decoration: none; color: #0f3460; font-weight: 500; transition: all 0.3s; font-size: 15px; }
        .tag:hover { background: #e0e0e0; transform: translateY(-2px); }
        .game-type-nav { margin: 25px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        .game-type-nav a { color: #0f3460; text-decoration: none; margin-right: 18px; font-weight: 500; font-size: 16px; }
        .game-type-nav a:hover { text-decoration: underline; color: #c0392b; }
        footer { background: #0f3460; color: #ffffff; padding: 35px 0 20px; margin-top: 50px; }
        .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .footer-note { margin: 18px 0; font-size: 15px; line-height: 1.7; }
        .copyright { margin-top: 35px; text-align: center; font-size: 13px; color: #dfe6e9; padding-top: 15px; border-top: 1px solid #1a497a; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: #0f3460; padding: 20px; gap: 12px; z-index: 100; }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
            h3 { font-size: 20px; }
            p { font-size: 16px; }
            .btn-container { flex-direction: column; gap: 12px; }
            .download-btn, .login-btn { width: 100%; padding: 12px 0; }
            .game-type-nav a { display: inline-block; margin-bottom: 8px; }
        }
