/* ============================================================
   SUGARY78 — Apple-Style Design System
   Dark theme · Scroll animations · Glassmorphism · Mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Palette */
  --black:       #020202;
  --bg:          #050505;
  --surface:     #0c0c0c;
  --surface-2:   #121212;
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(255,255,255,0.2);

  /* Accent */
  --accent:      #2997ff;   /* Apple blue */
  --accent-glow: rgba(41,151,255,0.35);
  --accent-2:    #5e5ce6;   /* purple */
  --discord:     #5865f2;
  --youtube:     #ff0000;
  --twitch:      #9146ff;

  /* Text */
  --text-1:  #f5f5f7;
  --text-2:  #a1a1a6;
  --text-3:  #6e6e73;

  /* Radius */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  /* Transitions */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1); /* Smoother Apple-style easing */
  --spring:cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --t-fast: 0.25s;
  --t-mid:  0.4s;
  --t-slow: 0.8s;

  /* Nav */
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background-color: transparent; 
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none !important; /* Hide Windows cursor */
}

/* Ensure no element shows the default cursor on desktop */
@media (min-width: 901px) {
  *, *::before, *::after, a, button, input, select, textarea {
    cursor: none !important;
  }
}

/* ── Canvas Background ───────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: var(--bg);
}


img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 7vw, 6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--text-1); text-shadow: 0 0 10px rgba(41, 151, 255, 0.3); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; color: var(--text-1); text-shadow: 0 0 8px rgba(41, 151, 255, 0.2); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; letter-spacing: -0.015em; color: var(--text-1); text-shadow: 0 0 5px rgba(41, 151, 255, 0.2); }
p  { color: var(--text-2); font-size: clamp(0.95rem, 1.5vw, 1.15rem); line-height: 1.75; }
a, span, i { transition: all var(--t-fast) var(--ease); }

/* ── Navigation — Apple-style thin translucent bar ─────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.88);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-1);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}

.logo:hover .logo-img {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-links li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text-1);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown > a i {
  font-size: 0.65rem;
  transition: transform var(--t-fast) var(--ease);
}

.dropdown:hover > a i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(28,28,30,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), visibility var(--t-mid);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 901;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: all var(--t-fast) var(--ease);
  border-radius: 0;
}

.dropdown-menu li a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.dropdown-menu li a.active { color: var(--accent); }
.dropdown-menu li a::after { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--t-fast);
}

.menu-toggle:hover { background: rgba(255,255,255,0.06); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
}

/* ── Hero — Full-screen cinematic ────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 5rem) clamp(1rem, 5vw, 3rem) 6rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Radial ambient glows - Removed as video bg replaces them */

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-video, .hero-video-overlay {
  display: none;
}

.profile-img {
  width: clamp(110px, 18vw, 160px);
  height: clamp(110px, 18vw, 160px);
  border-radius: var(--r-xl);
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(41,151,255,0.3), 0 20px 60px rgba(0,0,0,0.7);
  transition: transform var(--t-mid) var(--spring), box-shadow var(--t-mid) var(--ease);
}

.profile-img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 0 0 2px var(--accent), 0 30px 80px rgba(0,0,0,0.8);
}

.hero-eyebrow {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 { margin-bottom: 0; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 0.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 1.1rem;
  transition: all var(--t-mid) var(--spring);
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px var(--accent-glow), 0 0 15px var(--accent);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-glow);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: #0084ff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px var(--accent-glow), 0 0 20px rgba(41, 151, 255, 0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--text-1);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-discord  { background: var(--discord); color: #fff; }
.btn-discord:hover  { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,0.4); }

.btn-youtube  { background: var(--youtube); color: #fff; }
.btn-youtube:hover  { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.35); }

.btn-twitch   { background: var(--twitch); color: #fff; }
.btn-twitch:hover   { background: #7c3aed; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(145,70,255,0.4); }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem clamp(1rem, 5vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.bio-text, .collab-text {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-2);
}

.bg-light {
  background: transparent;
}

/* ── Grid & Cards ───────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

/* Glass card */
.card {
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(41, 151, 255, 0.4);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 20px var(--accent-glow);
}

/* Card icon */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(41,151,255,0.1);
  border: 1px solid rgba(41,151,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all var(--t-mid) var(--ease);
  flex-shrink: 0;
}

.card:hover .card-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; flex-shrink: 0; }
.card p  { font-size: 0.95rem; color: var(--text-2); flex-grow: 1; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1rem;
}

