* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0a2540, #1e3a5f);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 600px;
}

.logo h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.logo span {
    color: #4CAF50;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.coming {
    margin-top: 20px;
    font-weight: bold;
    color: #4CAF50;
}

/* Loader animation */
.loader {
    margin: 30px auto;
    border: 5px solid #ffffff30;
    border-top: 5px solid #4CAF50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}