/* ─────────────────────────────────────────────
   ProfessionalFrogger — styles.css
   A cozy plum-dark bunny burrow on the web
   ───────────────────────────────────────────── */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Pacifico&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Palette */
  --purple-deep:    #1a0a2e;
  --purple-dark:    #2b1147;
  --purple-main:    #7c3aed;
  --purple-mid:     #a855f7;
  --purple-light:   #c084fc;
  --purple-pale:    #e9d5ff;

  --pink-deep:      #831843;
  --pink-main:      #db2777;
  --pink-mid:       #f472b6;
  --pink-light:     #fca5d4;
  --pink-inner:     #fecdd3;
  --pink-blush:     #fda4af;

  --brown-dark:     #3b1f0e;
  --brown-mid:      #78462b;
  --brown-light:    #c4956a;
  --brown-pale:     #e8d5bc;

  /* Semantic */
  --bg:             #100720;
  --bg-surface:     #1c0d35;
  --bg-card:        rgba(44, 20, 68, 0.6);
  --bg-card-hover:  rgba(60, 28, 90, 0.8);
  --text-primary:   #f3e8ff;
  --text-secondary: #c4b5d4;
  --text-muted:     #8b779e;
  --border:         rgba(168, 85, 247, 0.2);
  --border-hover:   rgba(168, 85, 247, 0.5);
  --glow-purple:    rgba(124, 58, 237, 0.35);
  --glow-pink:      rgba(244, 114, 182, 0.25);

  /* Typography */
  --font-display:   'Pacifico', cursive;
  --font-body:      'Nunito', sans-serif;

  /* Spacing */
  --section-pad:    clamp(64px, 8vw, 120px);
  --container:      1100px;
  --radius-sm:      10px;
  --radius-md:      18px;
  --radius-lg:      28px;
  --radius-pill:    100px;

  /* Transitions */
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

/* ── BACKGROUND BLOBS ── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobDrift 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--purple-main);
  top: -150px; left: -150px;
  animation-duration: 22s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--pink-main);
  top: 30%; right: -100px;
  animation-duration: 18s;
  animation-delay: -7s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: var(--purple-mid);
  bottom: 20%; left: 20%;
  animation-duration: 25s;
  animation-delay: -12s;
}
.blob-4 {
  width: 350px; height: 350px;
  background: var(--pink-mid);
  bottom: -80px; right: 10%;
  animation-duration: 20s;
  animation-delay: -5s;
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 50px) scale(1.1); }
}

/* Ensure everything is above the blobs */
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(16px, 4vw, 40px);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(16, 7, 32, 0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-smooth);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-bounce);
}
.nav-logo:hover { transform: scale(1.04); }

.logo-svg {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 8px var(--glow-pink));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--purple-pale);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-smooth);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.nav-link:hover, .nav-link.active {
  color: var(--purple-pale);
  background: rgba(168, 85, 247, 0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 6px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s var(--ease-bounce);
  letter-spacing: 0.02em;
  border: none;
  text-transform: lowercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-main), var(--pink-main));
  color: white;
  box-shadow: 0 4px 20px var(--glow-purple), 0 2px 8px var(--glow-pink);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px var(--glow-purple), 0 4px 16px var(--glow-pink);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--purple-pale);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--purple-mid);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

/* ── SECTION SHARED ── */
.section {
  padding: var(--section-pad) clamp(16px, 4vw, 40px);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink-mid);
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--purple-pale);
  margin-bottom: 48px;
  line-height: 1.2;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px clamp(16px, 4vw, 40px) 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  overflow: hidden;
}

.hero-content {
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink-mid);
  box-shadow: 0 0 6px var(--pink-mid);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-title-small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-weight: 600;
  font-style: italic;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero art */
.hero-art {
  position: relative;
  flex-shrink: 0;
  animation: fadeInUp 0.8s 0.2s var(--ease-smooth) both;
}

