body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #d4af37; text-align: center; }
        h2 { color: #8b4513; border-bottom: 2px solid #f0c040; }
        h3 { color: #a0522d; }
        .logo { font-size: 2em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav { background: #fff; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: space-around; padding: 10px 0; }
        .mobile-toggle { display: none; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .mobile-toggle { display: block; text-align: center; padding: 10px; background: #f0c040; }
            .nav-links.active { display: flex; }
        }
        .game-btn { display: inline-block; padding: 10px 20px; margin: 10px 0; background: #8b4513; color: white; text-decoration: none; border-radius: 5px; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { background: #f0c040; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 20px; }
        footer { margin-top: 30px; padding: 20px; background: #333; color: white; text-align: center; }
