/* Music Widgets Styling */
.music-widgets {
    margin-top: 2rem;
}

/* Quote Styling */
.quote-container {
    padding: 2rem;
    position: relative;
}

.quote-mark {
    margin-bottom: 1rem;
}

.quote-mark i {
    opacity: 0.7;
}

blockquote {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
}

.music-widget-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.music-widget-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.music-embed-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-height: 450px;
    height: 450px;
    position: relative;
}

.music-embed-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 450px;
    border: none;
    border-radius: 12px;
}

.featured-track {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.featured-track:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Music Platforms Links */
.music-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.platform-link:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.platform-link.spotify:hover {
    background: #1DB954;
    border-color: #1DB954;
}

.platform-link.apple-music:hover {
    background: #FA243C;
    border-color: #FA243C;
}

.platform-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.platform-link i {
    font-size: 1.25rem;
}

.platform-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.platform-link.disabled:hover {
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .music-widget-container {
        padding: 1.5rem;
    }

    .music-embed-wrapper {
        min-height: 380px;
        height: 380px;
    }

    .music-embed-wrapper iframe {
        min-height: 380px;
    }

    .featured-track {
        padding: 1.5rem;
    }

    .music-platforms {
        gap: 1rem;
    }

    .platform-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Responsive iframe */
@media (max-width: 480px) {
    .music-embed-wrapper {
        min-height: 320px;
        height: 320px;
    }

    .music-embed-wrapper iframe {
        min-height: 320px;
    }

    .music-widget-container {
        padding: 1rem;
    }
}
