/* ================================================================
   itstworules — Cyber-Neon Onepager
   ================================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111119;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c2a;
  --neon-cyan: #00f0ff;
  --electric-purple: #b026ff;
  --neon-pink: #ff2d95;
  --ice-white: #e8eaed;
  --text-muted: #8b8b9e;
  --text-dim: #55556a;
  --live-green: #00ff6a;
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.35);
  --glow-purple: 0 0 20px rgba(176, 38, 255, 0.35);
  --glow-cyan-strong: 0 0 40px rgba(0, 240, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.15);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oswald', 'Inter', sans-serif;
  --nav-height: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1100px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* GSAP handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--ice-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric-purple);
}

/* ── Noise Overlay ──────────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ── Particle Canvas ────────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Custom Cursor ──────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  /* Safari doesn't always inherit cursor: none — force on all elements */
  *,
  *::before,
  *::after {
    cursor: none !important;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.3s;
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: var(--electric-purple);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.is-scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 1001;
}

.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(0, 240, 255, 0.3);
}

.nav__links {
  /* Desktop: fixed strip aligned to the right side of the nav bar */
  position: fixed;
  top: 0;
  right: clamp(1rem, 4vw, 2.5rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--ice-white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__burger {
    display: flex;
  }

  .nav__links {
    /* Reset desktop strip, become full-screen overlay */
    position: fixed;
    inset: 0;
    right: 0;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    /* Fully opaque — no backdrop-filter to avoid nested stacking context issues */
    background: #0a0a0f;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    /* Above nav (1000) so burger (z-index 1001 in nav) stays on top */
    z-index: 999;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.3rem;
    color: var(--ice-white);
  }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero__logo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 0.5rem;
}

.hero__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 240, 255, 0.3);
  position: relative;
  z-index: 1;
}

.hero__logo-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--ice-white) 0%, var(--neon-cyan) 50%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Live Indicator */
.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition), border-color var(--transition);
}

.live-indicator__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.live-indicator.is-live {
  background: rgba(0, 255, 106, 0.06);
  border-color: rgba(0, 255, 106, 0.2);
}

.live-indicator.is-live .live-indicator__dot {
  background: var(--live-green);
  box-shadow: 0 0 8px rgba(0, 255, 106, 0.6);
  animation: live-pulse 1.5s ease-in-out infinite;
}

.live-indicator.is-live .live-indicator__text {
  color: var(--live-green);
}

.live-indicator.is-offline .live-indicator__dot {
  background: var(--text-dim);
}

.live-indicator.is-offline .live-indicator__text {
  color: var(--text-muted);
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

/* Social Buttons */
.hero__socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity var(--transition);
}

.social-btn--twitch::before {
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.12), rgba(145, 70, 255, 0.04));
}
.social-btn--tiktok::before {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(255, 45, 149, 0.08));
}
.social-btn--instagram::before {
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.12), rgba(255, 175, 55, 0.08));
}

.social-btn:hover::before {
  opacity: 1;
}

.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-btn--twitch:hover {
  border-color: rgba(145, 70, 255, 0.4);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.2);
}
.social-btn--tiktok:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}
.social-btn--instagram:hover {
  border-color: rgba(255, 45, 149, 0.4);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.2);
}

.social-btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.social-btn span {
  position: relative;
  z-index: 1;
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Shared Section Styles ──────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section__title-accent {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── About ───────────────────────────────────────────────────── */
.about {
  text-align: center;
}

.about__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ice-white);
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
}

.about__quote::before {
  content: '"';
  position: absolute;
  top: -0.4em;
  left: -0.15em;
  font-size: 4em;
  font-family: var(--font-heading);
  color: var(--neon-cyan);
  opacity: 0.15;
  line-height: 1;
}

.about__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.about__text strong {
  color: var(--neon-cyan);
  font-weight: 600;
}

.about__tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  transition: all var(--transition);
}

.tag:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan);
}

/* ── Stream Section ──────────────────────────────────────────── */
.stream__embed-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stream__embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.stream__offline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(17, 17, 25, 0.95) 100%);
}

.stream__offline-icon {
  color: var(--text-dim);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.stream__offline-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.glitch::before {
  animation: glitch-1 3s infinite linear alternate-reverse;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 2s infinite linear alternate-reverse;
  color: var(--electric-purple);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 95% { clip-path: inset(0 0 0 0); transform: translate(0); }
  96% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  97% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -1px); }
  98% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 2px); }
  99% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitch-2 {
  0%, 93% { clip-path: inset(0 0 0 0); transform: translate(0); }
  94% { clip-path: inset(40% 0 30% 0); transform: translate(2px, -2px); }
  95% { clip-path: inset(10% 0 60% 0); transform: translate(-3px, 1px); }
  97% { clip-path: inset(70% 0 5% 0); transform: translate(1px, 2px); }
  98% { clip-path: inset(30% 0 40% 0); transform: translate(-2px, -1px); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

.stream__offline-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 340px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
  color: var(--bg-primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.25), 0 4px 12px rgba(176, 38, 255, 0.2);
}

/* ── TikTok Section ──────────────────────────────────────────── */
.tiktok__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  min-height: 200px;
}

.tiktok__loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-dim);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(0, 240, 255, 0.15);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.tiktok__card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
  position: relative;
}

.tiktok__card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.08);
}

.tiktok__card-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.tiktok__card-info {
  padding: 1rem;
}

.tiktok__card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.tiktok__card-author {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.tiktok__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tiktok__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-dim);
}

.tiktok__see-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.tiktok__see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.tiktok__see-more:hover {
  color: var(--ice-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__inquiries {
  text-align: center;
}

.footer__inquiries p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__email {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition);
}

.footer__email:hover {
  opacity: 0.75;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__socials a:hover {
  color: var(--neon-cyan);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── GSAP Animation Initial States ──────────────────────────── */
.hero__logo-wrap,
.hero__title,
.hero__tagline,
.live-indicator,
.hero__scroll-hint {
  opacity: 0;
}

.social-btn {
  opacity: 0;
}

.about__quote,
.about__text,
.about__tags {
  opacity: 0;
}

.stream .section__title,
.stream__embed-wrap {
  opacity: 0;
}

.tiktok .section__title {
  opacity: 0;
}

.footer .section__title,
.footer__content,
.footer__bottom {
  opacity: 0;
}

/* ── Responsive Tweaks ──────────────────────────────────────── */
@media (max-width: 640px) {
  .hero__logo-wrap {
    width: 120px;
    height: 120px;
  }

  .tiktok__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }

  .footer__content {
    flex-direction: column;
    gap: 2rem;
  }

  .social-btn span {
    display: none;
  }

  .social-btn {
    padding: 0.65rem;
  }
}
