/* =========================================
   BrittneySnowPaw — Arctic Wolf Theme
   Pink & Purple Palette, Cozy & Frosty
   ========================================= */

:root {
  --pink: #f472b6;
  --pink-light: #fce7f3;
  --pink-dark: #db2777;
  --purple: #a855f7;
  --purple-light: #ede9fe;
  --purple-dark: #7c3aed;
  --lavender: #c4b5fd;
  --lilac: #e9d5ff;
  --frost: #f0f4ff;
  --white: #ffffff;
  --snow: #f8f0ff;
  --text: #3b1f5e;
  --text-soft: #7c5fa0;
  --text-muted: #a78bca;
  --card-bg: rgba(255, 255, 255, 0.82);
  --border: rgba(196, 181, 253, 0.35);
  --shadow: rgba(168, 85, 247, 0.12);
  --grad-main: linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 50%, #a78bca 100%);
  --grad-hero: linear-gradient(160deg, #fdf4ff 0%, #ede9fe 40%, #fce7f3 100%);
  --grad-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(237,233,254,0.7) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--snow);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Background gradient wash ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(244,114,182,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168,85,247,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #fdf4ff 0%, #f5f0ff 100%);
  z-index: -2;
  pointer-events: none;
}

/* ─────────────────────────────
   SNOWFLAKES
───────────────────────────── */
.snow-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -30px;
  color: var(--lavender);
  font-size: clamp(0.6rem, 1.2vw, 1.1rem);
  opacity: 0;
  animation: snowfall linear infinite;
  user-select: none;
}
.snowflake:nth-child(1)  { left: 4%;   animation-duration: 9s;  animation-delay: 0s;    font-size: 0.7rem; }
.snowflake:nth-child(2)  { left: 10%;  animation-duration: 12s; animation-delay: 2s;    font-size: 1rem; }
.snowflake:nth-child(3)  { left: 18%;  animation-duration: 8s;  animation-delay: 1s;    font-size: 0.6rem; }
.snowflake:nth-child(4)  { left: 25%;  animation-duration: 14s; animation-delay: 4s;    font-size: 0.9rem; }
.snowflake:nth-child(5)  { left: 33%;  animation-duration: 10s; animation-delay: 0.5s;  }
.snowflake:nth-child(6)  { left: 40%;  animation-duration: 11s; animation-delay: 3s;    font-size: 0.75rem; }
.snowflake:nth-child(7)  { left: 47%;  animation-duration: 9s;  animation-delay: 1.5s;  font-size: 1.1rem; }
.snowflake:nth-child(8)  { left: 54%;  animation-duration: 13s; animation-delay: 0s;    }
.snowflake:nth-child(9)  { left: 60%;  animation-duration: 8s;  animation-delay: 2.5s;  font-size: 0.65rem; }
.snowflake:nth-child(10) { left: 67%;  animation-duration: 12s; animation-delay: 1s;    font-size: 0.9rem; }
.snowflake:nth-child(11) { left: 73%;  animation-duration: 10s; animation-delay: 3.5s;  }
.snowflake:nth-child(12) { left: 79%;  animation-duration: 9s;  animation-delay: 0.8s;  font-size: 0.8rem; }
.snowflake:nth-child(13) { left: 85%;  animation-duration: 14s; animation-delay: 2s;    font-size: 1rem; }
.snowflake:nth-child(14) { left: 91%;  animation-duration: 8s;  animation-delay: 4.5s;  font-size: 0.7rem; }
.snowflake:nth-child(15) { left: 96%;  animation-duration: 11s; animation-delay: 1.2s;  }
.snowflake:nth-child(16) { left: 7%;   animation-duration: 16s; animation-delay: 5s;    font-size: 0.6rem; }
.snowflake:nth-child(17) { left: 50%;  animation-duration: 7s;  animation-delay: 6s;    font-size: 0.55rem; }
.snowflake:nth-child(18) { left: 88%;  animation-duration: 15s; animation-delay: 2.8s;  font-size: 0.85rem; }

