/* ========================================
   INTERACTIVE VIDEO SECTION
   ======================================== */
.video-interactive-section {
    padding: var(--space-16) 0;
    position: relative;
    background: var(--color-surface);
}

.video-interactive-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
}

.video-interactive-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hotspot from interactive landing */
.hotspot {
    position: absolute;
    bottom: 44%;
    /* Adjusted from interactive landing */
    right: 13%;
    width: 130px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Remove default link styles */
}

.hotspot-inner {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
}

.hotspot-text {
    position: absolute;
    top: -30px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
}

.hotspot:hover .hotspot-text {
    opacity: 1;
    transform: translateY(-5px);
}

.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    /* Matching button shape approximately */
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    /* Using brand color */
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}