* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #0b1f3a,
        #163b63
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 30px;
    text-align: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ffffff;
    color: #163b63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.logo h1 {
    margin: 0;
    font-size: 32px;
}

.logo p {
    margin: 5px 0 0;
    opacity: .8;
    letter-spacing: 3px;
}

.card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.message {
    font-size: 20px;
    font-weight: 600;
}

.card p {
    line-height: 1.6;
}

.status {
    margin: 30px auto;
    padding: 12px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.status span {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
}

.contact {
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,.25);
    padding-top: 25px;
}

a {
    color: #ffffff;
    font-weight: 600;
}

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