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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 300px;
    height: auto;
    opacity: 0.9;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #a0a0a0;
}

.cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    max-width: 600px;
}

.cta p {
    font-size: 1rem;
    color: #808080;
    margin-bottom: 1rem;
}

.email {
    display: inline-block;
    font-size: 1.125rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid #404040;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.email:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .cta p {
        font-size: 0.9rem;
    }
}
