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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #656773;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.logo {
    max-width: 700px;
    width: 80%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #aaaaaa;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.status {
    font-size: 0.9rem;
    color: #ffffff;
    padding: 8px 24px;
    display: inline-block;
    margin-bottom: 20px;
}

.email {
    font-size: 1rem;
}

.email a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.2s;
}

.email a:hover {
    color: #ffffff;
}

footer {
    padding: 20px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

footer a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

footer a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .logo {
        width: 90%;
        max-width: 400px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .subtitle br {
        display: none;
    }

    footer {
        gap: 16px;
    }
}
