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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #4facfe;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #b0bec5;
}

.coming-soon-container {
    font-size: 2rem;
    font-weight: bold;
    height: 40px;
    margin-bottom: 40px;
    color: #00f2fe;
}

footer {
    font-size: 0.9rem;
    color: #78909c;
    margin-top: 20px;
}
