/* Das Raster für die 12 Kategorien */
        .genre-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        /* Die einzelnen Musikkarten */
        .genre-card {
            background: #0d88c4;
            border: 2px solid #0d88c4;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s;
        }

        .genre-card:hover {
            /*transform: translateY(-3px);*/
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* Quadratischer Bild-Container (1:1) */
        .img-container {
            width: 100%;
            padding-bottom: 100%;
            position: relative;
            background: #1e293b;
        }

        .genre-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Inhalt unter dem Bild */
        .card-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
            gap: 12px;
        }

        .card-content h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
            color:#fff;
        }

        /* Der einfache Abspiel-Knopf */
        .listen-btn {
            background: #1a2333;
            color: #f1f5f9;
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 10px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: background 0.2s;
        }

        .listen-btn:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Zustand beim Abspielen */
        .listen-btn.playing {
            background: #ef4444;
            border-color: #ef4444;
            color: white;
        }

        audio {
            display: none;
        }