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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #eaeaea;
    --text-secondary: #a0a0a0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.content {
    margin: 48px 0;
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-color);
}

.stealth-notice {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(234, 234, 234, 0.3);
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-bottom-color: var(--text-color);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 24px;
    }

    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }
}
