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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #1a2f4f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    background: #ffffff;
    border-radius: 15px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.logo {
    max-width: 50px;
    margin-bottom: 10px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tagline {
    font-size: 24px;
    font-weight: 400;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.intro p {
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0081cc, #3b3b3b) !important;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgb(46 74 90 / 62%);
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #0a192f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #1a2f4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
}

.social-message {
    font-size: 16px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .intro {
        font-size: 16px;
    }

    .coming-soon-badge {
        font-size: 22px;
        padding: 15px 35px;
    }
}
