* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
        body { background: #f5f5f0; color: #2d3436; line-height: 1.8; padding-bottom: 40px; }
        header { background: #0984e3; padding: 15px 0; position: sticky; top: 0; z-index: 100; }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
        .logo { color: #ffeaa7; font-size: 1.8rem; font-weight: bold; text-decoration: none; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
        .nav-links { display: flex; gap: 25px; }
        .nav-links a { color: white; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
        .nav-links a:hover { color: #ffeaa7; }
        .mobile-nav-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
        main { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
        h1 { color: #0984e3; font-size: 2.4rem; margin: 20px 0 30px; text-align: center; padding-bottom: 15px; border-bottom: 3px solid #fdcb6e; }
        h2 { color: #0984e3; font-size: 1.9rem; margin: 40px 0 20px; padding-left: 10px; border-left: 4px solid #fdcb6e; }
        h3 { color: #2d3436; font-size: 1.5rem; margin: 30px 0 15px; }
        p { margin-bottom: 20px; font-size: 1.05rem; }
        .highlight { font-weight: bold; color: #d63031; }
        .btn { display: inline-block; padding: 12px 24px; background: #fdcb6e; color: #2d3436; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 10px 10px 20px 0; transition: background 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
        .btn:hover { background: #e1b12c; }
        .image-container { margin: 30px 0; text-align: center; }
        .game-image { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
        .stats-box { background: white; border-radius: 8px; padding: 20px; margin: 30px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .stats-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
        .stats-item:last-child { border-bottom: none; }
        .review { background: #fff3cd; border-left: 4px solid #fdcb6e; padding: 15px; margin: 20px 0; border-radius: 0 5px 5px 0; }
        .reviewer { font-style: italic; color: #636e72; margin-top: 10px; }
        .strategy-tip { background: #e8f5e9; border-radius: 8px; padding: 20px; margin: 25px 0; border: 1px solid #c8e6c9; }
        .event-card { background: white; border-radius: 8px; overflow: hidden; margin: 30px 0; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
        .event-details { padding: 20px; }
        .tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
        .tag { background: #0984e3; color: white; padding: 8px 15px; border-radius: 20px; text-decoration: none; font-size: 0.9rem; transition: background 0.3s; }
        .tag:hover { background: #0652DD; }
        .game-types { margin: 40px 0 20px; }
        .game-type-link { color: #0984e3; text-decoration: none; margin-right: 15px; font-size: 1.1rem; }
        .game-type-link:hover { text-decoration: underline; }
        footer { background: #0984e3; color: white; padding: 40px 20px; margin-top: 60px; }
        .footer-container { max-width: 1200px; margin: 0 auto; }
        .footer-section { margin-bottom: 30px; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #74b9ff; margin-top: 30px; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #0984e3; padding: 20px; gap: 15px; }
            .nav-links.active { display: flex; }
            .mobile-nav-btn { display: block; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.3rem; }
            p { font-size: 1rem; }
        }
