/* =============================================
   BONUS CARDZE — Light Theme Styles
   ============================================= */

/* ---------- Smooth Scroll ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* ---------- Selection ---------- */
::selection {
    background: rgba(180, 58, 251, 0.15);
    color: #18181b;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #fefdfb;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.18);
}

/* ---------- Background Blobs ---------- */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
    background: rgba(180, 58, 251, 0.06);
    animation: blob-float 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -15%;
    background: rgba(218, 154, 255, 0.04);
    animation: blob-float 10s ease-in-out infinite alternate-reverse;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.05); }
}

/* ---------- Floating Cards ---------- */
.floating-cards {
    position: relative;
    width: 350px;
    height: 400px;
}

.card-float {
    position: absolute;
    transition: transform 0.3s ease;
}

.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float-1 6s ease-in-out infinite;
    z-index: 3;
}

.card-2 {
    bottom: 40px;
    left: 0;
    animation: float-2 7s ease-in-out infinite;
    z-index: 2;
}

.card-3 {
    bottom: 20px;
    right: 0;
    animation: float-3 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-16px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

/* ---------- Marquee ---------- */
.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    font-weight: 600;
    font-size: 0.875rem;
    color: #71717a;
}

.marquee-dot {
    color: #d4d4d8;
    font-size: 0.875rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Navbar Scroll State (Light) ---------- */
.navbar-scrolled {
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

/* ---------- Bento Card ---------- */
.bento-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

/* ---------- FAQ ---------- */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(180, 58, 251, 0.3);
    box-shadow: 0 4px 16px rgba(180, 58, 251, 0.06);
}

.faq-btn {
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-content.show {
    max-height: 300px;
}

.faq-chevron.rotated {
    transform: rotate(180deg);
}

/* ---------- Animations ---------- */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }

/* ---------- Scroll Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.15s; }
[data-animate]:nth-child(4) { transition-delay: 0.2s; }
[data-animate]:nth-child(5) { transition-delay: 0.25s; }
[data-animate]:nth-child(6) { transition-delay: 0.3s; }

/* ---------- Language Switcher ---------- */
#lang-dropdown {
    animation: dropdown-in 0.15s ease;
}

@keyframes dropdown-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Activity Feed Card ---------- */
.feed-card {
    animation: feed-in 0.4s ease forwards;
    opacity: 0;
}

@keyframes feed-in {
    from { opacity: 0; transform: translateY(8px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .blob-1 {
        width: 300px;
        height: 300px;
    }
    .blob-2 {
        width: 250px;
        height: 250px;
    }
    .marquee-content {
        gap: 1rem;
    }
}
