/* ============================================
   1 SOL — Styles
   Hopecore aesthetic — golden fields, blue sky, glow
   ============================================ */

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

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash-phase {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

.splash-phase.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

.splash-lines {
  text-align: left;
  margin-bottom: 2.5rem;
  position: relative;
  min-height: 4em;
}

.splash-line {
  display: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  line-height: 1.4;
  color: rgba(232, 244, 253, 0.85);
}

.splash-line.active {
  display: block;
}

.splash-line.accent {
  color: #5CBF8A;
  font-weight: 800;
}

.splash-line.accent.big {
  font-size: clamp(2rem, 6vw, 3rem);
}

.splash-line .cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: rgba(232, 244, 253, 0.7);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.6s step-end infinite;
}

.splash-line.accent .cursor {
  background: #5CBF8A;
}

@keyframes blink {
  50% { opacity: 0; }
}

.btn-enter {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 3rem;
  color: #0f0f0f;
  background: linear-gradient(to bottom, #7AD4A5, #5CBF8A, #4AA876);
  border: none;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 3px 6px -1px rgba(92, 191, 138, 0.25);
}

.btn-enter::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: left 0.5s ease-out;
  pointer-events: none;
}

.btn-enter:hover::after { left: 125%; }
.btn-enter:hover {
  background: linear-gradient(to bottom, #8EDDB5, #7AD4A5, #5CBF8A);
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 6px 12px -2px rgba(92, 191, 138, 0.3),
    0 0 20px rgba(92, 191, 138, 0.15);
}

.btn-enter:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.5),
    inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-enter.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.btn-enter.visible {
  opacity: 1;
  pointer-events: auto;
}

.splash-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(92, 191, 138, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(92, 191, 138, 0.03) 0%, transparent 50%);
}

.main-phase {
  display: none;
}

.main-phase.active {
  display: block;
}

/* CUSTOM BORDER WIDTH */
.border-3 {
  border-width: 3px;
}

.border-t-3 {
  border-top-width: 3px;
}

.border-b-3 {
  border-bottom-width: 3px;
}

/* RETRO SHADOWS */
.shadow-retro {
  box-shadow: 4px 4px 0 0 #1a1a1a;
}

.shadow-retro-lg {
  box-shadow: 6px 6px 0 0 #1a1a1a;
}

/* SECTION TITLE TEXT EFFECTS (on sky bg) */
.section-title {
  -webkit-text-stroke: 1.5px #1a1a1a;
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 #1a1a1a;
  color: #5CBF8A;
}

