/* =============================================
   JAK SŁUCHAĆ - podstrona
   ============================================= */

.listen-section {
    background: var(--bg-dark);
    padding: 0 0 100px;
}

/* Nagłówek sekcji wewnątrz strony */
.listen-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   KARTY APLIKACJI
   ============================================= */

.listen-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .listen-apps-grid {
        grid-template-columns: 1fr;
    }
}

.listen-app-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listen-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.listen-app-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.listen-app-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.listen-app-logo--icon svg {
    width: 64px;
    height: 64px;
    border-radius: 14px;
}

.listen-app-info {
    flex: 1;
}

.listen-app-info h3 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}

.listen-app-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Etykieta "tylko Android" przy Replaio */
.listen-app-badge {
    display: inline-block;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Przyciski sklepów */
.listen-app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-store.android {
    background: rgba(52, 199, 89, 0.12);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.25);
}

.btn-store.android:hover {
    background: #34c759;
    color: #fff;
    border-color: #34c759;
}

.btn-store.ios {
    background: rgba(10, 132, 255, 0.12);
    color: #0a84ff;
    border: 1px solid rgba(10, 132, 255, 0.25);
}

.btn-store.ios:hover {
    background: #0a84ff;
    color: #fff;
    border-color: #0a84ff;
}

/* =============================================
   ODTWARZACZ + STREAM (dolna sekcja)
   ============================================= */

.listen-extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .listen-extras-grid {
        grid-template-columns: 1fr;
    }
}

.listen-extra-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.listen-extra-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255, 68, 0, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.listen-extra-card h3 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.listen-extra-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Przycisk "Słuchaj teraz" */
.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-listen:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* URL streamu + przycisk kopiuj */
.listen-stream-url {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 8px 8px 8px 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.listen-stream-url code {
    color: var(--text-white);
    font-size: 13px;
    word-break: break-all;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--primary-dark);
}
