@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Fredoka:wght@300;400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Caveat:wght@400;600;700&display=swap');

:root {
  --pink:        #f472b6;
  --pink-dim:    rgba(244,114,182,0.18);
  --pink-glow:   rgba(244,114,182,0.35);
  --green:       #4ade80;
  --green-dim:   rgba(74,222,128,0.15);
  --purple:      #c084fc;
  --bg:          #0a0a0f;
  --bg2:         #12121a;
  --bg3:         #1a1a26;
  --bg4:         #22222f;
  --text:        #f0ebff;
  --muted:       #8b82a8;
  --border:      rgba(244,114,182,0.14);
  --border2:     rgba(244,114,182,0.28);
  --radius:      18px;
  --radius-sm:   10px;
  --radius-xs:   6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* GLITCH PAGE TRANSITION */
.glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  background: var(--bg);
}
.glitch-overlay.active { pointer-events: all; }

.glitch-overlay canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes glitchFadeIn  { from{opacity:0} to{opacity:1} }
@keyframes glitchFadeOut { from{opacity:1} to{opacity:0} }
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* blobs */
.blob { position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0.1; pointer-events: none; z-index: 0; animation: blobdrift 20s ease-in-out infinite alternate; }
.blob-1 { width: 600px; height: 600px; background: var(--pink); top: -200px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: var(--green); bottom: -150px; right: -100px; animation-delay: -10s; }
.blob-3 { width: 350px; height: 350px; background: var(--purple); top: 40%; right: 15%; animation-delay: -5s; opacity: 0.07; }
@keyframes blobdrift { from { transform: translate(0,0) scale(1) rotate(0deg); } to { transform: translate(40px,50px) scale(1.1) rotate(5deg); } }

/* squiggly decorative lines */
.squiggle {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Goldman', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
}

.nav-logo::after {
  content: '✦';
  position: absolute;
  top: -6px;
  right: -14px;
  font-size: 0.5rem;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); background: var(--pink-dim); }
.nav-links a.active { color: var(--pink); background: var(--pink-dim); }

.nav-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-live:hover { background: rgba(244,114,182,0.25); transform: scale(1.03); }
.live-dot { width: 7px; height: 7px; background: var(--pink); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.3; transform:scale(0.6); } }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 4px 8px; }

/* WRAPPER */
.wrapper { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* SECTIONS */
section { padding: 5rem 0; }
.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before { content: '✦'; font-size: 0.7rem; }
.section-title {
  font-family: 'Goldman', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* VINE DIVIDER */
.divider {
  width: 100%;
  height: 28px;
  position: relative;
  z-index: 1;
  overflow: visible;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider::before {
  content: '';
  display: block;
  width: 100%;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath d='M0 14 Q30 4 60 14 Q90 24 120 14 Q150 4 180 14 Q210 24 240 14 Q270 4 300 14 Q330 24 360 14 Q390 4 420 14 Q450 24 480 14 Q510 4 540 14 Q570 24 600 14 Q630 4 660 14 Q690 24 720 14 Q750 4 780 14 Q810 24 840 14 Q870 4 900 14 Q930 24 960 14 Q990 4 1020 14 Q1050 24 1080 14 Q1110 4 1140 14 Q1170 24 1200 14' stroke='%234ade80' stroke-width='1.5' fill='none' opacity='0.35'/%3E%3Ccircle cx='120' cy='14' r='2.5' fill='%234ade80' opacity='0.4'/%3E%3Ccircle cx='240' cy='14' r='2' fill='%234ade80' opacity='0.3'/%3E%3Ccircle cx='360' cy='14' r='3' fill='%234ade80' opacity='0.45'/%3E%3Ccircle cx='480' cy='14' r='2' fill='%234ade80' opacity='0.3'/%3E%3Ccircle cx='600' cy='14' r='3.5' fill='%234ade80' opacity='0.5'/%3E%3Ccircle cx='720' cy='14' r='2' fill='%234ade80' opacity='0.3'/%3E%3Ccircle cx='840' cy='14' r='3' fill='%234ade80' opacity='0.4'/%3E%3Ccircle cx='960' cy='14' r='2' fill='%234ade80' opacity='0.3'/%3E%3Ccircle cx='1080' cy='14' r='2.5' fill='%234ade80' opacity='0.4'/%3E%3Cpath d='M120 14 Q125 6 130 10 Q135 14 130 18 Q125 22 120 14' fill='%234ade80' opacity='0.25'/%3E%3Cpath d='M360 14 Q368 5 374 9 Q380 13 374 19 Q368 23 360 14' fill='%234ade80' opacity='0.2'/%3E%3Cpath d='M600 14 Q607 4 614 9 Q621 14 614 19 Q607 24 600 14' fill='%234ade80' opacity='0.28'/%3E%3Cpath d='M840 14 Q847 6 853 10 Q859 14 853 18 Q847 22 840 14' fill='%234ade80' opacity='0.2'/%3E%3Cpath d='M1080 14 Q1086 5 1092 9 Q1098 14 1092 19 Q1086 23 1080 14' fill='%234ade80' opacity='0.22'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.divider-dots { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background 0.2s; }
.btn:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.1); }
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px var(--pink-glow);
}
.btn-secondary {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), #22d3ee);
  color: #0a0a0f;
  font-weight: 800;
}

