body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

.neon-bg {
    background-color: #CCFF00;
}

.neon-text {
    color: #CCFF00;
}

.neon-border {
    border-color: #CCFF00;
}

.btn-neon {
    background-color: #CCFF00;
    color: #000;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-neon:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-neon:disabled {
    opacity: 0.6;
    transform: none;
    cursor: wait;
}

.card-dark {
    background-color: #0f0f0f;
    border: 1px solid #1f1f1f;
}

.marquee {
    white-space: nowrap;
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.media-frame {
    background:
        radial-gradient(circle at 20% 20%, rgba(204, 255, 0, 0.16), transparent 32%),
        radial-gradient(circle at 80% 70%, rgba(204, 255, 0, 0.08), transparent 28%),
        linear-gradient(160deg, #141414, #050505);
}

.form-status {
    min-height: 1.25rem;
    font-size: 0.875rem;
}

.form-status.success {
    color: #CCFF00;
}

.form-status.error {
    color: #f87171;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem 1.5rem;
        background: rgba(0, 0, 0, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 2.5rem 0 0.75rem;
}

.prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #CCFF00;
    margin: 1.75rem 0 0.5rem;
}

.prose p,
.prose li {
    color: #d4d4d8;
    line-height: 1.75;
}

.prose ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.75rem 0 1rem;
}

.prose li + li {
    margin-top: 0.35rem;
}

.prose hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}