.hero-bunny {
  width: clamp(180px, 25vw, 300px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.3));
  animation: floatBunny 5s ease-in-out infinite;
}

@keyframes floatBunny {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.sparkle {
  position: absolute;
  animation: sparkleSpin 4s ease-in-out infinite;
}
.sparkle svg { width: 22px; height: 22px; }

.sparkle-1 { top: 10%; left: -20px; animation-delay: 0s; animation-duration: 3.5s; }
.sparkle-2 { top: 20%; right: -15px; animation-delay: -1s; animation-duration: 4.5s; }
.sparkle-3 { bottom: 15%; left: 10%; animation-delay: -2s; animation-duration: 5s; }

@keyframes sparkleSpin {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
  50% { transform: rotate(180deg) scale(1.3); opacity: 1; }
}

.paw-deco { position: absolute; }
.paw-deco svg { }
.paw-1 { bottom: 5%; right: -10px; }
.paw-1 svg { width: 44px; height: 44px; animation: floatBunny 6s 1s ease-in-out infinite; }

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(180deg, transparent, rgba(28, 13, 53, 0.5) 30%, rgba(28, 13, 53, 0.5) 70%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--purple-pale); font-weight: 800; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-bounce);
  text-align: center;
}
.info-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--glow-purple);
}

.info-card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
}
.info-card-icon svg { width: 100%; height: 100%; }

.info-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 800;
  margin-bottom: 4px;
}

.info-card-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--purple-pale);
}

/* ── CONTENT SECTION ── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.content-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-bounce);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeInUp 0.5s var(--ease-smooth) both;
}
.content-card:nth-child(1) { animation-delay: 0.05s; }
.content-card:nth-child(2) { animation-delay: 0.1s; }
.content-card:nth-child(3) { animation-delay: 0.15s; }
.content-card:nth-child(4) { animation-delay: 0.2s; }

.content-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.content-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.content-card:hover .content-card-bg { opacity: 1; }

.card-twitch:hover { box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25); }
.card-twitch .content-card-bg { background: radial-gradient(circle at 80% 20%, rgba(124,58,237,0.12), transparent 70%); }

.card-youtube:hover { box-shadow: 0 16px 40px rgba(244, 114, 182, 0.2); }
.card-youtube .content-card-bg { background: radial-gradient(circle at 80% 20%, rgba(244,114,182,0.12), transparent 70%); }

.card-discord:hover { box-shadow: 0 16px 40px rgba(88, 101, 242, 0.2); }
.card-discord .content-card-bg { background: radial-gradient(circle at 80% 20%, rgba(88,101,242,0.12), transparent 70%); }

.card-barq:hover { box-shadow: 0 16px 40px rgba(196, 149, 106, 0.2); }
.card-barq .content-card-bg { background: radial-gradient(circle at 80% 20%, rgba(196,149,106,0.15), transparent 70%); }

.platform-icon {
  width: 36px; height: 36px;
  margin-bottom: 6px;
}
.card-twitch .platform-icon  { color: var(--purple-light); }
.card-youtube .platform-icon { color: var(--pink-mid); }
.card-discord .platform-icon { color: #a5b4fc; }
.card-barq .platform-icon    { color: var(--brown-light); }

.content-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}

.content-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  flex-grow: 1;
  line-height: 1.6;
}

.content-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
  transition: all 0.25s var(--ease-bounce);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  align-self: flex-start;
}
.content-card-btn:hover {
  border-color: var(--purple-mid);
  color: var(--purple-pale);
  background: rgba(168, 85, 247, 0.1);
  transform: translateX(4px);
}
.card-twitch .content-card-btn:hover  { border-color: var(--purple-light); color: var(--purple-pale); }
.card-youtube .content-card-btn:hover { border-color: var(--pink-mid); color: var(--pink-light); }
.card-discord .content-card-btn:hover { border-color: #a5b4fc; color: #c7d2fe; }
.card-barq .content-card-btn:hover    { border-color: var(--brown-light); color: var(--brown-pale); }

/* ── LORE SECTION ── */
.lore-section {
  background: linear-gradient(180deg, transparent, rgba(28, 13, 53, 0.4) 20%, rgba(28, 13, 53, 0.4) 80%, transparent);
}

