
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card {
    background: linear-gradient(135deg, rgba(20,20,40,0.6), rgba(40,40,80,0.6));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.tagline {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.headline {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subline {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.socials a {
    margin: 0 10px;
    display: inline-block;
    width: 28px;
    height: 28px;
}

.socials img {
    width: 100%;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
}

.socials img:hover {
    opacity: 1;
}