/* SOCIAL ICONS */
.social-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon:hover { color: var(--text); border-color: var(--pink); background: var(--pink-dim); transform: translateY(-4px) rotate(-3deg); }
.social-icon.twitch:hover  { border-color:#9146ff; color:#9146ff; background:rgba(145,70,255,0.12); }
.social-icon.youtube:hover { border-color:#ff0000; color:#ff0000; background:rgba(255,0,0,0.1); }
.social-icon.tiktok:hover  { border-color:#69c9d0; color:#69c9d0; background:rgba(105,201,208,0.1); }
.social-icon.discord:hover { border-color:#5865f2; color:#5865f2; background:rgba(88,101,242,0.12); }
.icon-svg { width: 20px; height: 20px; display: inline-block; vertical-align: middle; fill: currentColor; }
.icon-svg-sm { width: 16px; height: 16px; display: inline-block; vertical-align: middle; fill: currentColor; }

/* CARDS */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.card:hover { border-color: var(--border2); transform: translateY(-3px); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--purple)); opacity: 0; transition: opacity 0.2s; }
.card:hover::before { opacity: 1; }

/* POLAROIDS */
.polaroid-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; padding: 1rem 0 2rem; }
.polaroid {
  background: #fffef8;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 3px;
  padding: 12px 12px 48px;
  width: 175px;
  transform: rotate(var(--r, 0deg));
  margin-top: var(--mt, 0px);
  box-shadow: 4px 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0s;
  flex-shrink: 0;
  position: relative;
}
.polaroid:hover { transform: rotate(0deg) scale(1.08); box-shadow: 8px 14px 40px rgba(0,0,0,0.45); z-index: 10; }
.polaroid-img { width: 100%; aspect-ratio: 1/1; border-radius: 2px; margin-bottom: 10px; background-size: cover; background-position: center; }
.pi-1 { background-color: #f9c6da; background-image: repeating-linear-gradient(45deg, rgba(244,114,182,0.2) 0px, rgba(244,114,182,0.2) 2px, transparent 2px, transparent 12px); }
.pi-2 { background-color: #c6f0d8; background-image: repeating-linear-gradient(-45deg, rgba(74,222,128,0.2) 0px, rgba(74,222,128,0.2) 2px, transparent 2px, transparent 12px); }
.pi-3 { background-color: #ddd6fe; background-image: radial-gradient(circle at 30% 40%, rgba(192,132,252,0.35) 0%, transparent 60%); }
.pi-4 { background-color: #fde68a; background-image: repeating-linear-gradient(30deg, rgba(251,191,36,0.25) 0px, rgba(251,191,36,0.25) 2px, transparent 2px, transparent 10px); }
.pi-5 { background-color: #f0f0f0; background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 18px), repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 18px); display: flex; align-items: center; justify-content: center; }
.pi-5::after { content: '+'; font-size: 2.5rem; color: rgba(244,114,182,0.5); font-weight: 300; line-height: 1; }
.polaroid-caption { font-family: 'Caveat', cursive; font-size: 0.95rem; font-weight: 600; color: #333; text-align: center; line-height: 1.3; margin-bottom: 2px; }
.polaroid-author { display: block; font-size: 0.72rem; color: #999; text-align: center; font-style: italic; }

/* SCHEDULE */
.week-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.6rem; }
.day-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s;
}
.day-card.live-day {
  border-color: rgba(244,114,182,0.45);
  background: linear-gradient(160deg, rgba(244,114,182,0.07), rgba(192,132,252,0.04));
}
.day-name { font-family: 'Goldman', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.day-card.live-day .day-name { color: var(--pink); }
.day-time { font-size: 0.72rem; font-weight: 700; color: var(--green); background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); border-radius: 999px; padding: 0.15rem 0.5rem; }
.day-game { font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.day-off { font-size: 0.72rem; color: rgba(160,154,184,0.3); margin-top: auto; }
.timezone-note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }

/* COMMUNITY TABS */
.comm-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.comm-tab {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 700;
  color: var(--muted); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.comm-tab:hover { color: var(--text); }
.comm-tab.active { color: var(--pink); border-bottom-color: var(--pink); }

/* COMMUNITY DAY */
.cd-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.cd-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.cd-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; color: var(--pink); background: var(--pink-dim); border: 1px solid var(--border2); border-radius: 999px; padding: 0.3rem 0.9rem; }
.cd-date { font-size: 0.78rem; color: var(--muted); font-style: italic; }
.cd-prompt { font-family: 'Goldman', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 1rem; }
.cd-description { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 560px; }
.cd-how { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; }
.cd-how-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.cd-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.cd-step { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text); }
.cd-step-num { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FOOTER */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-logo { font-family: 'Goldman', sans-serif; font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, var(--pink), var(--purple), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; margin-bottom: 1rem; }
.footer-tagline { font-family: 'Caveat', cursive; font-size: 1rem; color: var(--muted); margin-bottom: 1.25rem; }
.footer-links { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1.25rem; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--pink); }
footer p { font-size: 0.78rem; color: rgba(139,130,168,0.5); }

/* WIGGLE DECORATION */
.wiggle { display: inline-block; animation: wiggle 2s ease-in-out infinite; }
@keyframes wiggle { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* STICKER */
.sticker {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  border: 2px solid;
}
.sticker-pink { color: var(--pink); border-color: var(--pink); background: var(--pink-dim); }
.sticker-green { color: var(--green); border-color: var(--green); background: var(--green-dim); }
.sticker-purple { color: var(--purple); border-color: var(--purple); background: rgba(192,132,252,0.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: rgba(10,10,15,0.98); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 1rem; }
  .wrapper { padding: 0 1rem; }
}
