/* ========================================
   LAPTOP MOCKUP & VIDEO STYLES
   ======================================== */
.laptop-wrapper {
    perspective: 1500px;
    margin-top: 2rem;
}

.laptop-screen {
    background: #000;
    border-radius: 12px 12px 0 0;
    border: 12px solid #1e293b;
    border-bottom: none;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 0 0 2px #334155;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.laptop-base {
    height: 16px;
    background: #334155;
    border-radius: 0 0 16px 16px;
    position: relative;
    width: 120%;
    left: -10%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 4px;
    background: #475569;
    border-radius: 0 0 4px 4px;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.laptop-wrapper:hover .video-overlay {
    background: rgba(15, 23, 42, 0.2);
}

.laptop-wrapper:hover .laptop-screen {
    transform: translateY(-5px);
}

/* Play Button Pulse */
.pulse-animation {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}