@layer base {
    body {
        background-color: #FFFBFC;
        color: #1d1d1f;
    }
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Typography effects */
.hero-text {
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-weight: 900;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

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

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

.ticker-animate {
    animation: ticker 30s linear infinite;
}

.selection-pink::selection {
    background-color: #E91E63;
    color: white;
}

/* Transition classes for scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.delay-200 {
    transition-delay: 200ms;
}
.delay-300 {
    transition-delay: 300ms;
}
.delay-400 {
    transition-delay: 400ms;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFFBFC;
}
::-webkit-scrollbar-thumb {
    background: #E91E63;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C2185B;
}
