﻿html, body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;

}

header, footer {
    padding: 1rem 1.5rem;
    background-color: #2a2a2a;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(101, 101, 101);
}

.branding {
    display: flex;
    align-items: center;
}

.subtitle {
    font-size: 0.75rem;
    color: var(--muted, #999);
    margin-top: 0.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.branding a {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--foreground);
}


.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;

    text-decoration: none;
}

    .nav-links a {
        color: #c293ff;
        text-decoration: none;
        font-size: 0.9rem;
    }

        .nav-links a:hover {
            color: #e2cdfc;
        }

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid rgb(101, 101, 101);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .footer-links a {
        color: #c293ff;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: var(--foreground);
        }

@media (max-width: 600px) {

    .nav-links {
        width: 100%;
        margin-top: 0.75rem;
        justify-content: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
}

.theme-icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--foreground);
    transition: transform 0.3s ease;
}

    .theme-icon-btn:hover {
        transform: scale(1.15);
    }

.beta-tag {
    bottom: 1em;
    left: 1em;
    color: var(--foreground);
    letter-spacing: 1px;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    text-wrap: nowrap;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.9;
    }
}

.tagline{
    max-width: 560px;
}