/* ========================================
   SMOKE RELEASE OVERLAY - Modern & Chic
   ======================================== */

/* Main overlay container */
#smoke-release-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

#smoke-release-overlay .smoke-overlay-content {
    margin-top: -10vh;
}

#smoke-release-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Backdrop using the album artwork */
.smoke-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../epk/assets/music/Videri_Smoke_Cover_Art.jpg');
    background-size: 300%;
    background-position: center;
    z-index: 1;
}

/* Glass effect overlay */
.smoke-overlay-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content container */
.smoke-overlay-content {
    position: relative;
    z-index: 3;
}

@keyframes smokeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close button */
.smoke-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    opacity: 0.7;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.smoke-close-btn svg {
    width: 36px;
    height: 36px;
}

.smoke-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

/* Main card - invisible container for grouping/positioning */
.smoke-release-card {
    padding: 3rem 2.5rem;
    text-align: center;
}

/* Release date */
.smoke-release-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

/* Release title */
.smoke-release-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Artwork container */
.smoke-artwork-container {
    margin: 0 auto 2rem;
    max-width: 400px;
    position: relative;
}

.smoke-artwork {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.smoke-artwork:hover {
    transform: scale(1.02);
}

/* Player controls */
.smoke-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.smoke-play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    backdrop-filter: blur(10px);
}

.smoke-play-button svg {
    width: 48px;
    height: 48px;
    display: block;
}

#smoke-play-icon {
    transform: translateX(2px);
}

.smoke-play-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.smoke-play-button:active {
    transform: scale(0.95);
}

.smoke-track-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* CTA Buttons */
.smoke-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.smoke-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
    width: 100%;
}

.smoke-btn-primary {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.smoke-btn-primary:hover {
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.smoke-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.smoke-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .smoke-release-card {
        padding: 2rem 1.5rem;
    }

    .smoke-release-title {
        font-size: 1.75rem;
    }

    .smoke-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }

    .smoke-close-btn svg {
        width: 27px;
        height: 27px;
    }

    .smoke-artwork-container {
        max-width: 300px;
    }

    .smoke-play-button {
        width: 56px;
        height: 56px;
    }

    .smoke-play-button svg {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .smoke-release-card {
        padding: 1.5rem 1.25rem;
    }

    .smoke-release-title {
        font-size: 1.5rem;
    }

    .smoke-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }

    .smoke-close-btn {
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .smoke-close-btn svg {
        width: 24px;
        height: 24px;
    }
}
