:root {
    --bg-color: #000000;
    --text-primary: #ededed;
    --text-secondary: #8a8f98;
    --accent-glow: rgba(94, 111, 219, 0.15);
    /* Linear-ish purple/blue glow */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    -webkit-font-smoothing: antialiased;
    position: relative;
}

#stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vh;
    height: 120vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

main {
    z-index: 2;
    position: relative;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

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

.logo {
    font-size: 1.1rem;
    /* Slightly larger than standard text */
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 2.5rem;
    /* The main visual hook */
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 600px;
}

.contact {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    text-decoration: none;
}

.contact:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-label {
    color: var(--text-secondary);
}

.contact-email {
    color: var(--text-primary);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .subtitle {
        font-size: 1.8rem;
    }
}