@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #2d1b69 50%, #0f0f23 100%);
    position: relative;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(13, 65, 225, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(7, 200, 249, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(9, 166, 243, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.sub-title {
    color: rgb(30 52 83 / 71%);
}

.title{
    color: #cf8660;
    font-weight: 100;
}

img{
    width: 80%;
    margin: 0 auto;
}

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

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.geometric-pattern {
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(13, 65, 225, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(7, 200, 249, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(9, 166, 243, 0.3) 0%, transparent 50%);
}

.glass-effect {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 65, 225, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(13, 65, 225, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #0D41E1 0%, #0C63E7 25%, #0A85ED 50%, #09A6F3 75%, #07C8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.progress-bar {
    transition: width 0.3s ease;
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(1px);
}



@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}
