/* Flow Player — YouTube embed styling */
.flow-player-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 165, 92, 0.2);
}

.flow-player-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.flow-player-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.flow-player-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 45%);
    cursor: pointer;
    transition: all 0.4s ease-out;
}

.flow-player-overlay:hover {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 45%);
}

.flow-player-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.flow-player-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-out;
    padding: 0;
}

.flow-player-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
    border-color: #fff;
}

.flow-player-label-top {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6240;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.flow-player-label-bottom {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6240;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Sound waves — animated pulse */
.flow-sound-wave {
    animation: flowSoundPulse 1.4s ease-in-out infinite;
}

.flow-wave-2 {
    animation-delay: 0.4s;
}

@keyframes flowSoundPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}
