/* A few extra styles just for this temporary landing page */
body {
    overflow: hidden; /* Prevents any scrolling since it's just one screen */
}

.coming-soon-text {
    margin-top: 50rem;
    font-size: 4rem;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    /* Adds a cool, slow pulsing animation to the text */
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Forces the footer to lock directly to the bottom of the screen */
.minimal-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: transparent;
    border-top: none;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}
