body {
    color: #111111;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Subtle background pattern */
.bg-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(#E30612 0.5px, transparent 0.5px), radial-gradient(#E30612 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.03;
}

/* Marquee specific styles */
.marquee-wrapper {
    display: flex;
    width: 200%;
}

.marquee-container:hover .animate-marquee {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .animate-marquee,
    .animate-bounce-slow,
    .animate-float {
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Minimalist Accordion */
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

details[open] summary ~ * {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-open {
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