.gallery-card {
  padding: 0;
  height: 240px;
  overflow: hidden;
  border-radius: var(--r-md);
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.gallery-card::before { display: none; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-card:hover { transform: none; }
.gallery-card:hover img { transform: scale(1.07); }

/* ── Social Cards (Collaborazioni) ─────────────────────────── */
.social-grid { grid-template-columns: repeat(auto-fit, minmax(min(320px,100%), 1fr)); }

.social-card { padding: 0; overflow: hidden; }

.social-img-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.social-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.social-card:hover .social-img { transform: scale(1.06); }

.social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7));
}

.social-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.social-content h3 { margin-bottom: 0; }

.discord-icon-large {
  font-size: 2.5rem;
  color: var(--discord);
}

.text-youtube { color: var(--youtube) !important; }

/* ── Discord / CTA Banner ───────────────────────────────────── */
.discord-section {
  background: linear-gradient(135deg, rgba(88,101,242,0.2), rgba(88,101,242,0.05));
  border: 1px solid rgba(88,101,242,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.discord-section h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

/* ── Network Hero (non-home pages with hero) ────────────────── */
#network-hero.hero { min-height: 60vh; padding-top: calc(var(--nav-h) + 3rem); background: transparent; }

/* ── Page section (non-hero pages) ──────────────────────────── */
.page-section { padding-top: calc(var(--nav-h) + 2rem); }

/* ── Network / About dotted bg ───────────────────────────────── */
#about.page-section,
#network.page-section {
  background-color: transparent;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1rem,5vw,2.5rem) 2rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.footer-container h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.footer-container p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-socials {
  margin-top: 0;
}

.footer-socials a {
  color: var(--text-3);
  font-size: 1.1rem;
  transition: color var(--t-fast);
}

.footer-socials a:hover { color: var(--text-1); }

/* ── Scroll-reveal animations ───────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children cards */
.animate-in .card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), box-shadow var(--t-mid), border-color var(--t-mid);
}

.animate-in.visible .card {
  opacity: 1;
  transform: translateY(0);
}

.animate-in .card:nth-child(1) { transition-delay: 0.1s; }
.animate-in .card:nth-child(2) { transition-delay: 0.2s; }
.animate-in .card:nth-child(3) { transition-delay: 0.3s; }
.animate-in .card:nth-child(4) { transition-delay: 0.4s; }
.animate-in .card:nth-child(5) { transition-delay: 0.5s; }
.animate-in .card:nth-child(6) { transition-delay: 0.6s; }

/* Hero entrance */
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .hero-content > * {
  animation: hero-fade 0.9s var(--ease) both;
}

.hero .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
.hero .hero-content > *:nth-child(3) { animation-delay: 0.34s; }
.hero .hero-content > *:nth-child(4) { animation-delay: 0.46s; }
.hero .hero-content > *:nth-child(5) { animation-delay: 0.56s; }
.hero .hero-content > *:nth-child(6) { animation-delay: 0.64s; }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Burger menu visible */
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transform: translateY(-110%);
    transition: transform var(--t-mid) var(--ease);
    z-index: 899;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.active { transform: translateY(0); }

  .nav-links li { width: 100%; }

  .nav-links li a {
    display: block;
    padding: 0.85rem clamp(1rem, 5vw, 2rem);
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    min-width: auto;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu li a {
    padding-left: clamp(2rem, 8vw, 4rem);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .dropdown > a i { display: none; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero { padding-top: calc(var(--nav-h) + 3rem); }

  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; gap: 1rem; }
  .hero-buttons .btn { width: 100%; max-width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .gallery-card { height: 180px; }

  .container { padding: 3.5rem 1rem; }

  .discord-section { padding: 2rem 1.25rem; }

  .grid { grid-template-columns: 1fr; }

  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { height: 210px; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Legal pages — list styling ─────────────────────────────── */
.card ul {
  margin-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.card ul li {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
  list-style: disc;
}

.card ul li::marker { color: var(--accent); }

.card strong { color: var(--text-1); font-weight: 600; }

/* Legal layout: single column stack */
.legal-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Focus ring (accessibility) ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Custom scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* ── Selection color ────────────────────────────────────────── */
::selection {
  background: rgba(41,151,255,0.28);
  color: var(--text-1);
}





.cursor-glow.hover {
  width: 80px;
  height: 80px;
  background: rgba(41, 151, 255, 0.1);
  border-color: rgba(41, 151, 255, 0.6);
}

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  user-select: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.cursor-glow {
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(41, 151, 255, 0.4);
  background: rgba(41, 151, 255, 0.08);
  box-shadow: 0 0 20px rgba(41, 151, 255, 0.2);
}


@media (max-width: 900px) {
  .cursor-dot, .cursor-glow { display: none; }
  #click-to-reveal { cursor: default; }
  .reveal-pill { height: 100px; }
}