.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.lore-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), var(--border), transparent);
  transform: translateX(-50%);
}

.lore-item {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  position: relative;
  transition: background 0.3s;
  border-radius: var(--radius-md);
}
.lore-item:hover {
  background: rgba(168, 85, 247, 0.05);
}

/* Dot on the center line */
.lore-item:nth-child(odd)  { padding-right: 48px; }
.lore-item:nth-child(even) { padding-left: 48px; }

.lore-item:nth-child(odd)  .lore-dot { order: 1; }
.lore-item:nth-child(even) .lore-dot { order: -1; }

.lore-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink-mid));
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 10px var(--glow-pink);
}

.lore-content-block { flex: 1; }

.lore-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--purple-pale);
  margin-bottom: 8px;
}

.lore-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.65;
}

/* ── LINKS SECTION ── */
.links-inner {
  max-width: 680px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-bounce);
  cursor: pointer;
  text-decoration: none;
}
.link-pill:hover {
  transform: translateX(6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.link-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-bounce);
}
.link-pill:hover .link-icon { transform: scale(1.2); }

.link-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  min-width: 90px;
}

.link-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-grow: 1;
}

.link-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-smooth), color 0.3s;
}
.link-pill:hover .link-arrow {
  transform: translateX(4px);
  color: var(--purple-light);
}

.link-twitch  .link-icon { color: var(--purple-light); }
.link-youtube .link-icon { color: var(--pink-mid); }
.link-discord .link-icon { color: #a5b4fc; }
.link-barq    .link-icon { color: var(--brown-light); }

.link-twitch:hover  { border-color: rgba(192, 132, 252, 0.4); }
.link-youtube:hover { border-color: rgba(244, 114, 182, 0.4); }
.link-discord:hover { border-color: rgba(165, 180, 252, 0.4); }
.link-barq:hover    { border-color: rgba(196, 149, 106, 0.4); }

/* ── CONTACT ── */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(28, 13, 53, 0.5) 30%, rgba(28, 13, 53, 0.5) 70%, transparent);
}

.contact-inner { max-width: 700px; }

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 500px;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  flex: 1;
  min-width: 180px;
  transition: all 0.3s var(--ease-bounce);
}
.contact-method:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--glow-purple);
}

.contact-method svg {
  width: 40px; height: 40px;
  flex-shrink: 0;
}

.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method strong {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 800;
}
.contact-method span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-btn { margin-top: 8px; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(16px, 4vw, 40px);
  background: rgba(16, 7, 32, 0.6);
  backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
}
.footer-logo svg { width: 28px; height: 28px; }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease-bounce);
}
.footer-links a:hover {
  color: var(--purple-pale);
  border-color: var(--border-hover);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-3px);
}
.footer-links svg { width: 16px; height: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(16, 7, 32, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-smooth), opacity 0.35s var(--ease-smooth);
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 10px 16px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .lore-grid {
    grid-template-columns: 1fr;
  }
  .lore-grid::before { display: none; }
  .lore-item:nth-child(odd),
  .lore-item:nth-child(even) {
    padding: 20px 16px;
  }
}

@media (max-width: 700px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 48px;
    gap: 24px;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-bunny {
    width: min(220px, 60vw);
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
  .link-handle { display: none; }
  .contact-methods { flex-direction: column; }
}

/* ── SCROLLBAR STYLING ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--purple-dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--purple-main); }

/* ── SELECTION ── */
::selection {
  background: rgba(168, 85, 247, 0.35);
  color: var(--purple-pale);
}

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--purple-mid);
  outline-offset: 3px;
  border-radius: 4px;
}