/* Extracted from index.css and App.css */

:root {
    --background: 210 50% 98%;
    --foreground: 230 60% 20%;

    --card: 0 0% 100%;
    --card-foreground: 230 60% 20%;

    --popover: 0 0% 100%;
    --popover-foreground: 230 60% 20%;

    --primary: 189 91% 46%;
    --primary-foreground: 0 0% 100%;

    --secondary: 235 41% 21%;
    --secondary-foreground: 0 0% 100%;

    --muted: 210 30% 95%;
    --muted-foreground: 230 20% 45%;

    --accent: 189 91% 46%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;

    --border: 210 30% 88%;
    --input: 210 30% 88%;
    --ring: 189 91% 46%;

    --radius: 0.75rem;

    /* Custom gradients */
    --gradient-primary: linear-gradient(135deg, hsl(189 91% 46%) 0%, hsl(235 41% 21%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(235 41% 21%) 0%, hsl(235 41% 30%) 50%, hsl(189 91% 36%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(210 50% 98%) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, hsl(235 41% 21% / 0.95) 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px hsl(189 91% 46% / 0.3);
    --shadow-card: 0 10px 40px -10px hsl(235 41% 21% / 0.15);
    --shadow-card-hover: 0 20px 60px -15px hsl(189 91% 46% / 0.25);
}

/* Animations from index.css */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scale-in 0.5s ease-out forwards;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px hsl(189 91% 46% / 0.4);
    }

    50% {
        box-shadow: 0 0 40px hsl(189 91% 46% / 0.6);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility classes mapping */
.gradient-primary {
    background: var(--gradient-primary);
}

.gradient-hero {
    background: var(--gradient-hero);
}

.gradient-card {
    background: var(--gradient-card);
}

.text-gradient {
    background: linear-gradient(135deg, hsl(189 91% 46%) 0%, hsl(189 91% 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-card-hover {
    box-shadow: var(--shadow-card-hover);
}

.glass {
    background-color: hsl(var(--card) / 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.5);
}

.glass-dark {
    background-color: hsl(var(--secondary) / 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--primary) / 0.2);
}

/* Base styles adjustments */
html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}