/* SECTION TITLE on dark bg */
.section-title-light {
  -webkit-text-stroke: 1.5px #1a1a1a;
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 #1a1a1a;
  color: #E8F4FD;
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */
.bg-sky-gradient {
  background: linear-gradient(180deg, #E8F4FD 0%, #E0F5EC 100%);
}

.bg-dark-glow {
  background: #1a1a1a;
  position: relative;
}

.bg-dark-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(92,191,138,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   SECTION DIVIDERS (soft gradient blends)
   ============================================ */
.divider-sky-to-dark {
  height: 80px;
  background: linear-gradient(180deg, #E0F5EC 0%, #1a1a1a 100%);
}

.divider-dark-to-sky {
  height: 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #E8F4FD 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background-color: #5CBF8A;
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 3px solid #1a1a1a;
  box-shadow: 4px 4px 0 0 #1a1a1a;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

.btn-primary-on-dark {
  display: inline-block;
  background-color: #FFF;
  color: #5CBF8A;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 3px solid #1a1a1a;
  box-shadow: 4px 4px 0 0 rgba(255,255,255,0.15);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-on-dark:hover {
  box-shadow: 6px 6px 0 0 rgba(255,255,255,0.2);
  transform: translate(-2px, -2px);
}

.btn-secondary {
  display: inline-block;
  background-color: #E8F4FD;
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 3px solid #1a1a1a;
  box-shadow: 4px 4px 0 0 #1a1a1a;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  box-shadow: 6px 6px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
  text-decoration: none;
  color: #E8F4FD;
}

.nav-link:hover {
  opacity: 0.6;
}

.btn-nav {
  display: inline-block;
  background-color: #5CBF8A;
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 3px solid #1a1a1a;
  padding: 0.6rem 1.75rem;
  box-shadow: 4px 4px 0 0 rgba(255,255,255,0.15);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-nav:hover {
  background-color: #4AA876;
  box-shadow: 5px 5px 0 0 rgba(255,255,255,0.2);
  transform: translate(-1px, -1px);
}

/* BADGES */
.badge {
  display: inline-block;
  background-color: #5CBF8A;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: 2px solid #1a1a1a;
  margin-bottom: 1rem;
}

/* CARDS */
.chapter-card {
  background-color: #FFF;
  border: 3px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 4px 4px 0 0 #1a1a1a;
  transition: all 0.2s ease;
}

.chapter-card:hover {
  box-shadow: 6px 6px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

/* Dark variant for cards on sky bg */
.chapter-card-dark {
  background: linear-gradient(135deg, #1a2a3a 0%, #1a1a1a 100%);
  border: 3px solid rgba(92,191,138,0.3);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 4px 4px 0 0 rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.chapter-card-dark:hover {
  box-shadow: 6px 6px 0 0 rgba(0,0,0,0.4);
  transform: translate(-2px, -2px);
  border-color: rgba(92,191,138,0.5);
}

.community-card {
  display: block;
  background-color: #FFF;
  border: 3px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: 4px 4px 0 0 #1a1a1a;
  transition: all 0.2s ease;
  text-decoration: none;
}

.community-card:hover {
  box-shadow: 6px 6px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

.footer-link {
  color: rgba(232, 244, 253, 0.6);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #5CBF8A;
}

/* ============================================
   MARKET CAP BANNER
   ============================================ */
.mcap-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: #FFF;
  border: 3px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 1.25rem 2rem;
  box-shadow: 4px 4px 0 0 #1a1a1a;
}

.mcap-icon {
  width: 48px;
  height: 48px;
  background-color: #22c55e;
  color: #FFF;
  border: 3px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mcap-pill {
  background-color: #22c55e;
  border: 3px solid #1a1a1a;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  text-align: center;
  box-shadow: 3px 3px 0 0 #1a1a1a;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mcap-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .mcap-banner > div:first-child {
    justify-content: center;
  }
}

/* ============================================
   HERO ARTWORK — PULSING GLOW (no hard border)
   ============================================ */
.hero-float {
  animation: hero-hover 3s ease-in-out infinite;
}

@keyframes hero-hover {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}

.hero-artwork {
  position: relative;
  width: 18rem;
  height: 18rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.hero-artwork:hover {
  box-shadow: 6px 6px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

@media (min-width: 768px) {
  .hero-artwork {
    width: 24rem;
    height: 24rem;
  }
}

.art-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(92, 191, 138, 0.2) 35%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

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

/* ============================================
   PETITION SECTION
   ============================================ */
.petition-box {
  background: linear-gradient(135deg, #F0FFF5 0%, #E8F4FD 100%);
  border: 3px solid #1a1a1a;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: 6px 6px 0 0 #1a1a1a;
  text-align: center;
}

.petition-count {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #5CBF8A;
  line-height: 1;
  text-shadow: 3px 3px 0 #1a1a1a;
  -webkit-text-stroke: 2px #1a1a1a;
  paint-order: stroke fill;
}

.sign-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5CBF8A 0%, #7AD4A5 100%);
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  border: 3px solid #1a1a1a;
  padding: 1rem 3rem;
  box-shadow: 5px 5px 0 0 #1a1a1a;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sign-btn:hover {
  box-shadow: 7px 7px 0 0 #1a1a1a;
  transform: translate(-2px, -2px);
}

.sign-btn:active {
  box-shadow: 2px 2px 0 0 #1a1a1a;
  transform: translate(1px, 1px);
}

.sign-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.sign-btn.signed {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  color: #FFF;
}

@media (max-width: 768px) {
  .petition-count {
    font-size: 3rem;
  }

  .petition-box {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   PETITION CELEBRATION
   ============================================ */
.celebrate-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform, opacity;
}

.golden-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(92,191,138,0.3) 0%, rgba(255,255,255,0.15) 50%, transparent 80%);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: none;
}

.golden-flash.active {
  animation: flash-burst 0.6s ease-out forwards;
}

@keyframes flash-burst {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   HERO CLOUDS
   ============================================ */
.hero-cloud {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(20px);
}

.cloud-1 {
  width: 200px;
  height: 70px;
  top: 8%;
  animation: cloud-drift 50s linear infinite;
  animation-delay: 0s;
  opacity: 0.7;
}

.cloud-2 {
  width: 280px;
  height: 80px;
  top: 15%;
  animation: cloud-drift 65s linear infinite;
  animation-delay: -20s;
  opacity: 0.5;
}

.cloud-3 {
  width: 160px;
  height: 55px;
  top: 5%;
  animation: cloud-drift-reverse 55s linear infinite;
  animation-delay: -10s;
  opacity: 0.6;
}

.cloud-4 {
  width: 220px;
  height: 65px;
  top: 22%;
  animation: cloud-drift-reverse 70s linear infinite;
  animation-delay: -35s;
  opacity: 0.45;
}

@keyframes cloud-drift {
  0%   { transform: translateX(-300px); }
  100% { transform: translateX(calc(100vw + 300px)); }
}

@keyframes cloud-drift-reverse {
  0%   { transform: translateX(calc(100vw + 300px)); }
  100% { transform: translateX(-300px); }
}

/* ============================================
   HERO PETALS (contained to hero section)
   ============================================ */
.hero-petal {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hp-1 { width:20px; top:-5%;  animation: hero-petal-fall 10s linear infinite; animation-delay:0s;    left:8%; }
.hp-2 { width:15px; top:-8%;  animation: hero-petal-fall 13s linear infinite; animation-delay:-2s;   left:22%; }
.hp-3 { width:24px; top:-3%;  animation: hero-petal-fall 9s linear infinite;  animation-delay:-5s;   left:38%; }
.hp-4 { width:13px; top:-6%;  animation: hero-petal-fall 12s linear infinite; animation-delay:-1s;   left:52%; }
.hp-5 { width:18px; top:-4%;  animation: hero-petal-fall 14s linear infinite; animation-delay:-7s;   left:65%; }
.hp-6 { width:16px; top:-7%;  animation: hero-petal-fall 11s linear infinite; animation-delay:-3s;   left:78%; }
.hp-7 { width:22px; top:-2%;  animation: hero-petal-fall 10s linear infinite; animation-delay:-9s;   left:15%; }
.hp-8 { width:14px; top:-5%;  animation: hero-petal-fall 12s linear infinite; animation-delay:-6s;   left:90%; }

@keyframes hero-petal-fall {
  0%   { transform: translateY(-20px) translateX(0px) rotate(0deg); opacity: 0; }
  5%   { opacity: 0.7; }
  25%  { transform: translateY(25vh) translateX(15px) rotate(80deg); opacity: 0.6; }
  50%  { transform: translateY(50vh) translateX(-10px) rotate(170deg); opacity: 0.55; }
  75%  { transform: translateY(75vh) translateX(20px) rotate(260deg); opacity: 0.4; }
  95%  { opacity: 0.1; }
  100% { transform: translateY(105vh) translateX(5px) rotate(360deg); opacity: 0; }
}

/* ============================================
   FLOATING FLOWER PETALS (global background)
   ============================================ */
.petal-float {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  animation: drift linear infinite;
}

.petal-float-reverse {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  animation: drift-reverse linear infinite;
}

/* Forward petals */
.petal-1  { width:24px; top:5%;  opacity:0.55; animation-duration:38s; animation-delay:0s; }
.petal-2  { width:16px; top:15%; opacity:0.45; animation-duration:52s; animation-delay:-8s; }
.petal-3  { width:30px; top:25%; opacity:0.60; animation-duration:30s; animation-delay:-14s; }
.petal-4  { width:14px; top:35%; opacity:0.42; animation-duration:55s; animation-delay:-20s; }
.petal-5  { width:22px; top:48%; opacity:0.52; animation-duration:34s; animation-delay:-4s; }
.petal-6  { width:18px; top:58%; opacity:0.48; animation-duration:44s; animation-delay:-26s; }
.petal-7  { width:28px; top:68%; opacity:0.58; animation-duration:32s; animation-delay:-2s; }
.petal-8  { width:15px; top:78%; opacity:0.42; animation-duration:50s; animation-delay:-16s; }
.petal-9  { width:20px; top:88%; opacity:0.50; animation-duration:36s; animation-delay:-30s; }

/* Reverse petals */
.petal-r1 { width:26px; top:3%;  opacity:0.55; animation-duration:46s; animation-delay:-5s; }
.petal-r2 { width:17px; top:18%; opacity:0.45; animation-duration:58s; animation-delay:-18s; }
.petal-r3 { width:23px; top:32%; opacity:0.55; animation-duration:42s; animation-delay:-10s; }
.petal-r4 { width:13px; top:45%; opacity:0.40; animation-duration:62s; animation-delay:-28s; }
.petal-r5 { width:21px; top:55%; opacity:0.50; animation-duration:38s; animation-delay:-7s; }
.petal-r6 { width:19px; top:70%; opacity:0.45; animation-duration:54s; animation-delay:-22s; }
.petal-r7 { width:27px; top:82%; opacity:0.55; animation-duration:40s; animation-delay:-3s; }
.petal-r8 { width:14px; top:92%; opacity:0.40; animation-duration:60s; animation-delay:-33s; }

@keyframes drift {
  0%   { transform: translateX(-80px) translateY(0px) rotate(0deg); }
  20%  { transform: translateX(20vw) translateY(-22px) rotate(45deg); }
  40%  { transform: translateX(40vw) translateY(15px) rotate(90deg); }
  60%  { transform: translateX(60vw) translateY(-18px) rotate(135deg); }
  80%  { transform: translateX(80vw) translateY(10px) rotate(180deg); }
  100% { transform: translateX(105vw) translateY(0px) rotate(220deg); }
}

@keyframes drift-reverse {
  0%   { transform: translateX(105vw) translateY(0px) rotate(0deg); }
  20%  { transform: translateX(80vw) translateY(25px) rotate(-40deg); }
  40%  { transform: translateX(55vw) translateY(-20px) rotate(-85deg); }
  60%  { transform: translateX(30vw) translateY(22px) rotate(-130deg); }
  80%  { transform: translateX(10vw) translateY(-12px) rotate(-175deg); }
  100% { transform: translateX(-100px) translateY(0px) rotate(-220deg); }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #5CBF8A;
  z-index: 60;
  pointer-events: none;
  transition: none;
}

/* ============================================
   QUOTE CARD
   ============================================ */
.quote-card {
  position: relative;
  background: linear-gradient(135deg, #1a2a3a 0%, #1a1a1a 100%);
  border: 3px solid #5CBF8A;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: 6px 6px 0 0 #1a1a1a;
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 0.3em;
  font-size: 6rem;
  color: #5CBF8A;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children slightly */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   CURSOR TRAIL
   ============================================ */
.trail-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #E8F4FD;
}

::-webkit-scrollbar-thumb {
  background: #5CBF8A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4AA876;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: #5CBF8A;
  color: #FFF;
}

/* ============================================
   WIGGLE ANIMATION
   ============================================ */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.hover-wiggle:hover {
  animation: wiggle 0.4s ease-in-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section-title {
    -webkit-text-stroke: 1px #1a1a1a;
    text-shadow: 2px 2px 0 #1a1a1a;
  }

  .section-title-light {
    -webkit-text-stroke: 1px #1a1a1a;
    text-shadow: 2px 2px 0 #1a1a1a;
  }

  .chapter-card,
  .chapter-card-dark {
    padding: 1.25rem 1.5rem;
  }

  .quote-card {
    padding: 2rem 1.5rem;
  }
}
