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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f1f3d 0%, #091428 100%);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

.content {
    background: rgba(41, 67, 122, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #e0e6ff;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #c9d1e9;
}

.email-invite {
    margin-top: 2rem;
    font-weight: 400;
}

a {
    color: #8ebbff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(142, 187, 255, 0.6);
    transition: all 0.3s ease;
}

a:hover {
    color: #b8d3ff;
    border-bottom: 1px solid #b8d3ff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }
}