
        .genre-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }

        .genre-card {
            width: 300px;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            background-color: #343a40;
            color: white;
            padding: 15px;
            text-align: center;
            margin-bottom: 30px;
        }

        .genre-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .genre-card a {
            color: #ffffff;
            text-decoration: none;
        }

        .genre-card a:hover {
            color: #007bff;
        }

        .genre-title {
            font-weight: bold;
            margin-top: 10px;
            font-size: 18px;
        }

        .genre-description {
            font-size: 14px;
            margin-top: 10px;
            text-align: justify;
        }

        .genre-card p {
            margin: 0;
        }