:root {
    --primary: #55b8ff;
    --primary-dark: #0e57a4;
    --secondary: #8ad2ff;
    --background: #fff;
    --background-soft: #fff7ee;
    --background-grey: #f4f6f8;
    --foreground: #1e1e1e;
    --foreground-secondary: #4a4a4a;
    --foreground-disabled: #a7a7a7;
    --accent: #3a8be0;
    --font-sans: 'Nunito', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

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

html {
    scroll-behavior: smooth;
}
