/* TrendStream 2026 — Violet Creator Economy */ :root { --bg: #060410; --bg-2: #0d0920; --bg-card: #100d22; --border: rgba(139,92,246,0.15); --border-hover: rgba(139,92,246,0.35); --accent: #8b5cf6; --accent-2: #ec4899; --accent-3: #22d3ee; --text: #f5f0ff; --text-2: #9d8ec4; --text-3: #4a3f6b; --green: #10b981; --font-h: 'Space Grotesk', system-ui, sans-serif; --font-b: 'Inter', system-ui, sans-serif; --font-m: 'JetBrains Mono', monospace; --radius: 16px; --radius-sm: 10px; } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { background: var(--bg); color: var(--text); font-family: var(--font-b); line-height: 1.6; overflow-x: hidden; min-height: 100vh; } body::before { content: ''; position: fixed; top: -30%; left: -10%; width: 70vw; height: 70vw; background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 65%); pointer-events: none; z-index: 0; } body::after { content: ''; position: fixed; bottom: -20%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 65%); pointer-events: none; z-index: 0; } /* NAV */ .nav { position: sticky; top: 0; z-index: 1000; height: 72px; display: flex; align-items: center; background: rgba(6,4,16,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); width: 100%; display: flex; align-items: center; justify-content: space-between; } .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.3px; } .nav-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; } .nav-links { display: flex; align-items: center; gap: 2rem; } .nav-links a { text-decoration: none; color: var(--text-2); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; } .nav-links a:hover { color: var(--text); } .nav-cta { color: var(--accent) !important; padding: 8px 18px; border: 1px solid rgba(139,92,246,0.3); border-radius: 100px; transition: all 0.2s !important; } .nav-cta:hover { background: rgba(139,92,246,0.1) !important; border-color: var(--accent) !important; } .container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); } /* HERO */ .hero { position: relative; padding: 5rem 0 4rem; z-index: 1; } .hero-orbs { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 20% 20%, rgba(139,92,246,0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 70%, rgba(236,72,153,0.07) 0%, transparent 60%); pointer-events: none; } .hero-inner { max-width: 720px; margin-bottom: 3.5rem; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); border-radius: 100px; padding: 6px 14px; font-size: 0.75rem; font-weight: 600; color: var(--accent); margin-bottom: 1.5rem; font-family: var(--font-m); } .badge-dot { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; box-shadow: 0 0 8px var(--accent-2); animation: blink 1.5s ease-in-out infinite; } @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} } h1 { font-family: var(--font-h); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.5rem; } .gradient-text { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .hero-sub { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem; } .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; } .btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; font-size: 0.9rem; padding: 12px 28px; border-radius: 100px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; font-family: var(--font-h); } .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); } .btn-ghost { background: transparent; color: var(--text-2); font-weight: 500; font-size: 0.9rem; padding: 12px 24px; border-radius: 100px; border: 1px solid var(--border); text-decoration: none; transition: all 0.2s; } .btn-ghost:hover { border-color: var(--border-hover); color: var(--text); } /* STREAM CARDS */ .stream-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; } .stream-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: border-color 0.2s, transform 0.2s; } .stream-card:hover { border-color: var(--border-hover); transform: translateY(-2px); } .sc-active { border-color: rgba(139,92,246,0.3); } .sc-hot { border-color: rgba(236,72,153,0.25); } .sc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; } .sc-live { display: flex; align-items: center; gap: 5px; font-family: var(--font-m); font-size: 0.65rem; font-weight: 700; color: #ef4444; letter-spacing: 0.5px; } .sc-live span { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: blink 1s ease-in-out infinite; } .sc-scout { color: var(--accent) !important; } .sc-scout span { background: var(--accent) !important; } .sc-viewers { font-family: var(--font-m); font-size: 0.8rem; color: var(--text); font-weight: 600; } .sc-name { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; } .sc-game { font-size: 0.78rem; color: var(--text-3); margin-bottom: 0.75rem; } .sc-trend { font-size: 0.75rem; color: var(--green); font-family: var(--font-m); } .trend-up { color: var(--green); } /* STATS STRIP */ .stats-strip { background: rgba(139,92,246,0.05); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; position: relative; z-index: 1; } .stats-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; } .strip-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; } .ss-num { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: var(--accent); } .ss-label { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; } .strip-divider { width: 1px; height: 40px; background: var(--border); } /* SECTIONS */ .section { padding: 6rem 0; position: relative; z-index: 1; } .section-header { text-align: center; margin-bottom: 4rem; } .section-tag { display: inline-block; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: var(--accent); font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 1rem; font-family: var(--font-m); } .section-header h2 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 1rem; } .section-header p { color: var(--text-2); font-size: 1.05rem; max-width: 520px; margin: 0 auto; } /* INTEL BENTO */ .intel-bento { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 1rem; } .intel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s; } .intel-card:hover { border-color: var(--border-hover); transform: translateY(-3px); } .ic-large { grid-column: 1; grid-row: span 2; } .ic-tag { font-family: var(--font-m); font-size: 0.68rem; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; } .intel-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.3px; } .intel-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; } .ic-metric { font-family: var(--font-h); font-size: 3rem; font-weight: 700; color: var(--accent-2); margin-top: 1.5rem; letter-spacing: -2px; } .ic-metric span { font-size: 1.5rem; color: var(--text-3); } .ic-visual { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); } .wave-bar { flex: 1; background: rgba(139,92,246,0.25); border-radius: 3px 3px 0 0; transition: height 0.5s ease; animation: wavePulse 3s ease-in-out infinite; } .wave-bar:nth-child(2) { animation-delay: 0.3s; } .wave-bar:nth-child(3) { animation-delay: 0.6s; } .wave-bar:nth-child(4) { animation-delay: 0.9s; } .wave-bar:nth-child(5) { animation-delay: 1.2s; } .wave-bar:nth-child(6) { animation-delay: 1.5s; } .wave-highlight { background: linear-gradient(to top, var(--accent), var(--accent-2)); animation: none; } @keyframes wavePulse { 0%,100%{opacity:0.4} 50%{opacity:0.8} } /* HOW STEPS */ .how-steps { display: flex; align-items: flex-start; gap: 0; justify-content: center; } .how-step { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s; } .how-step:hover { border-color: var(--border-hover); } .how-num { font-family: var(--font-m); font-size: 0.7rem; color: var(--accent); letter-spacing: 1px; margin-bottom: 1rem; } .how-step h4 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; } .how-step p { color: var(--text-2); font-size: 0.85rem; line-height: 1.7; } .how-connector { color: var(--text-3); font-size: 1.2rem; padding: 3rem 0.5rem 0; flex-shrink: 0; } /* FEED TABLE */ .feed-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; } .feed-header { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr; padding: 1rem 1.5rem; background: rgba(139,92,246,0.05); border-bottom: 1px solid var(--border); font-family: var(--font-m); font-size: 0.68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; } .feed-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(139,92,246,0.06); font-size: 0.875rem; transition: background 0.2s; align-items: center; } .feed-row:hover { background: rgba(139,92,246,0.04); } .feed-row:last-child { border-bottom: none; } .fr-name { font-family: var(--font-m); font-size: 0.82rem; color: var(--text); } .fr-cat { color: var(--text-2); font-size: 0.82rem; } .fr-viewers { font-family: var(--font-h); font-weight: 600; color: var(--text); } .fr-vel { font-family: var(--font-m); font-size: 0.8rem; color: var(--green); } .fr-status { font-family: var(--font-m); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; display: inline-block; } .status-sent { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.2); } .status-flagged { background: rgba(139,92,246,0.1); color: var(--accent); border: 1px solid rgba(139,92,246,0.2); } .status-monitor { background: rgba(100,116,139,0.1); color: #64748b; border: 1px solid rgba(100,116,139,0.2); } /* FOOTER */ .footer { border-top: 1px solid var(--border); padding: 3rem 0; position: relative; z-index: 1; } .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; } .footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-h); font-weight: 700; font-size: 1rem; color: var(--text); } .footer-logo { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; opacity: 0.7; } .footer-links { display: flex; gap: 1.5rem; } .footer-links a { color: var(--text-3); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; } .footer-links a:hover { color: var(--text-2); } .footer-copy { font-size: 0.78rem; color: var(--text-3); } /* RESPONSIVE */ @media (max-width: 1024px) { .stream-cards { grid-template-columns: repeat(2, 1fr); } .intel-bento { grid-template-columns: 1fr; } .ic-large { grid-row: span 1; } .how-steps { flex-direction: column; } .how-connector { display: none; } .feed-header, .feed-row { grid-template-columns: 2fr 1.5fr 1fr 1.5fr; } .feed-header span:nth-child(3), .feed-row .fr-viewers { display: none; } } @media (max-width: 768px) { .stream-cards { grid-template-columns: 1fr 1fr; } .stats-inner { gap: 2rem; } .footer-inner { flex-direction: column; text-align: center; } .footer-links { justify-content: center; } } @media (max-width: 480px) { .nav-links a:not(.nav-cta) { display: none; } .stream-cards { grid-template-columns: 1fr; } .feed-header, .feed-row { grid-template-columns: 2fr 1fr 1.5fr; } .feed-header span:nth-child(2), .feed-row .fr-cat { display: none; } }