/*
 * Huteco — Video Section
 */

.huteco-video-section {
    --vs-bg:          #ffffff;
    --vs-label-color: #27b3e9;
    --vs-label-bg:    rgba(39,179,233,0.08);
    --vs-label-bdr:   rgba(39,179,233,0.2);
    --vs-play-bg:     #27b3e9;
    --vs-play-hover:  #1a95c8;
    --vs-radius:      16px;
    --vs-transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

.huteco-video-section {
    background: var(--vs-bg);
    padding: var(--huteco-space-16, 4rem) 0;
}

.huteco-vs__inner {
    max-width: var(--huteco-container, 1200px);
    margin: 0 auto;
    padding: 0 var(--huteco-container-px, 1.5rem);
}

/* ── Label ──────────────────────────────────────────────────────────────── */
.huteco-vs__label-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.huteco-vs__label {
    font-family: var(--huteco-font, sans-serif);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--vs-label-color);
    background: var(--vs-label-bg);
    border: 1.5px solid var(--vs-label-bdr);
    padding: 6px 20px;
    border-radius: 6px;
}

/* ── Player ─────────────────────────────────────────────────────────────── */
.huteco-vs__player {
    position: relative;
    width: 100%;
    border-radius: var(--vs-radius);
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    cursor: pointer;
}

.huteco-vs__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--vs-transition), transform 0.6s ease;
    display: block;
}

.huteco-vs__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
}

.huteco-vs__player:hover .huteco-vs__thumb {
    transform: scale(1.02);
}

/* ── Play button ────────────────────────────────────────────────────────── */
.huteco-vs__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
}

.huteco-vs__play-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--vs-play-bg);
    box-shadow: 0 0 0 0 rgba(39,179,233,0.4);
    animation: huteco-vs-ring 2s ease-in-out infinite;
    transition: background var(--vs-transition), transform var(--vs-transition);
}

.huteco-vs__play-icon {
    position: relative;
    z-index: 1;
    color: #fff;
    margin-left: 4px;
    transition: transform var(--vs-transition);
}

.huteco-vs__play:hover .huteco-vs__play-ring {
    background: var(--vs-play-hover);
    transform: scale(1.08);
}

.huteco-vs__play:hover .huteco-vs__play-icon {
    transform: scale(1.1);
}

@keyframes huteco-vs-ring {
    0%   { box-shadow: 0 0 0 0 rgba(39,179,233,0.45); }
    70%  { box-shadow: 0 0 0 20px rgba(39,179,233,0); }
    100% { box-shadow: 0 0 0 0 rgba(39,179,233,0); }
}

/* ── Iframe wrap ────────────────────────────────────────────────────────── */
.huteco-vs__iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.huteco-vs__iframe-wrap[hidden] { display: none; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .huteco-vs__play-ring {
        width: 60px;
        height: 60px;
    }
}
