* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 4rem 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
}

.email {
    font-size: 1.25rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.email:hover {
    color: #1d4ed8;
    background: #eff6ff;
}

@media (max-width: 640px) {
    .container {
        padding: 3rem 2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .email {
        font-size: 1rem;
    }
}