/* ── Home Premium Frame ──────────────────────────── */
.home-premium-frame {
    padding: 72px 0;
    background: var(--bg);
}

.home-premium-frame__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 46px 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, .004));
    border: 1px solid rgba(214, 170, 77, .08);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-clip: padding-box;
}

.home-premium-frame .premium-section {
    padding: 0;
    margin: 0;
    background: transparent;
}

.home-premium-frame .container.section-card.premium-card {
    padding: 38px 30px !important;
    background: rgba(255, 255, 255, .006) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 204px !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    transition: all var(--transition) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.home-premium-frame .premium-section:nth-last-child(-n+2) .container.section-card.premium-card {
    border-bottom: none !important;
}

.home-premium-frame .premium-section:not(:nth-last-child(-n+2)) .container.section-card.premium-card {
    border-bottom: 1px solid rgba(214, 170, 77, .08) !important;
}

.home-premium-frame .container.section-card.premium-card:hover {
    background: rgba(214, 170, 77, .08) !important;
    box-shadow: inset 0 0 0 1px rgba(214, 170, 77, .08) !important;
}

.home-premium-frame .soundcloud-embed-section .soundcloud-embed-card.premium-card {
    padding: 38px 30px !important;
    background: rgba(255, 255, 255, .006) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 204px !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    transition: all var(--transition) !important;
}

.home-premium-frame .soundcloud-embed-section .soundcloud-embed-card.premium-card:hover {
    background: rgba(214, 170, 77, .06) !important;
}

.home-premium-frame .soundcloud-header {
    margin: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-premium-frame .section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .11em;
    margin: 0;
    padding-bottom: 0;
}

.home-premium-frame .section-title::after {
    display: none;
}

.home-premium-frame .section-title::before {
    display: block;
    margin: 0 0 8px;
    font-family: var(--font-mono);
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .2em;
    color: rgba(214, 170, 77, .58);
}

.home-premium-frame #streams .section-title::before {
    content: "01";
}

.home-premium-frame #recently-played .section-title::before {
    content: "02";
}

.home-premium-frame #social .section-title::before {
    content: "03";
}

.home-premium-frame #soundcloud-embed .section-title::before {
    content: "04";
}

.premium-card__summary {
    max-width: 25ch;
    margin: 0 auto;
    color: rgba(234, 234, 234, .58);
    font-size: .76rem;
    line-height: 1.55;
    letter-spacing: .015em;
    text-wrap: balance;
}

.home-premium-frame .section-open-btn {
    margin-top: 4px;
    padding: 10px 18px;
    font-size: 0.75rem;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(214, 170, 77, .28);
    border-radius: 4px;
    color: var(--gold);
    transition: all var(--transition);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Listen Anywhere - Copy Buttons Improvements */
.streams-overlay-card .copy-button {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(214, 170, 77, .34) !important;
}

.streams-overlay-card .copy-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(214, 170, 77, .16) !important;
    border-color: rgba(214, 170, 77, .52) !important;
}

.streams-overlay-card .copy-button:active {
    transform: translateY(0) !important;
}

/* Copy Feedback Animation */
.copy-button.copied {
    animation: copyPulse 0.6s ease !important;
}

@keyframes copyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.home-premium-frame .section-open-btn:hover {
    background: rgba(214, 170, 77, .08);
    border-color: rgba(214, 170, 77, .46);
}

.home-premium-frame .section-open-btn span {
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .home-premium-frame__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-premium-frame .premium-card {
        border-right: 1px solid rgba(214, 170, 77, .08);
        border-bottom: 1px solid rgba(214, 170, 77, .08);
    }

    .home-premium-frame .premium-card:nth-child(2n) {
        border-right: none;
    }

    .home-premium-frame .premium-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .home-premium-frame__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 32px 24px;
    }

    .home-premium-frame .premium-card {
        padding: 28px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(214, 170, 77, .08);
    }

    .home-premium-frame .premium-card:last-child {
        border-bottom: none;
    }

    .home-premium-frame .section-title {
        font-size: 0.9rem;
    }

    .premium-card__summary {
        max-width: 30ch;
    }
}

@media (max-width: 480px) {
    .home-premium-frame__inner {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .home-premium-frame .container.section-card.premium-card {
        height: auto !important;
        min-height: 132px;
        padding: 24px 16px !important;
    }

    .home-premium-frame .section-title {
        font-size: .84rem;
        letter-spacing: .08em;
    }

    .premium-card__summary {
        font-size: .72rem;
    }
}
