@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   VOID HOSTING - SHARED STYLES
   ============================================ */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glass Cards */
.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.nav-link.active {
    color: #a855f7;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee / Ticker */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.animate-ticker {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 2rem 0;
}

/* Logo Items */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 4rem;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0) brightness(1.2);
    transform: scale(1.05);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Utilities */
.ticker-hidden {
    display: none !important;
}

/* ============================================
   PAGE: Terms of Service
   ============================================ */

.tos-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: #a855f7;
}

.tos-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.tos-content p {
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.tos-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.tos-content ul li {
    color: #9ca3af;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.tos-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
}

.tos-content a {
    color: #a855f7;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.tos-content a:hover {
    color: #c084fc;
}

.last-updated {
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c084fc;
}

/* ============================================
   PAGE: Elite Void (Coming Soon)
   ============================================ */

.blur-content {
    filter: blur(12px) brightness(0.4);
    pointer-events: none;
    user-select: none;
    transition: filter 0.6s ease;
}

.blur-content:hover {
    filter: blur(14px) brightness(0.35);
}

@keyframes softPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.coming-soon-badge {
    animation: softPulse 3s ease-in-out infinite;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
