body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 15px; right: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 2.5em; margin-bottom: 0.5em; color: #ff6b35; }
        h2 { font-size: 1.8em; margin-top: 1.5em; color: #4a4a4a; border-bottom: 2px solid #ff6b35; padding-bottom: 5px; }
        h3 { font-size: 1.4em; margin-top: 1.2em; color: #666; }
        .btn { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .btn:hover { background-color: #e05520; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #ff6b35; text-decoration: none; margin: 0 5px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.5em; }
        }
