:root {
    --primary: #ffde59;
    --dark: #1a1a1a;
    --light-bg: #f1eee8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

body {
    font-family: 'Work Sans', sans-serif;
    overflow-x: hidden;
    color: #333;
    background-color: var(--light-bg);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease-out;
}

.rotate-in {
    transform: translateY(0) !important; 
    opacity: 1 !important;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

 .gradient-text {
    background: linear-gradient(90deg, #ffde59b2 0%,  #ffde59 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes scrollBounce {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

@keyframes screenFadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}