@keyframes snowfall {
  0%   { transform: translateY(-30px) rotate(0deg); opacity: 0.8; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ─────────────────────────────
   NAVBAR
───────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
  background: rgba(253, 244, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--purple-dark);
  transition: transform 0.2s;
}
.nav-logo:hover { transform: scale(1.04); }
.logo-paw { font-size: 1.4rem; }
.logo-text { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--lilac);
  color: var(--purple-dark);
}
.nav-twitch {
  background: var(--grad-main) !important;
  color: white !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(244,114,182,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-twitch:hover {
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(244,114,182,0.4) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--purple-dark);
  cursor: pointer;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem 6rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f9a8d4, transparent);
  top: -100px; left: -150px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c4b5fd, transparent);
  bottom: -80px; right: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e9d5ff, transparent);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation: floatShape 7s ease-in-out infinite 2s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

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

.hero-avatar-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(168,85,247,0.3), 0 0 0 6px rgba(244,114,182,0.2);
  z-index: 2;
  position: relative;
}
.avatar-wolf { font-size: 4rem; }
.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 {
  width: 150px; height: 150px;
  border-color: rgba(244,114,182,0.4);
  animation-delay: 0s;
}
.ring-2 {
  width: 170px; height: 170px;
  border-color: rgba(168,85,247,0.25);
  animation-delay: 0.5s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-tagline {
  font-size: 1.2rem;
  color: var(--purple-dark);
  font-weight: 600;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero-sona {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  animation: fadeSlideUp 0.8s 0.25s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.8s 0.35s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad-main);
  color: white;
  box-shadow: 0 4px 18px rgba(244,114,182,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,114,182,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--purple-dark);
  border: 2px solid var(--lavender);
  box-shadow: 0 2px 10px var(--shadow);
}
.btn-secondary:hover {
  background: var(--lilac);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ─────────────────────────────
   SECTIONS
───────────────────────────── */
.section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--purple-dark);
}
.section-title span { margin-left: 0.4rem; }

/* ─────────────────────────────
   ABOUT BLURB
───────────────────────────── */
.blurb-card {
  background: var(--grad-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 8px 40px var(--shadow);
  backdrop-filter: blur(8px);
}
.blurb-emoji { font-size: 3rem; margin-bottom: 1rem; }
.blurb-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
}

/* ─────────────────────────────
   PANELS GRID
───────────────────────────── */
.panels-section { background: transparent; }
.panels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.panel-card {
  background: var(--grad-card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform 0.25s, box-shadow 0.25s;
}
.panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(168,85,247,0.18);
}
.panel-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.panel-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.6rem;
}
.panel-content { font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; }

