/* === Video Section - Billboard Style === */

.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
}

.video-billboard {
    position: relative;
    width: 100%;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.billboard-frame {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}


/* Billboard Header */

.billboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.billboard-title {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #2fbcf3, #1e9fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Billboard Control Dots */

.billboard-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.control-dot:hover {
    transform: scale(1.2);
}

.red {
    background-color: #ff5f57;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #28c840;
}


/* Video Container */

.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}


/* Video Frame */

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    overflow: hidden;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Custom Play Button */

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(47, 188, 243, 0.2);
    border: 2px solid rgba(47, 188, 243, 0.8);
    backdrop-filter: blur(12px);
    width: clamp(50px, 12vw, 90px);
    height: clamp(50px, 12vw, 90px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(47, 188, 243, 0.3);
}

.custom-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: clamp(12px, 3vw, 24px) solid white;
    border-top: clamp(6px, 2vw, 14px) solid transparent;
    border-bottom: clamp(6px, 2vw, 14px) solid transparent;
    margin-left: clamp(2px, 1vw, 6px);
}

.custom-play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(47, 188, 243, 0.35);
    border-color: rgba(47, 188, 243, 1);
    box-shadow: 0 10px 35px rgba(47, 188, 243, 0.5);
}


/* Video Label Outside */

.video-label-outside {
    position: relative;
    margin-top: 0.75rem;
    text-align: left;
    color: #ccc;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}


/* === Mobile Adjustments === */

@media screen and (max-width: 768px) {
    .video-section {
        padding: 3rem 0.5rem;
    }
    .billboard-frame {
        padding: 1rem;
    }
    .billboard-title {
        font-size: clamp(0.8rem, 3vw, 1.2rem);
    }
    .control-dot {
        width: clamp(6px, 3vw, 10px);
        height: clamp(6px, 3vw, 10px);
    }
    .custom-play-button {
        width: clamp(40px, 15vw, 70px);
        height: clamp(40px, 15vw, 70px);
    }
    .video-label-outside {
        text-align: center;
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }
}