* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f9fb, #e8f1f5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c3e50;
}

.container {
    max-width: 500px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.logo {
    max-width: 260px;
    margin-bottom: 25px;
}

h1 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: #1b6f8a;
}

.subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1b6f8a, #2ecce0);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.coming-soon {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
}

.footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #999;
}
