* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.logo {
    width:240px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

h1 span {
    color: #00c6ff;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ccefff;
}

p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Loader Animation */
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #00c6ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

.footer {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
