* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
        body { background: #f0f4f8; color: #2d3436; line-height: 1.8; padding-bottom: 50px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #162447; padding: 15px 0; color: white; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; color: #ffc107; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav-links { display: flex; gap: 25px; }
        .nav-links a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: #ffc107; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 36px; color: #162447; margin: 30px 0; text-align: center; border-bottom: 3px solid #ffc107; padding-bottom: 10px; }
        h2 { font-size: 28px; color: #162447; margin: 40px 0 20px; padding-left: 10px; border-left: 4px solid #ffc107; }
        h3 { font-size: 22px; color: #2c3e50; margin: 30px 0 15px; }
        p { margin-bottom: 20px; font-size: 18px; }
        .highlight { font-weight: bold; color: #162447; }
        .btn-container { margin: 40px 0; display: flex; gap: 20px; flex-wrap: wrap; }
        .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; text-align: center;
        }
        .download-btn { background: #28a745; color: white; }
        .login-btn { background: #007bff; color: white; }
        .download-btn:hover, .login-btn:hover { transform: scale(1.05); }
        .image-container { margin: 30px 0; text-align: center; }
        img { max-width: 100%; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        .stats-box { background: white; border-radius: 10px; padding: 25px; margin: 30px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .review { background: #fff3cd; border-left: 4px solid #ffc107; padding: 20px; margin: 25px 0; border-radius: 0 8px 8px 0; }
        .reviewer { font-style: italic; color: #6c757d; margin-top: 10px; }
        .strategy-tip { background: #e3f2fd; 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.08); }
        .event-details { padding: 20px; }
        .tag-container { margin: 40px 0; display: flex; flex-wrap: wrap; gap: 15px; }
        .tag { background: #e9ecef; padding: 8px 15px; border-radius: 20px; text-decoration: none; color: #162447; font-weight: 500; transition: background 0.3s; }
        .tag:hover { background: #dee2e6; }
        .game-type-nav { margin: 30px 0; }
        .game-type-nav a { color: #2c3e50; text-decoration: none; margin-right: 20px; font-weight: 500; }
        .game-type-nav a:hover { text-decoration: underline; }
        footer { background: #162447; color: white; padding: 40px 0 20px; margin-top: 60px; }
        .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .footer-note { margin: 20px 0; font-size: 16px; }
        .copyright { margin-top: 40px; text-align: center; font-size: 14px; color: #ced4da; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #162447; padding: 20px; gap: 15px; }
            .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: 15px; }
            .download-btn, .login-btn { width: 100%; }
        }
