/* SKY EDGE — Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-15px) rotate(5deg)
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(65, 105, 225, 0.3)
    }

    50% {
        box-shadow: 0 0 40px rgba(65, 105, 225, 0.6)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(65, 105, 225, 0.2)
    }

    50% {
        border-color: rgba(65, 105, 225, 0.5)
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(65, 105, 225, 0.3)
    }

    50% {
        text-shadow: 0 0 30px rgba(65, 105, 225, 0.6)
    }
}

@keyframes orbitX {
    0% {
        transform: rotateX(0deg)
    }

    100% {
        transform: rotateX(360deg)
    }
}

@keyframes orbitY {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

.animate-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

.animate-shimmer {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.animate-spin {
    animation: spin 20s linear infinite;
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-border-glow {
    animation: borderGlow 3s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Floating decorative shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.08), transparent 70%);
    top: 10%;
    right: 5%;
    animation-duration: 7s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.06), transparent 70%);
    top: 40%;
    left: 60%;
    animation-duration: 8s;
    animation-delay: 1s;
}