body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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; position: sticky; top: 0; z-index: 100; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav ul { display: flex; list-style: none; margin: 0; padding: 0; }
        nav ul li { margin-left: 20px; }
        nav ul li a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #ff6b35; margin-top: 30px; }
        h2 { color: #e74c3c; border-bottom: 2px solid #e74c3c; padding-bottom: 5px; margin-top: 25px; }
        h3 { color: #c0392b; margin-top: 20px; }
        .btn { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; margin: 10px 0; text-decoration: none; border-radius: 5px; font-weight: bold; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .tags { margin: 20px 0; }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; }
            nav { display: none; margin-top: 15px; }
            nav.active { display: block; }
            nav ul { flex-direction: column; }
            nav ul li { margin: 10px 0; }
            .mobile-menu-btn { display: block; position: absolute; top: 20px; right: 20px; }
        }