/* ─────────────────────────────
   SOCIALS
───────────────────────────── */
.socials-section {
  background: linear-gradient(135deg, rgba(249,168,212,0.08) 0%, rgba(196,181,253,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.25rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(168,85,247,0.22);
}
.social-icon  { font-size: 2.5rem; }
.social-name  { font-weight: 700; font-size: 1.05rem; color: var(--purple-dark); }
.social-handle { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.social-card.twitch  { border-color: rgba(145,70,255,0.3); }
.social-card.twitter { border-color: rgba(244,114,182,0.3); }
.social-card.discord { border-color: rgba(114,137,218,0.3); }

/* ─────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────── */
.page-hero {
  position: relative;
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-hero-bg .shape-1 {
  width: 350px; height: 350px;
  top: -80px; left: -100px;
}
.page-hero-bg .shape-2 {
  width: 280px; height: 280px;
  bottom: -60px; right: -80px;
}
.page-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

/* ─────────────────────────────
   ABOUT PAGE
───────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--grad-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 30px var(--shadow);
}
.main-about { text-align: center; }
.about-wolf-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.main-about h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}
.main-about p { color: var(--text-soft); line-height: 1.8; }

.about-facts-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.fact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s;
}
.fact-card:hover { transform: translateX(4px); }
.fact-icon { font-size: 1.5rem; flex-shrink: 0; }
.fact-card h4 { font-size: 0.8rem; font-weight: 700; color: var(--pink-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.fact-card p  { font-size: 0.95rem; color: var(--text-soft); font-weight: 600; }

.about-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--grad-card);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--shadow);
}
.about-cta h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  color: var(--purple-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-cta p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ─────────────────────────────
   SCHEDULE PAGE
───────────────────────────── */
.schedule-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--lilac);
  border: 1.5px solid var(--lavender);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: var(--purple-dark);
  font-weight: 600;
  flex-wrap: wrap;
}
.schedule-note span { font-size: 1.5rem; }
.schedule-note p { flex: 1; min-width: 180px; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.schedule-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  box-shadow: 0 3px 16px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(168,85,247,0.18);
}
.schedule-dot {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
}
.schedule-on    .schedule-dot { background: var(--pink); box-shadow: 0 0 10px rgba(244,114,182,0.5); animation: dotPulse 2s infinite; }
.schedule-off   .schedule-dot { background: var(--border); }
.schedule-maybe .schedule-dot { background: var(--lavender); }

.schedule-on    { border-color: rgba(244,114,182,0.4); }
.schedule-off   { opacity: 0.65; }
.schedule-maybe { border-color: rgba(196,181,253,0.5); }

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(244,114,182,0.4); }
  50%       { box-shadow: 0 0 14px rgba(244,114,182,0.7); }
}
.schedule-day  { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--purple-dark); }
.schedule-time { font-size: 0.85rem; color: var(--pink-dark); font-weight: 700; margin: 0.15rem 0; }
.schedule-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.schedule-timezone {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.schedule-timezone strong { color: var(--purple-dark); }

/* ─────────────────────────────
   COMMANDS PAGE
───────────────────────────── */
.commands-section { margin-bottom: 2.5rem; }
.commands-category {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 4px solid var(--pink);
}
.commands-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 18px var(--shadow);
}
.command-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.command-row:last-child { border-bottom: none; }
.command-row:hover { background: var(--pink-light); }
.command-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-dark);
  background: var(--lilac);
  padding: 0.25rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  min-width: 160px;
  flex-shrink: 0;
}
.command-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.commands-footer-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--lilac);
  border: 1.5px solid var(--lavender);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.commands-footer-note span { font-size: 1.4rem; }

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--pink-dark) 100%);
  padding: 3rem 2rem 2rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0.85rem 1.25rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(253,244,255,0.97);
    border-bottom: 1.5px solid var(--border);
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { min-height: 80vh; padding: 3rem 1rem 4rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .blurb-card { padding: 2rem 1.25rem; }
  .section { padding: 3.5rem 1rem; }
  .command-name { min-width: 120px; font-size: 0.85rem; }
  .command-row { flex-wrap: wrap; gap: 0.5rem; }
  .schedule-note { flex-direction: column; align-items: flex-start; }
}

/* ── Live Banner ── */
.live-banner {
  background: linear-gradient(90deg, #7c3aed, #db2777);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
}
.live-banner a { color: white; font-weight: 800; text-decoration: underline; }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: dotPulse 1.5s infinite;
  flex-shrink: 0;
}

/* ── Custom paw cursor ── */
*, *::before, *::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='26'%3E🐾%3C/text%3E%3C/svg%3E") 8 8, auto;
}

a, button, [role='button'], select, label[for] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='26'%3E🐾%3C/text%3E%3C/svg%3E") 8 8, pointer;
}

/* ── Paw tracks ── */
.paw-track {
  position: absolute;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  user-select: none;
  animation: pawFade 2s ease forwards;
  transform-origin: center center;
}

@keyframes pawFade {
  0%   { opacity: 0.8; transform: scale(1.1); }
  20%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(0.7); }
}