:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    /* A subtle blue accent, adjustable */
    --font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Fallback */
    min-height: 100dvh;
    /* Mobile viewport fix */
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    /* Allow vertical scrolling, prevent horizontal */
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-size: 5rem;
    /* Big letters */
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.subline {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #d1d5db;
    /* Light gray for contrast */
    max-width: 600px;
    margin: 0 auto;
}

.footer {
    padding: 2rem;
    font-size: 0.875rem;
    /* Smaller font */
    color: #6b7280;
    /* Muted gray */
    letter-spacing: 0.5px;
    animation: slideUp 1s ease-out 1s backwards;
    /* Delay animation */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        justify-content: center;
        /* Restore centering */
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 3rem;
        /* Increase size again */
        margin-bottom: 1.5rem;
    }

    .subline {
        font-size: 1.125rem;
    }

    .footer {
        padding: 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
        /* Safe area for home bar */
    }
}