body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f2e9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #2c3e50; color: white; padding: 20px; 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: 15px; }
        nav a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; position: absolute; top: 20px; right: 20px; cursor: pointer; }
        h1 { color: #e74c3c; text-align: center; margin-bottom: 30px; }
        h2 { color: #2980b9; border-bottom: 2px solid #2980b9; padding-bottom: 5px; margin-top: 40px; }
        h3 { color: #8e44ad; margin-top: 25px; }
        .btn { display: inline-block; background-color: #e67e22; color: white; padding: 10px 20px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .btn:hover { background-color: #d35400; }
        img { max-width: 100%; height: auto; margin: 20px 0; display: block; }
        footer { background-color: #2c3e50; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .game-types { margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { background-color: #7f8c8d; color: white; padding: 5px 10px; margin: 0 5px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-nav-toggle { display: block; }
            .nav-active { display: flex; }
        }
