body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #1a1a2e; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #e63946; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; position: absolute; right: 20px; top: 15px; }
        h1 { color: #e63946; font-size: 32px; margin-bottom: 20px; }
        h2 { color: #45b7d1; font-size: 24px; margin-top: 30px; margin-bottom: 15px; }
        h3 { color: #ffa500; font-size: 20px; margin-top: 25px; margin-bottom: 10px; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background-color: #45b7d1; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 5px; font-weight: bold; }
        .btn:hover { background-color: #3a9db0; }
        .highlight { background-color: #333; color: #fff; padding: 5px 10px; border-radius: 3px; }
        .image-container { text-align: center; margin: 30px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #555; color: white; padding: 5px 10px; margin-right: 5px; margin-bottom: 5px; border-radius: 3px; text-decoration: none; }
        footer { background-color: #16213e; color: #ccc; text-align: center; padding: 20px 0; margin-top: 40px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; background-color: #444; color: white; padding: 5px 15px; margin-right: 10px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 26px; }
            h2 { font-size: 22px; }
            h3 { font-size: 18px; }
        }
