* { 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: #8b0000; padding: 15px 0; color: #ffffff; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; color: #ffd700; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); letter-spacing: 1px; }
        .nav-links { display: flex; gap: 25px; }
        .nav-links a { color: #ffffff; text-decoration: none; font-weight: 500; transition: all 0.3s; padding: 8px 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: 30px; cursor: pointer; }
        h1 { font-size: 36px; color: #8b0000; margin: 35px 0 30px; text-align: center; padding-bottom: 15px; border-bottom: 3px solid #ffd700; }
        h2 { font-size: 28px; color: #8b0000; margin: 45px 0 25px; padding-left: 12px; border-left: 4px solid #ffd700; }
        h3 { font-size: 24px; color: #cd5c5c; margin: 35px 0 20px; }
        p { margin-bottom: 20px; font-size: 18px; max-width: 100%; }
        .highlight { font-weight: bold; color: #8b0000; }
        .btn-container { margin: 40px 0; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
        .download-btn, .login-btn { 
            padding: 15px 30px; font-size: 18px; font-weight: bold; text-decoration: none; 
            border-radius: 8px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn { background: #228b22; color: white; }
        .login-btn { background: #1e90ff; color: white; }
        .download-btn:hover, .login-btn:hover { transform: translateY(-4px); box-shadow: 0 6px 10px rgba(0,0,0,0.2); }
        .image-container { margin: 30px 0; text-align: center; }
        img { max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
        .stats-box { background: #ffffff; border-radius: 10px; padding: 25px; margin: 30px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .review { background: #fff8e1; border-left: 4px solid #ffd700; padding: 20px; margin: 25px 0; border-radius: 0 8px 8px 0; }
        .reviewer { font-style: italic; color: #696969; margin-top: 10px; font-size: 16px; }
        .strategy-tip { background: #e8f5e9; border-radius: 8px; padding: 20px; margin: 20px 0; }
        .event-card { background: white; border-radius: 10px; overflow: hidden; margin: 30px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.09); }
        .event-details { padding: 20px; }
        .tag-container { margin: 40px 0; display: flex; flex-wrap: wrap; gap: 15px; }
        .tag { background: #f0f0f0; padding: 8px 16px; border-radius: 25px; text-decoration: none; color: #8b0000; font-weight: 500; transition: all 0.3s; font-size: 16px; }
        .tag:hover { background: #e0e0e0; transform: translateY(-3px); }
        .game-type-nav { margin: 30px 0; padding: 18px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        .game-type-nav a { color: #8b0000; text-decoration: none; margin-right: 20px; font-weight: 500; font-size: 17px; }
        .game-type-nav a:hover { text-decoration: underline; color: #cd5c5c; }
        footer { background: #8b0000; color: #ffffff; padding: 40px 0 25px; margin-top: 60px; }
        .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .footer-note { margin: 20px 0; font-size: 16px; line-height: 1.8; }
        .copyright { margin-top: 40px; text-align: center; font-size: 14px; color: #f0e68c; padding-top: 20px; border-top: 1px solid #a52a2a; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; right: 0; background: #8b0000; padding: 25px; gap: 15px; z-index: 100; }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 30px; }
            h2 { font-size: 26px; }
            h3 { font-size: 22px; }
            p { font-size: 17px; }
            .btn-container { flex-direction: column; gap: 15px; }
            .download-btn, .login-btn { width: 100%; padding: 14px 0; }
            .game-type-nav a { display: inline-block; margin-bottom: 10px; margin-right: 15px; }
        }
