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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0b192c;
    color: #f1f5f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    background-image: radial-gradient(circle at 50% 30%, #1e3a8a 0%, #0b192c 75%);
}

.container {
    max-width: 580px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #38bdf8;
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.message-it {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 12px;
    font-weight: 300;
}

.message-en {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 28px;
    font-weight: 300;
    font-style: italic;
}

.email-box {
    display: inline-block;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.email-box:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.email-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.email-link {
    color: #38bdf8;
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
}

footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #64748b;
}
