/* VIDEO CONTAINER */
.video-wrap {
    position: relative;
    width: min(300px, 85vw);
    margin: 0 auto 30px auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: pointer;
}

video {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* MUTE ICON OVERLAY */
.mute-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 16px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

/* subtle floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* CTA BUTTON */
.cta {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1em;
    color: #fff;
    background: #007bff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,123,255,0.6);
}

.features {
    margin-top: 50px;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    h1 { font-size: 2em; }
}

@media (prefers-reduced-motion: reduce) {
    .video-wrap { animation: none; }
}
