:root {
    --bg-color: #121312;       /* Updated background color */
    --text-color: #f8fafc;
    --heading-color: #94a3b8;  /* New primary heading color */
}

body, html {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
}

.content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--heading-color); /* Applied to the primary heading */
}

p {
    font-size: 1.25rem;
    color: #94a3b8;
}

.splash-logo {
    max-width: 800px; /* Adjust this value to change the image size */
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .splash-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
}
