body {
    font-family: "Inter", sans-serif;
}

.font-mono {
    font-family: "Courier New", Courier, monospace;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f8f8f5;
        padding: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out forwards;
        z-index: 49;
    }

    .dark .nav-menu.active {
        background-color: #0a0a0a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active>a {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dark .nav-menu.active>a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active>a:last-child {
        border-bottom: none;
        margin-top: 0.5rem;
        padding: 10px 24px;
        width: fit-content !important;
        /* Force it to shrink to text size */
        margin-left: auto !important;
        /* Force left margin */
        margin-right: auto !important;
        /* Force right margin */
        display: block !important;
        /* Ensure it behaves like a block to accept margins */
        text-align: center !important;
        /* Center the text inside */
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/* Hero Badge Adjustments */
.hero-badge {
    width: fit-content;
    min-width: auto;
}

@media (max-width: 380px) {
    .hero-badge-text {
        font-size: 10px !important;
        letter-spacing: 0.05em;
    }
}
