body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.bg-hero-gradient {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.faq-answer {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

:target {
    scroll-margin-top: 100px;
}
/* Reels Video Container */
.reels-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reels-border-glow {
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(135deg, #7c3aed, #f97316, #7c3aed, #f97316);
    background-size: 300% 300%;
    animation: reelsBorderPulse 2s ease-in-out infinite;
}

@keyframes reelsBorderPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 24px 4px rgba(124,58,237,0.55), 0 0 40px 8px rgba(249,115,22,0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 40px 10px rgba(249,115,22,0.65), 0 0 60px 16px rgba(124,58,237,0.45);
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 24px 4px rgba(124,58,237,0.55), 0 0 40px 8px rgba(249,115,22,0.3);
    }
}

.reels-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.reels-placeholder {
    width: 240px;
    height: 427px;
    position: relative;
    background: #111;
}

.reels-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 768px) {
    .reels-placeholder {
        width: 280px;
        height: 498px;
    }
}
