/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Content */
.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

/* Text content */
.text-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}



/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    color: #666666;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

/* Background animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    background: rgba(4, 157, 227, 0.15);
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 75%;
    right: 5%;
    background: rgba(26, 26, 26, 0.1);
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 85%;
    left: 15%;
    background: rgba(4, 157, 227, 0.2);
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 8%;
    right: 8%;
    background: rgba(26, 26, 26, 0.08);
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 85%;
    background: rgba(4, 157, 227, 0.12);
    animation-delay: 3s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 5%;
    left: 25%;
    background: rgba(26, 26, 26, 0.06);
    animation-delay: 5s;
}

.shape-7 {
    width: 50px;
    height: 50px;
    top: 65%;
    left: 5%;
    background: rgba(4, 157, 227, 0.18);
    animation-delay: 1.5s;
}

.shape-8 {
    width: 110px;
    height: 110px;
    top: 90%;
    right: 25%;
    background: rgba(26, 26, 26, 0.09);
    animation-delay: 6s;
}

.shape-9 {
    width: 65px;
    height: 65px;
    top: 25%;
    right: 20%;
    background: rgba(4, 157, 227, 0.14);
    animation-delay: 0.5s;
}

.shape-10 {
    width: 85px;
    height: 85px;
    top: 12%;
    left: 60%;
    background: rgba(26, 26, 26, 0.07);
    animation-delay: 4.5s;
}

.shape-11 {
    width: 55px;
    height: 55px;
    top: 70%;
    left: 75%;
    background: rgba(4, 157, 227, 0.16);
    animation-delay: 2.5s;
}

.shape-12 {
    width: 75px;
    height: 75px;
    top: 45%;
    left: 3%;
    background: rgba(26, 26, 26, 0.05);
    animation-delay: 3.5s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .logo-container {
        padding: 3rem;
    }
    

}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .logo-container {
        padding: 2rem;
    }
    

} 