:root {
  --bg: #fff;
  --fg: #1a1a1a;
  --dim: #999;
  --accent: #e0493b;
  --accent-2: #f0903e;
  --accent-3: #3ea8d8;
  --accent-4: #7c3fc4;
  --accent-5: #2ea85a;
  --accent-soft: #fef5f3;
  --border: #ece9e2;
  --card-bg: #fffefc;
  --card-hover: #fffdf8;
  --shadow: 0 0 0 1px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.03);
  --shadow-hover: 0 0 0 1px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.08);
  --radius: 10px;
  --spring: cubic-bezier(.18,.89,.32,1.28);
  --bloom: cubic-bezier(.05,.7,.1,1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== LOADING BAR ===== */
.load-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--accent-4), var(--accent), var(--accent-2), var(--accent-3), var(--accent-5), var(--accent-4));
  background-size: 200% 100%;
  animation: loadSlide 1s var(--bloom) forwards, loadShimmer 1.5s linear infinite;
  pointer-events: none; border-radius: 0 2px 2px 0;
}
@keyframes loadSlide { from { width: 0; } to { width: 100%; } }
@keyframes loadShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== BG BLOBS ===== */
.bg-blobs::before,
.bg-blobs::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: blobBloom 2s var(--bloom) forwards;
}
.bg-blobs::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-4) 0%, transparent 70%);
  top: -250px; left: -150px;
  animation: blobBloom 2s var(--bloom) forwards, blobDance 16s ease-in-out 2s infinite;
}
.bg-blobs::after {
  width: 550px; height: 550px;
  background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  animation: blobBloom 2s var(--bloom) 0.3s forwards, blobDance 20s ease-in-out 2.3s infinite reverse;
}
@keyframes blobBloom {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 0.22; transform: scale(1); }
}
@keyframes blobDance {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50%; }
  15% { transform: translate(140px, -90px) scale(1.35) rotate(15deg); border-radius: 58% 42% 52% 48%; }
  30% { transform: translate(-50px, 85px) scale(0.7) rotate(-12deg); border-radius: 42% 58% 44% 56%; }
  50% { transform: translate(-150px, -40px) scale(1.25) rotate(28deg); border-radius: 53% 47% 62% 38%; }
  65% { transform: translate(70px, 55px) scale(0.8) rotate(-22deg); border-radius: 47% 53% 38% 62%; }
  80% { transform: translate(-25px, -70px) scale(1.15) rotate(6deg); border-radius: 50% 50% 54% 46%; }
}

/* ===== SPARKLE PARTICLES ===== */
.particles {
  position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.spark {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: sparkRise linear infinite, sparkTwinkle 2s ease-in-out infinite, sparkBloom 0.6s var(--spring) forwards;
}
.spark.petal {
  border-radius: 50% 0 50% 0;
  animation: petalFloat linear infinite, sparkTwinkle 3s ease-in-out infinite, sparkBloom 0.8s var(--spring) forwards;
  width: 5px; height: 5px;
}
@keyframes petalFloat {
  0% { transform: translateY(105vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.9; transform: translateY(88vh) translateX(30px) rotate(60deg); }
  30% { transform: translateY(60vh) translateX(-20px) rotate(180deg); }
  55% { transform: translateY(30vh) translateX(15px) rotate(300deg); }
  80% { transform: translateY(10vh) translateX(-10px) rotate(380deg); }
  100% { transform: translateY(-5vh) translateX(5px) rotate(440deg); opacity: 0; }
}
.spark:nth-child(1) { left: 2%; background: var(--accent-4); animation-duration: 13s, 2s, 0.6s; animation-delay: 0s, 0s, 0.4s; width: 2px; height: 2px; }
.spark:nth-child(2) { left: 5%; background: var(--accent); animation-duration: 17s, 3s, 0.6s; animation-delay: -3s, -1s, 0.5s; width: 3px; height: 3px; }
.spark:nth-child(3) { left: 9%; background: var(--accent-2); animation-duration: 15s, 2.5s, 0.6s; animation-delay: -7s, -0.5s, 0.6s; width: 2px; height: 2px; }
.spark:nth-child(4) { left: 13%; background: var(--accent-3); animation-duration: 19s, 3.5s, 0.6s; animation-delay: -2s, -1.5s, 0.7s; width: 4px; height: 4px; }
.spark:nth-child(5) { left: 17%; background: var(--accent-5); animation-duration: 14s, 2s, 0.6s; animation-delay: -10s, -2s, 0.8s; width: 2px; height: 2px; }
.spark:nth-child(6) { left: 21%; background: var(--accent-4); animation-duration: 18s, 2.8s, 0.6s; animation-delay: -5s, -0.8s, 0.45s; width: 3px; height: 3px; }
.spark:nth-child(7) { left: 25%; background: var(--accent-2); animation-duration: 16s, 2.2s, 0.6s; animation-delay: -8s, -1.2s, 0.55s; width: 2px; height: 2px; }
.spark:nth-child(8) { left: 29%; background: var(--accent); animation-duration: 21s, 3.2s, 0.6s; animation-delay: -12s, -0.3s, 0.65s; width: 3px; height: 3px; }
.spark:nth-child(9) { left: 33%; background: var(--accent-5); animation-duration: 12s, 2.6s, 0.6s; animation-delay: -1s, -1.8s, 0.75s; width: 2px; height: 2px; }
.spark:nth-child(10){ left: 37%; background: var(--accent-3); animation-duration: 20s, 3s, 0.6s; animation-delay: -14s, -0.6s, 0.5s; width: 4px; height: 4px; }
.spark:nth-child(11){ left: 41%; background: var(--accent); animation-duration: 14s, 2.4s, 0.6s; animation-delay: -6s, -1.4s, 0.6s; width: 2px; height: 2px; }
.spark:nth-child(12){ left: 45%; background: var(--accent-4); animation-duration: 23s, 3.8s, 0.6s; animation-delay: -9s, -2.2s, 0.7s; width: 3px; height: 3px; }
.spark:nth-child(13){ left: 49%; background: var(--accent-2); animation-duration: 15s, 2s, 0.6s; animation-delay: -4s, -0.3s, 0.5s; width: 2px; height: 2px; }
.spark:nth-child(14){ left: 53%; background: var(--accent-5); animation-duration: 19s, 3.4s, 0.6s; animation-delay: -11s, -1.7s, 0.65s; width: 3px; height: 3px; }
.spark:nth-child(15){ left: 57%; background: var(--accent-3); animation-duration: 16s, 2.1s, 0.6s; animation-delay: -2s, -0.9s, 0.7s; width: 2px; height: 2px; }
.spark:nth-child(16){ left: 61%; background: var(--accent); animation-duration: 22s, 3.6s, 0.6s; animation-delay: -8s, -1.5s, 0.55s; width: 4px; height: 4px; }
.spark:nth-child(17){ left: 65%; background: var(--accent-4); animation-duration: 13s, 2.3s, 0.6s; animation-delay: -5s, -0.4s, 0.6s; width: 2px; height: 2px; }
.spark:nth-child(18){ left: 69%; background: var(--accent-2); animation-duration: 18s, 3.1s, 0.6s; animation-delay: -13s, -1.9s, 0.5s; width: 3px; height: 3px; }
.spark:nth-child(19){ left: 73%; background: var(--accent-5); animation-duration: 14s, 2.7s, 0.6s; animation-delay: -6s, -0.6s, 0.7s; width: 2px; height: 2px; }
.spark:nth-child(20){ left: 77%; background: var(--accent); animation-duration: 20s, 3.3s, 0.6s; animation-delay: -10s, -1.3s, 0.65s; width: 3px; height: 3px; }
.spark:nth-child(21){ left: 81%; background: var(--accent-3); animation-duration: 15s, 2.5s, 0.6s; animation-delay: -3s, -0.7s, 0.6s; width: 2px; height: 2px; }
.spark:nth-child(22){ left: 85%; background: var(--accent-4); animation-duration: 21s, 3.7s, 0.6s; animation-delay: -7s, -2s, 0.55s; width: 4px; height: 4px; }
.spark:nth-child(23){ left: 89%; background: var(--accent-2); animation-duration: 16s, 2.2s, 0.6s; animation-delay: -1s, -0.8s, 0.7s; width: 2px; height: 2px; }
.spark:nth-child(24){ left: 93%; background: var(--accent); animation-duration: 19s, 3s, 0.6s; animation-delay: -9s, -1.6s, 0.5s; width: 3px; height: 3px; }
.spark:nth-child(25){ left: 96%; background: var(--accent-5); animation-duration: 17s, 2.8s, 0.6s; animation-delay: -4s, -1.1s, 0.6s; width: 2px; height: 2px; }
/* Petals - flying flower shapes */
.spark:nth-child(26){ left: 3%; background: var(--accent-3); animation-duration: 28s, 3s, 0.8s; animation-delay: 0s, 0s, 0.5s; }
.spark:nth-child(27){ left: 11%; background: var(--accent-5); animation-duration: 32s, 3.5s, 0.8s; animation-delay: -5s, -1s, 0.6s; }
.spark:nth-child(28){ left: 19%; background: var(--accent-4); animation-duration: 26s, 2.5s, 0.8s; animation-delay: -10s, -0.5s, 0.7s; }
.spark:nth-child(29){ left: 27%; background: var(--accent-2); animation-duration: 30s, 3.2s, 0.8s; animation-delay: -15s, -2s, 0.5s; }
.spark:nth-child(30){ left: 35%; background: var(--accent); animation-duration: 24s, 2.8s, 0.8s; animation-delay: -8s, -1.5s, 0.65s; }
.spark:nth-child(31){ left: 43%; background: var(--accent-5); animation-duration: 34s, 3.8s, 0.8s; animation-delay: -3s, -0.8s, 0.55s; }
.spark:nth-child(32){ left: 51%; background: var(--accent-3); animation-duration: 27s, 3s, 0.8s; animation-delay: -12s, -1.8s, 0.7s; }
.spark:nth-child(33){ left: 59%; background: var(--accent-4); animation-duration: 31s, 3.4s, 0.8s; animation-delay: -6s, -0.3s, 0.6s; }
.spark:nth-child(34){ left: 67%; background: var(--accent); animation-duration: 25s, 2.6s, 0.8s; animation-delay: -14s, -1.2s, 0.5s; }
.spark:nth-child(35){ left: 75%; background: var(--accent-2); animation-duration: 29s, 3.6s, 0.8s; animation-delay: -2s, -0.6s, 0.7s; }
.spark:nth-child(36){ left: 83%; background: var(--accent-5); animation-duration: 33s, 3.1s, 0.8s; animation-delay: -9s, -1.6s, 0.55s; }
.spark:nth-child(37){ left: 6%; background: var(--accent-4); animation-duration: 28s, 2.9s, 0.8s; animation-delay: -16s, -0.4s, 0.65s; }
.spark:nth-child(38){ left: 88%; background: var(--accent-3); animation-duration: 26s, 3.3s, 0.8s; animation-delay: -4s, -1.4s, 0.6s; }
.spark:nth-child(39){ left: 15%; background: var(--accent); animation-duration: 30s, 3.7s, 0.8s; animation-delay: -11s, -0.9s, 0.7s; }
.spark:nth-child(40){ left: 92%; background: var(--accent-2); animation-duration: 32s, 2.7s, 0.8s; animation-delay: -7s, -1.7s, 0.5s; }
/* Extra petals - wildflowers */
.spark:nth-child(n+41).petal { animation-duration: 29s, 2.5s, 0.8s; }
.spark:nth-child(n+41):nth-child(odd) { background: var(--accent-5); }
.spark:nth-child(n+41):nth-child(even) { background: var(--accent-3); }
.spark:nth-child(41){ left: 1%; animation-delay: -3s, 0s, 0.5s; }
.spark:nth-child(42){ left: 7%; animation-delay: -8s, -0.5s, 0.6s; }
.spark:nth-child(43){ left: 14%; animation-delay: -13s, -1s, 0.7s; }
.spark:nth-child(44){ left: 22%; animation-delay: -6s, -1.5s, 0.55s; }
.spark:nth-child(45){ left: 31%; animation-delay: -11s, -0.3s, 0.65s; }
.spark:nth-child(46){ left: 39%; animation-delay: -16s, -0.8s, 0.5s; }
.spark:nth-child(47){ left: 47%; animation-delay: -4s, -1.3s, 0.7s; }
.spark:nth-child(48){ left: 55%; animation-delay: -9s, -0.6s, 0.6s; }
.spark:nth-child(49){ left: 63%; animation-delay: -14s, -1.1s, 0.55s; }
.spark:nth-child(50){ left: 71%; animation-delay: -7s, -0.4s, 0.65s; }
.spark:nth-child(51){ left: 79%; animation-delay: -12s, -0.9s, 0.5s; }
.spark:nth-child(52){ left: 87%; animation-delay: -5s, -1.4s, 0.7s; }
.spark:nth-child(53){ left: 94%; animation-delay: -10s, -0.7s, 0.6s; }
.spark:nth-child(54){ left: 4%; animation-delay: -15s, -1.2s, 0.55s; }
.spark:nth-child(55){ left: 18%; animation-delay: -2s, -0.2s, 0.65s; }
.spark:nth-child(56){ left: 26%; animation-delay: -9s, -0.8s, 0.5s; }
.spark:nth-child(57){ left: 34%; animation-delay: -17s, -1.5s, 0.7s; }
.spark:nth-child(58){ left: 42%; animation-delay: -6s, -0.9s, 0.6s; }
.spark:nth-child(59){ left: 50%; animation-delay: -11s, -1.3s, 0.55s; }
.spark:nth-child(60){ left: 58%; animation-delay: -4s, -0.4s, 0.65s; }
.spark:nth-child(61){ left: 66%; animation-delay: -13s, -1s, 0.5s; }
.spark:nth-child(62){ left: 74%; animation-delay: -8s, -1.4s, 0.7s; }
.spark:nth-child(63){ left: 82%; animation-delay: -3s, -0.6s, 0.6s; }
.spark:nth-child(64){ left: 90%; animation-delay: -14s, -1.1s, 0.55s; }
.spark:nth-child(65){ left: 10%; animation-delay: -7s, -0.3s, 0.65s; }
.spark:nth-child(66){ left: 23%; animation-delay: -16s, -1.7s, 0.5s; }
.spark:nth-child(67){ left: 36%; animation-delay: -5s, -0.5s, 0.7s; }
.spark:nth-child(68){ left: 44%; animation-delay: -10s, -1.2s, 0.6s; }
.spark:nth-child(69){ left: 54%; animation-delay: -2s, -0.7s, 0.55s; }
.spark:nth-child(70){ left: 62%; animation-delay: -12s, -1.6s, 0.65s; }
.spark:nth-child(71){ left: 72%; animation-delay: -6s, -0.2s, 0.5s; }
.spark:nth-child(72){ left: 84%; animation-delay: -15s, -0.9s, 0.7s; }
.spark:nth-child(73){ left: 96%; animation-delay: -4s, -1.5s, 0.6s; }
.spark:nth-child(74){ left: 20%; animation-delay: -10s, -0.1s, 0.55s; }
.spark:nth-child(75){ left: 68%; animation-delay: -18s, -1.8s, 0.65s; }

/* ===== FLOATING BLOSSOMS & LEAVES ===== */
.floaters {
  position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.blossom {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  animation: blossomDrift linear infinite, bloomPulse 3s ease-in-out infinite;
}
.blossom:nth-child(1)  { top: 12%; left: -30px; background: var(--accent-4); animation-duration: 45s, 3s; animation-delay: 0s, 0s; width: 22px; height: 22px; }
.blossom:nth-child(2)  { top: 25%; left: -30px; background: var(--accent-2); animation-duration: 38s, 2.5s; animation-delay: -5s, -0.5s; width: 16px; height: 16px; }
.blossom:nth-child(3)  { top: 38%; left: -30px; background: var(--accent-3); animation-duration: 52s, 3.5s; animation-delay: -10s, -1s; width: 24px; height: 24px; }
.blossom:nth-child(4)  { top: 55%; left: -30px; background: var(--accent-5); animation-duration: 40s, 2.8s; animation-delay: -15s, -1.5s; width: 18px; height: 18px; }
.blossom:nth-child(5)  { top: 68%; left: -30px; background: var(--accent); animation-duration: 48s, 3.2s; animation-delay: -20s, -2s; width: 20px; height: 20px; }
.blossom:nth-child(6)  { top: 80%; left: -30px; background: var(--accent-4); animation-duration: 55s, 2.6s; animation-delay: -25s, -0.3s; width: 15px; height: 15px; }
.blossom:nth-child(7)  { top: 8%;  left: -30px; background: var(--accent-2); animation-duration: 42s, 3.8s; animation-delay: -8s, -1.2s; width: 21px; height: 21px; }
.blossom:nth-child(8)  { top: 32%; left: -30px; background: var(--accent-5); animation-duration: 50s, 2.4s; animation-delay: -13s, -0.8s; width: 17px; height: 17px; }
.blossom:nth-child(9)  { top: 48%; left: -30px; background: var(--accent-3); animation-duration: 36s, 3.4s; animation-delay: -18s, -1.8s; width: 23px; height: 23px; }
.blossom:nth-child(10) { top: 62%; left: -30px; background: var(--accent); animation-duration: 44s, 2.7s; animation-delay: -22s, -0.6s; width: 19px; height: 19px; }
.blossom:nth-child(11) { top: 18%; left: -30px; background: var(--accent-4); animation-duration: 53s, 3.1s; animation-delay: -3s, -1.4s; width: 16px; height: 16px; }
.blossom:nth-child(12) { top: 42%; left: -30px; background: var(--accent-2); animation-duration: 39s, 2.9s; animation-delay: -12s, -0.7s; width: 22px; height: 22px; }
.blossom:nth-child(13) { top: 58%; left: -30px; background: var(--accent-5); animation-duration: 46s, 3.6s; animation-delay: -17s, -1.1s; width: 15px; height: 15px; }
.blossom:nth-child(14) { top: 72%; left: -30px; background: var(--accent-3); animation-duration: 41s, 2.3s; animation-delay: -6s, -0.4s; width: 20px; height: 20px; }
.blossom:nth-child(15) { top: 88%; left: -30px; background: var(--accent); animation-duration: 49s, 3.3s; animation-delay: -14s, -1.6s; width: 18px; height: 18px; }
.blossom:nth-child(16) { top: 22%; left: -30px; background: var(--accent-5); animation-duration: 37s, 2.5s; animation-delay: -9s, -0.9s; width: 21px; height: 21px; }
.blossom:nth-child(17) { top: 52%; left: -30px; background: var(--accent-4); animation-duration: 54s, 3.7s; animation-delay: -19s, -1.3s; width: 17px; height: 17px; }
.blossom:nth-child(18) { top: 68%; left: -30px; background: var(--accent-2); animation-duration: 43s, 2.8s; animation-delay: -4s, -0.5s; width: 23px; height: 23px; }
.blossom:nth-child(19) { top: 35%; left: -30px; background: var(--accent-3); animation-duration: 47s, 3s; animation-delay: -16s, -1.7s; width: 19px; height: 19px; }
.blossom:nth-child(20) { top: 78%; left: -30px; background: var(--accent); animation-duration: 51s, 3.5s; animation-delay: -11s, -0.2s; width: 16px; height: 16px; }
.blossom:nth-child(21) { top: 6%;  left: -30px; background: var(--accent-2); animation-duration: 42s, 2.7s; animation-delay: -2s, -0.6s; width: 20px; height: 20px; }
.blossom:nth-child(22) { top: 16%; left: -30px; background: var(--accent-5); animation-duration: 49s, 3.4s; animation-delay: -8s, -1.2s; width: 15px; height: 15px; }
.blossom:nth-child(23) { top: 27%; left: -30px; background: var(--accent-3); animation-duration: 36s, 2.9s; animation-delay: -15s, -0.3s; width: 22px; height: 22px; }
.blossom:nth-child(24) { top: 40%; left: -30px; background: var(--accent-4); animation-duration: 53s, 3.6s; animation-delay: -22s, -1.5s; width: 18px; height: 18px; }
.blossom:nth-child(25) { top: 53%; left: -30px; background: var(--accent); animation-duration: 44s, 2.5s; animation-delay: -6s, -0.8s; width: 21px; height: 21px; }

@keyframes blossomDrift {
  0% { transform: translateX(-40px) translateY(0) rotate(0deg); opacity: 0; }
  5% { opacity: 0.55; }
  45% { transform: translateX(50vw) translateY(30px) rotate(180deg); }
  90% { transform: translateX(95vw) translateY(-20px) rotate(340deg); opacity: 0.5; }
  100% { transform: translateX(105vw) translateY(0) rotate(360deg); opacity: 0; }
}
@keyframes bloomPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Leaves */
.leaf {
  position: absolute;
  width: 26px; height: 14px;
  border-radius: 0 80% 0 80%;
  opacity: 0;
  animation: leafFloat linear infinite, leafSpin 4s ease-in-out infinite;
}
.leaf:nth-child(21) { top: 15%; left: -40px; background: var(--accent-5); animation-duration: 50s; animation-delay: 0s; }
.leaf:nth-child(22) { top: 30%; left: -40px; background: var(--accent-3); animation-duration: 44s; animation-delay: -6s; width: 22px; height: 12px; }
.leaf:nth-child(23) { top: 45%; left: -40px; background: var(--accent-5); animation-duration: 56s; animation-delay: -12s; }
.leaf:nth-child(24) { top: 60%; left: -40px; background: var(--accent-3); animation-duration: 40s; animation-delay: -18s; width: 30px; height: 16px; }
.leaf:nth-child(25) { top: 75%; left: -40px; background: var(--accent-5); animation-duration: 52s; animation-delay: -4s; }
.leaf:nth-child(26) { top: 10%; left: -40px; background: var(--accent-3); animation-duration: 46s; animation-delay: -10s; width: 24px; height: 13px; }
.leaf:nth-child(27) { top: 35%; left: -40px; background: var(--accent-5); animation-duration: 58s; animation-delay: -16s; }
.leaf:nth-child(28) { top: 50%; left: -40px; background: var(--accent-3); animation-duration: 42s; animation-delay: -22s; width: 28px; height: 15px; }
.leaf:nth-child(29) { top: 65%; left: -40px; background: var(--accent-5); animation-duration: 48s; animation-delay: -8s; }
.leaf:nth-child(30) { top: 85%; left: -40px; background: var(--accent-3); animation-duration: 38s; animation-delay: -14s; width: 22px; height: 12px; }
.leaf:nth-child(31) { top: 20%; left: -40px; background: var(--accent-5); animation-duration: 54s; animation-delay: -2s; }
.leaf:nth-child(32) { top: 40%; left: -40px; background: var(--accent-3); animation-duration: 47s; animation-delay: -9s; width: 25px; height: 14px; }
.leaf:nth-child(33) { top: 55%; left: -40px; background: var(--accent-5); animation-duration: 41s; animation-delay: -15s; }
.leaf:nth-child(34) { top: 70%; left: -40px; background: var(--accent-3); animation-duration: 53s; animation-delay: -21s; width: 27px; height: 15px; }
.leaf:nth-child(35) { top: 8%;  left: -40px; background: var(--accent-5); animation-duration: 49s; animation-delay: -7s; }
.leaf:nth-child(36) { top: 28%; left: -40px; background: var(--accent-3); animation-duration: 43s; animation-delay: -13s; width: 23px; height: 13px; }
.leaf:nth-child(37) { top: 48%; left: -40px; background: var(--accent-5); animation-duration: 55s; animation-delay: -19s; }
.leaf:nth-child(38) { top: 62%; left: -40px; background: var(--accent-3); animation-duration: 39s; animation-delay: -5s; width: 29px; height: 16px; }
.leaf:nth-child(39) { top: 78%; left: -40px; background: var(--accent-5); animation-duration: 51s; animation-delay: -11s; }
.leaf:nth-child(40) { top: 92%; left: -40px; background: var(--accent-3); animation-duration: 45s; animation-delay: -17s; width: 24px; height: 13px; }

@keyframes leafFloat {
  0% { transform: translateX(-50px) translateY(0); opacity: 0; }
  5% { opacity: 0.5; }
  25% { transform: translateX(25vw) translateY(-40px); }
  50% { transform: translateX(50vw) translateY(20px); }
  75% { transform: translateX(75vw) translateY(-30px); }
  95% { opacity: 0.5; transform: translateX(98vw) translateY(10px); }
  100% { transform: translateX(105vw) translateY(0); opacity: 0; }
}
@keyframes leafSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* ===== CSS FLOWERS ===== */
.flower {
  position: absolute; opacity: 0;
  animation: flowerDrift linear infinite, bloomOpen 4s ease-in-out infinite;
}
.flower::before {
  content: "";
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fbbf24;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow:
    8px 0 0 0 #f59e0b,
    5px 6px 0 0 #f472b6,
    -2px 8px 0 0 #fbbf24,
    -7px 5px 0 0 #ec4899,
    -8px -2px 0 0 #f59e0b,
    -3px -7px 0 0 #f472b6,
    5px -7px 0 0 #fbbf24,
    4px 8px 0 1px #ec4899,
    -6px -5px 0 1px #f59e0b;
}
.flower:nth-child(41){ top: 10%; left: -30px; animation-duration: 55s, 4s; animation-delay: 0s, 0s; }
.flower:nth-child(42){ top: 22%; left: -30px; animation-duration: 48s, 3.5s; animation-delay: -7s, -0.5s; }
.flower:nth-child(43){ top: 35%; left: -30px; animation-duration: 60s, 5s; animation-delay: -14s, -1s; }
.flower:nth-child(44){ top: 48%; left: -30px; animation-duration: 52s, 4.5s; animation-delay: -21s, -1.5s; }
.flower:nth-child(45){ top: 62%; left: -30px; animation-duration: 44s, 3.8s; animation-delay: -3s, -2s; }
.flower:nth-child(46){ top: 75%; left: -30px; animation-duration: 58s, 4.2s; animation-delay: -10s, -0.8s; }
.flower:nth-child(47){ top: 18%; left: -30px; animation-duration: 50s, 3.6s; animation-delay: -17s, -1.3s; }
.flower:nth-child(48){ top: 42%; left: -30px; animation-duration: 54s, 4.8s; animation-delay: -5s, -0.3s; }
.flower:nth-child(49){ top: 56%; left: -30px; animation-duration: 46s, 3.2s; animation-delay: -12s, -1.8s; }
.flower:nth-child(50){ top: 70%; left: -30px; animation-duration: 62s, 5.5s; animation-delay: -19s, -0.6s; }
.flower:nth-child(51){ top: 30%; left: -30px; animation-duration: 40s, 3s; animation-delay: -8s, -1.4s; }
.flower:nth-child(52){ top: 52%; left: -30px; animation-duration: 56s, 4.4s; animation-delay: -15s, -0.2s; }
.flower:nth-child(53){ top: 66%; left: -30px; animation-duration: 49s, 3.7s; animation-delay: -2s, -1.6s; }
.flower:nth-child(54){ top: 80%; left: -30px; animation-duration: 53s, 4.1s; animation-delay: -9s, -0.9s; }
.flower:nth-child(55){ top: 5%;  left: -30px; animation-duration: 45s, 5.2s; animation-delay: -16s, -0.4s; }
.flower:nth-child(56){ top: 14%; left: -30px; animation-duration: 50s, 4s; animation-delay: -4s, -0.7s; }
.flower:nth-child(57){ top: 28%; left: -30px; animation-duration: 42s, 3.5s; animation-delay: -11s, -1.2s; }
.flower:nth-child(58){ top: 40%; left: -30px; animation-duration: 57s, 5s; animation-delay: -18s, -0.3s; }
.flower:nth-child(59){ top: 54%; left: -30px; animation-duration: 46s, 4.3s; animation-delay: -6s, -1.8s; }
.flower:nth-child(60){ top: 68%; left: -30px; animation-duration: 51s, 3.8s; animation-delay: -13s, -0.5s; }
.flower:nth-child(61){ top: 82%; left: -30px; animation-duration: 39s, 4.6s; animation-delay: -20s, -1s; }
.flower:nth-child(62){ top: 7%;  left: -30px; animation-duration: 55s, 5.4s; animation-delay: -9s, -1.5s; }
.flower:nth-child(63){ top: 20%; left: -30px; animation-duration: 43s, 3.3s; animation-delay: -15s, -0.2s; }
.flower:nth-child(64){ top: 33%; left: -30px; animation-duration: 48s, 4.7s; animation-delay: -2s, -1.7s; }
.flower:nth-child(65){ top: 46%; left: -30px; animation-duration: 60s, 3.9s; animation-delay: -22s, -0.9s; }
.flower:nth-child(66){ top: 60%; left: -30px; animation-duration: 41s, 5.1s; animation-delay: -8s, -1.3s; }
.flower:nth-child(67){ top: 74%; left: -30px; animation-duration: 53s, 4.2s; animation-delay: -14s, -0.6s; }
.flower:nth-child(68){ top: 88%; left: -30px; animation-duration: 47s, 3.6s; animation-delay: -5s, -1.1s; }
.flower:nth-child(69){ top: 11%; left: -30px; animation-duration: 58s, 4.8s; animation-delay: -19s, -0.4s; }
.flower:nth-child(70){ top: 23%; left: -30px; animation-duration: 49s, 3.4s; animation-delay: -12s, -1.6s; }

@keyframes flowerDrift {
  0% { transform: translateX(-40px) translateY(0); opacity: 0; }
  5% { opacity: 0.7; }
  40% { transform: translateX(40vw) translateY(-50px); }
  80% { transform: translateX(80vw) translateY(30px); opacity: 0.6; }
  100% { transform: translateX(105vw) translateY(-20px); opacity: 0; }
}
@keyframes bloomOpen {
  0%, 100% { transform: scale(0.7); }
  50% { transform: scale(1.15); }
}

/* ===== BUTTERFLIES ===== */
.butterfly {
  position: absolute; opacity: 0;
  animation: butterflyDance linear infinite;
}
.butterfly::before,
.butterfly::after {
  content: ""; position: absolute;
  border-radius: 50% 50% 30% 30%;
}
.butterfly::before {
  width: 10px; height: 7px;
  background: #f472b6;
  transform: rotate(-20deg);
  box-shadow: 0 0 2px rgba(244,114,182,.5);
}
.butterfly::after {
  width: 8px; height: 6px;
  background: #ec4899;
  transform: rotate(20deg);
  left: 8px;
  box-shadow: 0 0 2px rgba(236,72,153,.5);
}
.butterfly:nth-child(56){ top: 12%; left: -20px; animation-duration: 35s; animation-delay: 0s; }
.butterfly:nth-child(57){ top: 28%; left: -20px; animation-duration: 42s; animation-delay: -6s; }
.butterfly:nth-child(58){ top: 44%; left: -20px; animation-duration: 38s; animation-delay: -12s; }
.butterfly:nth-child(59){ top: 60%; left: -20px; animation-duration: 45s; animation-delay: -18s; }
.butterfly:nth-child(60){ top: 76%; left: -20px; animation-duration: 40s; animation-delay: -4s; }
.butterfly:nth-child(61){ top: 8%;  left: -20px; animation-duration: 47s; animation-delay: -10s; }
.butterfly:nth-child(62){ top: 34%; left: -20px; animation-duration: 36s; animation-delay: -16s; }
.butterfly:nth-child(63){ top: 50%; left: -20px; animation-duration: 43s; animation-delay: -22s; }
.butterfly:nth-child(64){ top: 68%; left: -20px; animation-duration: 39s; animation-delay: -8s; }
.butterfly:nth-child(65){ top: 84%; left: -20px; animation-duration: 41s; animation-delay: -14s; }
.butterfly:nth-child(71){ top: 5%;  left: -20px; animation-duration: 37s; animation-delay: -3s; }
.butterfly:nth-child(72){ top: 18%; left: -20px; animation-duration: 44s; animation-delay: -9s; }
.butterfly:nth-child(73){ top: 32%; left: -20px; animation-duration: 33s; animation-delay: -15s; }
.butterfly:nth-child(74){ top: 46%; left: -20px; animation-duration: 46s; animation-delay: -21s; }
.butterfly:nth-child(75){ top: 58%; left: -20px; animation-duration: 38s; animation-delay: -7s; }
.butterfly:nth-child(76){ top: 70%; left: -20px; animation-duration: 42s; animation-delay: -13s; }
.butterfly:nth-child(77){ top: 82%; left: -20px; animation-duration: 35s; animation-delay: -19s; }
.butterfly:nth-child(78){ top: 10%; left: -20px; animation-duration: 48s; animation-delay: -5s; }
.butterfly:nth-child(79){ top: 24%; left: -20px; animation-duration: 40s; animation-delay: -11s; }
.butterfly:nth-child(80){ top: 38%; left: -20px; animation-duration: 45s; animation-delay: -17s; }
.butterfly:nth-child(81){ top: 52%; left: -20px; animation-duration: 32s; animation-delay: -2s; }
.butterfly:nth-child(82){ top: 66%; left: -20px; animation-duration: 50s; animation-delay: -8s; }
.butterfly:nth-child(83){ top: 78%; left: -20px; animation-duration: 36s; animation-delay: -14s; }
.butterfly:nth-child(84){ top: 90%; left: -20px; animation-duration: 43s; animation-delay: -20s; }
.butterfly:nth-child(85){ top: 3%;  left: -20px; animation-duration: 39s; animation-delay: -6s; }
.butterfly:nth-child(86){ top: 16%; left: -20px; animation-duration: 47s; animation-delay: -12s; }
.butterfly:nth-child(87){ top: 30%; left: -20px; animation-duration: 34s; animation-delay: -18s; }
.butterfly:nth-child(88){ top: 44%; left: -20px; animation-duration: 49s; animation-delay: -4s; }
.butterfly:nth-child(89){ top: 56%; left: -20px; animation-duration: 41s; animation-delay: -10s; }
.butterfly:nth-child(90){ top: 72%; left: -20px; animation-duration: 37s; animation-delay: -16s; }
.butterfly:nth-child(91){ top: 86%; left: -20px; animation-duration: 44s; animation-delay: -22s; }
.butterfly:nth-child(92){ top: 8%;  left: -20px; animation-duration: 31s; animation-delay: -1s; }
.butterfly:nth-child(93){ top: 22%; left: -20px; animation-duration: 46s; animation-delay: -7s; }
.butterfly:nth-child(94){ top: 36%; left: -20px; animation-duration: 38s; animation-delay: -13s; }
.butterfly:nth-child(95){ top: 50%; left: -20px; animation-duration: 42s; animation-delay: -19s; }

@keyframes butterflyDance {
  0% { transform: translateX(-30px) translateY(0); opacity: 0; }
  5% { opacity: 0.8; }
  15% { transform: translateX(12vw) translateY(-60px); }
  30% { transform: translateX(26vw) translateY(15px); }
  45% { transform: translateX(40vw) translateY(-70px); }
  60% { transform: translateX(55vw) translateY(30px); }
  75% { transform: translateX(70vw) translateY(-50px); }
  90% { transform: translateX(88vw) translateY(10px); opacity: 0.5; }
  100% { transform: translateX(105vw) translateY(-25px); opacity: 0; }
}

@keyframes sparkBloom {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sparkRise {
  0% { transform: translateY(105vh) translateX(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(90vh) translateX(25px); }
  45% { transform: translateY(50vh) translateX(-35px); }
  80% { transform: translateY(15vh) translateX(20px); }
  100% { transform: translateY(-5vh) translateX(-15px); opacity: 0; }
}
@keyframes sparkTwinkle {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 10px 3px currentColor; }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1100px) {
  .container { max-width: 1000px; }
  .post { padding: 2rem 2.5rem; }
}

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-bottom: 1.5rem; font-size: 0.85rem; font-weight: 500;
  color: var(--dim); text-decoration: none;
  transition: all .3s;
  animation: bloomIn 0.7s var(--spring) 0.2s both;
}
.back-link:hover { color: var(--accent-4); gap: 0.7rem; animation: wiggle 0.5s ease; }
@keyframes wiggle {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(2px); }
}

/* ===== HERO HEADER ===== */
.hero-banner {
  position: relative;
  margin: 2rem -2rem 1rem;
  border-radius: 0;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroBloom 1s var(--spring) both;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(0.8);
  animation: heroImgFloat 8s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.35) 30%,
    rgba(255,255,255,.25) 60%,
    rgba(255,255,255,.45) 100%
  );
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}
.hero-text .tagline {
  color: #555;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
  animation: bloomIn 0.8s var(--spring) 0.5s both;
  display: inline-block;
  position: relative;
}
.hero-text .tagline::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  animation: cursorBlink 0.9s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 10px rgba(124,63,196,.12)); }
}
@keyframes bloomIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  70% { transform: scale(1.04) translateY(-3px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== DIVIDER ===== */
.divider {
  width: 80px; height: 3px; border: none; border-radius: 2px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, var(--accent-4), var(--accent), var(--accent-2), var(--accent-3), var(--accent-5));
  background-size: 300% 100%;
  animation: dividerFlow 3s ease infinite, dividerPulse 1.8s ease-in-out infinite, dividerGrow 0.8s var(--spring) 0.6s both;
}
@keyframes dividerGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes dividerFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.6) scaleY(1.3); }
}

/* ===== POST CARDS ===== */
.post {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  transition: all .35s var(--spring);
  position: relative; z-index: 1; overflow: hidden;
  perspective: 800px;
  transform-origin: center center;
}

/* Continuous border glow */
.post::before {
  content: "";
  position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, transparent, var(--accent-4), var(--accent-2), transparent);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s; z-index: -1;
  animation: borderShift 4s linear infinite;
  pointer-events: none;
}
.post:hover::before { opacity: 1; }
@keyframes borderShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 200% 50%; }
  100% { background-position: 0% 50%; }
}

/* Vine from top-left */
.post .vine-tl {
  position: absolute; top: -8px; left: -6px;
  width: 80px; height: 120px; z-index: 0; pointer-events: none;
  opacity: 0.55;
  animation: vineSway 4s ease-in-out infinite;
}
.post .vine-tl::before,
.post .vine-tl::after {
  content: ""; position: absolute;
  border-radius: 50%;
}
.post .vine-tl::before {
  width: 3px; height: 100%; left: 20px;
  background: linear-gradient(180deg, var(--accent-5), transparent);
  transform: rotate(-15deg);
}
.post .vine-tl::after {
  width: 14px; height: 14px; left: 8px; top: 10px;
  background: var(--accent-5);
  box-shadow:
    18px 14px 0 2px var(--accent-5),
    8px 50px 0 1px var(--accent-5),
    28px 65px 0 3px var(--accent-5),
    5px 80px 0 -1px var(--accent-5);
  opacity: 0.7;
}
@keyframes vineSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

/* Bottom-right vine */
.post .vine-br {
  position: absolute; bottom: -10px; right: -4px;
  width: 70px; height: 100px; z-index: 0; pointer-events: none;
  opacity: 0.45;
  animation: vineSway 5s ease-in-out 1s infinite reverse;
}
.post .vine-br::before,
.post .vine-br::after {
  content: ""; position: absolute;
}
.post .vine-br::before {
  width: 2px; height: 100%; right: 15px; bottom: 0;
  background: linear-gradient(0deg, var(--accent-5), transparent);
  transform: rotate(10deg);
}
.post .vine-br::after {
  width: 12px; height: 12px; right: 2px; bottom: 8px;
  background: var(--accent-3);
  border-radius: 50% 0 50% 50%;
  box-shadow:
    -14px -10px 0 1px var(--accent-5),
    -5px -45px 0 2px var(--accent-3),
    -22px -55px 0 1px var(--accent-5),
    -10px -80px 0 2px var(--accent-3);
  opacity: 0.7;
}

/* Grass at footer */
footer::before {
  content: "";
  display: block;
  height: 30px;
  margin: -29px auto 0;
  background:
    radial-gradient(ellipse 8px 16px at 10% 0, var(--accent-5) 30%, transparent 50%) repeat-x,
    radial-gradient(ellipse 6px 14px at 25% 0, var(--accent-3) 30%, transparent 50%) repeat-x,
    radial-gradient(ellipse 9px 18px at 40% 0, var(--accent-5) 25%, transparent 50%) repeat-x,
    radial-gradient(ellipse 5px 12px at 55% 0, var(--accent-3) 35%, transparent 50%) repeat-x,
    radial-gradient(ellipse 7px 15px at 70% 0, var(--accent-5) 30%, transparent 50%) repeat-x,
    radial-gradient(ellipse 10px 20px at 85% 0, var(--accent-3) 28%, transparent 50%) repeat-x;
  background-size: 100% 100%;
  opacity: 0.5;
  animation: grassWave 6s ease-in-out infinite;
}
@keyframes grassWave {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.05) rotate(0.5deg); }
}

/* Forest silhouette at bottom of hero */
.hero-banner::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background:
    radial-gradient(ellipse 30px 50px at 5% 100%, rgba(46,168,90,.25) 0%, transparent 60%),
    radial-gradient(ellipse 25px 45px at 15% 100%, rgba(62,168,216,.2) 0%, transparent 60%),
    radial-gradient(ellipse 35px 55px at 28% 100%, rgba(46,168,90,.22) 0%, transparent 60%),
    radial-gradient(ellipse 20px 40px at 40% 100%, rgba(62,168,216,.18) 0%, transparent 55%),
    radial-gradient(ellipse 40px 60px at 55% 100%, rgba(46,168,90,.25) 0%, transparent 60%),
    radial-gradient(ellipse 28px 48px at 68% 100%, rgba(62,168,216,.2) 0%, transparent 58%),
    radial-gradient(ellipse 32px 52px at 80% 100%, rgba(46,168,90,.23) 0%, transparent 60%),
    radial-gradient(ellipse 22px 42px at 92% 100%, rgba(62,168,216,.18) 0%, transparent 55%);
  animation: forestBreathe 8s ease-in-out infinite;
}
@keyframes forestBreathe {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.03); }
}

/* Card float */
.post {
  animation: cardFloat 3s ease-in-out infinite;
}
.post:nth-child(odd) { animation-delay: 0s; }
.post:nth-child(even) { animation-delay: 1.5s; }
@keyframes cardFloat {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 0 0 1px rgba(124,63,196,.05), 0 6px 20px rgba(0,0,0,.05); }
}

/* Gradient overlay */
.post::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(124,63,196,.01) 70%, rgba(62,168,216,.01) 100%);
  opacity: 0; transition: opacity .5s; z-index: 0; border-radius: inherit;
  pointer-events: none;
}
.post:hover::after { opacity: 1; }

.post:hover {
  transform: translateY(-4px) rotateX(2deg) scale(1.01);
  z-index: 2;
}

.post h2 {
  font-size: 1.2rem; font-weight: 700;
  margin: 2rem 0 0.75rem; letter-spacing: -0.01em;
  line-height: 1.4; color: var(--fg); transition: all .3s;
  position: relative; z-index: 1;
}
.post h2:first-child { margin-top: 0; }
.post h2 a {
  color: var(--fg); text-decoration: none; transition: all .3s;
  background: linear-gradient(135deg, var(--fg), var(--fg));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .4s var(--spring), color .3s;
}
.post:hover h2 a {
  background-size: 100% 2px;
  background-image: linear-gradient(135deg, var(--accent-4), var(--accent), var(--accent-2), var(--accent-3));
}

/* Shimmer on heading hover */
.post h2 a:hover {
  background: linear-gradient(135deg, var(--accent-4), var(--accent), var(--accent-2), var(--accent-3), var(--accent-5));
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 2s ease infinite;
}

.post .meta {
  font-size: 0.8rem; color: var(--dim); margin-bottom: 0.75rem;
  display: flex; gap: 0.6rem; align-items: center; position: relative; z-index: 1;
}
.post .meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-2);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.post:nth-child(3n+1) .meta .dot { animation-delay: 0s; }
.post:nth-child(3n+2) .meta .dot { animation-delay: 0.6s; }
.post:nth-child(3n+3) .meta .dot { animation-delay: 1.2s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); box-shadow: 0 0 0 var(--accent-2); }
  50% { opacity: 1; transform: scale(3); box-shadow: 0 0 10px var(--accent-2); }
}

.post p { color: #333; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; position: relative; z-index: 1; }
.post p:last-child { margin-bottom: 0; }
.post .excerpt {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; color: #444; font-size: 0.95rem; line-height: 1.7;
}

/* ===== READ MORE ===== */
.post .read-more {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  transition: all .3s var(--spring); position: relative; z-index: 1;
}
.post:hover .read-more { color: var(--accent-4); gap: 0.9rem; }
.post .read-more::after {
  content: "\2192"; transition: all .3s var(--spring);
}
.post:hover .read-more::after {
  animation: arrowDance 0.8s var(--spring) 0.3s;
}
@keyframes arrowDance {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px) scale(1.4); }
  100% { transform: translateX(6px) scale(1); }
}

/* ===== BLOCKQUOTES ===== */
.post blockquote {
  margin: 1.5rem 0; padding: 1rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(240,144,80,.06) 100%);
  border-radius: 0 8px 8px 0;
  transition: all .35s var(--spring); position: relative; z-index: 1;
}
.post blockquote::before {
  content: "\201C"; position: absolute;
  top: -16px; left: 2px; font-size: 4.5rem;
  color: var(--accent-4); opacity: 0;
  transform: translateY(20px) rotate(-15deg) scale(0.5);
  transition: all .6s var(--spring);
  font-family: Georgia, serif; line-height: 1;
}
.post blockquote:hover {
  border-left-color: var(--accent-4); transform: translateX(12px);
  box-shadow: 0 8px 28px rgba(124,63,196,.15);
}
.post blockquote:hover::before { opacity: 0.18; transform: translateY(0) rotate(0deg) scale(1); }
.post blockquote p {
  margin-bottom: 0; color: #444; font-size: 0.95rem; font-style: italic;
}

/* ===== CODE ===== */
.post pre {
  margin: 1.5rem 0; border-radius: var(--radius);
  overflow-x: auto; position: relative; z-index: 1;
  transition: all .35s var(--spring);
}
.post pre:hover {
  box-shadow: 0 4px 28px rgba(124,63,196,.15);
  transform: scale(1.01);
}
.post pre code, .post .highlight pre {
  font-size: 0.82rem; line-height: 1.65;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', monospace;
}
.post code {
  font-size: 0.85em; font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  background: #f4f0ed; padding: 0.1em 0.35em; border-radius: 3px;
  color: #b0251b; transition: all .25s var(--spring);
}
.post code:hover { background: #fceae5; color: #8a1a14; transform: scale(1.08); }

/* ===== HR ===== */
.post hr {
  border: none; height: 2px; margin: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent-4), var(--accent-3), transparent);
  border-radius: 1px;
  animation: hrPulse 2.5s ease-in-out infinite, gradientShift 5s ease infinite;
}
@keyframes hrPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.post img {
  max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0;
  transition: all .4s var(--spring);
}
.post img:hover {
  transform: scale(1.05) rotate(1.5deg);
  box-shadow: 0 14px 52px rgba(0,0,0,.18);
  border-radius: 18px;
}

/* ===== LIST ITEMS ===== */
.post ul, .post ol { margin: 1rem 0 1rem 1.5rem; padding: 0; }
.post li {
  margin-bottom: 0.4rem; line-height: 1.65;
  transition: all .35s var(--spring);
}
.post li p { margin: 0; display: inline; }
.post li:hover { transform: translateX(12px); color: var(--accent-4); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--dim); animation: bloomIn 0.8s var(--spring) 0.3s both; }
.empty-state .icon {
  font-size: 3.5rem; margin-bottom: 0.75rem; display: inline-block;
  animation: floatySpin 3.5s ease-in-out infinite;
}
.empty-state p { font-size: 0.95rem; }

@keyframes floatySpin {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-24px) rotate(-12deg) scale(1.12); }
  50% { transform: translateY(-6px) rotate(6deg) scale(0.92); }
  75% { transform: translateY(-18px) rotate(-6deg) scale(1.06); }
}

/* ===== CONTACT FORM ===== */
#contact-form {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#contact-form input,
#contact-form textarea {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--fg);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--accent-4);
  box-shadow: 0 0 0 3px rgba(124,63,196,.12);
}
#contact-form button[type=submit] {
  align-self: flex-start;
  padding: 0.6rem 1.8rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-4), var(--accent));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .25s var(--spring), box-shadow .25s;
}
#contact-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124,63,196,.3);
}
#contact-form button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
#contact-form [data-fs-success]:not(:empty),
#contact-form [data-fs-error]:not(:empty) {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}
#contact-form [data-fs-success]:not(:empty) {
  color: var(--accent-5);
  background: rgba(46,168,90,.08);
}
#contact-form [data-fs-error]:not(:empty) {
  color: var(--accent);
  background: rgba(224,73,59,.08);
}

/* ===== SITE NAV ===== */
.site-nav {
  text-align: center; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  animation: bloomIn 0.7s var(--spring) 0.8s both;
}

.site-nav a {
  display: inline-block; color: var(--dim); text-decoration: none;
  padding: 0.4rem 1.3rem; border-radius: 20px;
  border: 1.5px solid var(--border);
  transition: all .35s var(--spring); position: relative; overflow: visible;
  font-size: 0.85rem;
  animation: navBob 2.5s ease-in-out infinite;
}
.site-nav a:nth-child(2) { animation-delay: 0s; }
.site-nav a:nth-child(3) { animation-delay: 0.9s; }

/* HIRE ME BOMB */
.site-nav a[href*="hireme"] {
  border-color: var(--accent-2);
  color: var(--accent-2);
  font-weight: 600;
  animation: navBob 2.5s ease-in-out infinite;
  background: linear-gradient(135deg, transparent, transparent);
  background-size: 200% 200%;
  transition: all .35s var(--spring);
}
.site-nav a[href*="hireme"]::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-4), var(--accent), var(--accent-2), transparent, var(--accent-4));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s;
  animation: gradientShift 3s ease infinite;
}
.site-nav a[href*="hireme"]:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-4), var(--accent), var(--accent-2));
  background-size: 200% 200%;
  animation: navBob 2.5s ease-in-out infinite, gradientShift 3s ease infinite;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 30px rgba(124,63,196,.35);
}
.site-nav a[href*="hireme"]:hover::after {
  opacity: 1;
}
@keyframes navBob {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(124,63,196,0); }
  50% { transform: translateY(-3px); box-shadow: 0 3px 10px rgba(124,63,196,.07); }
}
.site-nav a::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), rgba(240,144,80,.15));
  opacity: 0; transition: opacity .3s;
}
.site-nav a:hover {
  color: var(--accent-4); border-color: var(--accent-4);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 28px rgba(124,63,196,.25);
  animation: none;
}
.site-nav a:hover::before { opacity: 1; }



/* ===== FOOTER ===== */
footer {
  margin-top: 3rem; padding: 1.5rem 0 3rem;
  text-align: center; font-size: 0.8rem; color: var(--dim);
  border-top: 1px solid var(--border);
  animation: bloomIn 0.7s var(--spring) 1s both;
}
footer a { color: var(--dim); text-decoration: none; transition: all .3s var(--spring); }
footer a:hover { color: var(--accent-4); text-shadow: 0 0 14px rgba(124,63,196,.35); }

/* ===== JUMPSCARE ===== */
.culkin-overlay {
  position: fixed; inset: 0; z-index: 99999; pointer-events: none;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.culkin-overlay.flash { opacity: 1; }
.culkin-overlay img {
  width: 100vw; height: 100vh; object-fit: contain;
}
@media (max-width: 768px) {
  .culkin-overlay img { object-fit: cover; }
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0d0b;
    --fg: #e0e0dd;
    --dim: #888;
    --accent: #f06252;
    --accent-2: #f09848;
    --accent-3: #48a8e0;
    --accent-4: #a060e0;
    --accent-5: #40c068;
    --accent-soft: #1c1210;
    --border: #2a2824;
    --card-bg: #161614;
    --card-hover: #1c1c19;
    --shadow: 0 0 0 1px rgba(255,255,255,.03), 0 2px 6px rgba(0,0,0,.4);
    --shadow-hover: 0 0 0 1px rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.5);
  }
  .bg-blobs::before, .bg-blobs::after { opacity: 0.14; }
  .hero-overlay {
    background: linear-gradient(135deg,
      rgba(13,13,11,.65) 0%,
      rgba(13,13,11,.45) 30%,
      rgba(13,13,11,.35) 60%,
      rgba(13,13,11,.55) 100%
    );
  }
  .hero-text .tagline { color: #b0b0ae; }
  .post p { color: #b8b8b6; }
  .post .excerpt { color: #a0a09e; }
  .post code { background: #2a2420; color: #f06850; }
  .post code:hover { background: #302824; color: #ff7860; }
  .post blockquote p { color: #b8b8b6; }
  .post blockquote { background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(240,144,80,.05) 100%); }
  .post blockquote:hover { box-shadow: 0 8px 28px rgba(160,96,224,.18); }

  .post::after { background: linear-gradient(135deg, transparent 40%, rgba(160,96,224,.02) 70%, rgba(72,168,224,.02) 100%); }
}

/* ===== SCROLL REVEAL ON POST PAGES ===== */
article.post > h2,
article.post > p,
article.post > pre,
article.post > blockquote,
article.post > img,
article.post > ul,
article.post > ol,
article.post > hr {
  animation: revealBloom 0.7s var(--spring) both;
}
article.post > h2:nth-child(2)  { animation-delay: 0.05s; }
article.post > h2:nth-child(4)  { animation-delay: 0.08s; }
article.post > h2:nth-child(6)  { animation-delay: 0.12s; }
article.post > h2:nth-child(8)  { animation-delay: 0.16s; }
article.post > h2:nth-child(10) { animation-delay: 0.20s; }

@keyframes revealBloom {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  70% { transform: translateY(-4px) scale(1.02); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== CARD ENTRANCE ===== */
@keyframes cardBloom {
  from { opacity: 0; transform: translateY(60px) scale(0.85); }
  65% { transform: translateY(-8px) scale(1.02); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.post {
  animation: cardBloom .7s var(--spring) both, cardFloat 3s ease-in-out 0.7s infinite;
}
.post:nth-child(2) { animation-delay: .06s, .76s; }
.post:nth-child(3) { animation-delay: .13s, .83s; }
.post:nth-child(4) { animation-delay: .20s, .90s; }
.post:nth-child(5) { animation-delay: .27s, .97s; }
.post:nth-child(6) { animation-delay: .34s, 1.04s; }
.post:nth-child(7) { animation-delay: .41s, 1.11s; }
.post:nth-child(8) { animation-delay: .48s, 1.18s; }

pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #F00 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666 } /* Operator */
.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #9C6500 } /* Comment.Preproc */
.highlight .cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
.highlight .cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #E40000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #008400 } /* Generic.Inserted */
.highlight .go { color: #717171 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #04D } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #687822 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #00F; font-weight: bold } /* Name.Class */
.highlight .no { color: #800 } /* Name.Constant */
.highlight .nd { color: #A2F } /* Name.Decorator */
.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #00F } /* Name.Function */
.highlight .nl { color: #767600 } /* Name.Label */
.highlight .nn { color: #00F; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #A2F; font-weight: bold } /* Operator.Word */
.highlight .w { color: #BBB } /* Text.Whitespace */
.highlight .mb { color: #666 } /* Literal.Number.Bin */
.highlight .mf { color: #666 } /* Literal.Number.Float */
.highlight .mh { color: #666 } /* Literal.Number.Hex */
.highlight .mi { color: #666 } /* Literal.Number.Integer */
.highlight .mo { color: #666 } /* Literal.Number.Oct */
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #A45A77 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #00F } /* Name.Function.Magic */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
.highlight .il { color: #666 } /* Literal.Number.Integer.Long */
@media (prefers-color-scheme: dark) {
  pre { line-height: 125%; }
  td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
  span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
  td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
  span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
  .highlight .hll { background-color: #49483e }
  .highlight { background: #272822; color: #F8F8F2 }
  .highlight .c { color: #959077 } /* Comment */
  .highlight .err { color: #ED007E; background-color: #1E0010 } /* Error */
  .highlight .esc { color: #F8F8F2 } /* Escape */
  .highlight .g { color: #F8F8F2 } /* Generic */
  .highlight .k { color: #66D9EF } /* Keyword */
  .highlight .l { color: #AE81FF } /* Literal */
  .highlight .n { color: #F8F8F2 } /* Name */
  .highlight .o { color: #FF4689 } /* Operator */
  .highlight .x { color: #F8F8F2 } /* Other */
  .highlight .p { color: #F8F8F2 } /* Punctuation */
  .highlight .ch { color: #959077 } /* Comment.Hashbang */
  .highlight .cm { color: #959077 } /* Comment.Multiline */
  .highlight .cp { color: #959077 } /* Comment.Preproc */
  .highlight .cpf { color: #959077 } /* Comment.PreprocFile */
  .highlight .c1 { color: #959077 } /* Comment.Single */
  .highlight .cs { color: #959077 } /* Comment.Special */
  .highlight .gd { color: #FF4689 } /* Generic.Deleted */
  .highlight .ge { color: #F8F8F2; font-style: italic } /* Generic.Emph */
  .highlight .ges { color: #F8F8F2; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
  .highlight .gr { color: #F8F8F2 } /* Generic.Error */
  .highlight .gh { color: #F8F8F2 } /* Generic.Heading */
  .highlight .gi { color: #A6E22E } /* Generic.Inserted */
  .highlight .go { color: #66D9EF } /* Generic.Output */
  .highlight .gp { color: #FF4689; font-weight: bold } /* Generic.Prompt */
  .highlight .gs { color: #F8F8F2; font-weight: bold } /* Generic.Strong */
  .highlight .gu { color: #959077 } /* Generic.Subheading */
  .highlight .gt { color: #F8F8F2 } /* Generic.Traceback */
  .highlight .kc { color: #66D9EF } /* Keyword.Constant */
  .highlight .kd { color: #66D9EF } /* Keyword.Declaration */
  .highlight .kn { color: #FF4689 } /* Keyword.Namespace */
  .highlight .kp { color: #66D9EF } /* Keyword.Pseudo */
  .highlight .kr { color: #66D9EF } /* Keyword.Reserved */
  .highlight .kt { color: #66D9EF } /* Keyword.Type */
  .highlight .ld { color: #E6DB74 } /* Literal.Date */
  .highlight .m { color: #AE81FF } /* Literal.Number */
  .highlight .s { color: #E6DB74 } /* Literal.String */
  .highlight .na { color: #A6E22E } /* Name.Attribute */
  .highlight .nb { color: #F8F8F2 } /* Name.Builtin */
  .highlight .nc { color: #A6E22E } /* Name.Class */
  .highlight .no { color: #66D9EF } /* Name.Constant */
  .highlight .nd { color: #A6E22E } /* Name.Decorator */
  .highlight .ni { color: #F8F8F2 } /* Name.Entity */
  .highlight .ne { color: #A6E22E } /* Name.Exception */
  .highlight .nf { color: #A6E22E } /* Name.Function */
  .highlight .nl { color: #F8F8F2 } /* Name.Label */
  .highlight .nn { color: #F8F8F2 } /* Name.Namespace */
  .highlight .nx { color: #A6E22E } /* Name.Other */
  .highlight .py { color: #F8F8F2 } /* Name.Property */
  .highlight .nt { color: #FF4689 } /* Name.Tag */
  .highlight .nv { color: #F8F8F2 } /* Name.Variable */
  .highlight .ow { color: #FF4689 } /* Operator.Word */
  .highlight .pm { color: #F8F8F2 } /* Punctuation.Marker */
  .highlight .w { color: #F8F8F2 } /* Text.Whitespace */
  .highlight .mb { color: #AE81FF } /* Literal.Number.Bin */
  .highlight .mf { color: #AE81FF } /* Literal.Number.Float */
  .highlight .mh { color: #AE81FF } /* Literal.Number.Hex */
  .highlight .mi { color: #AE81FF } /* Literal.Number.Integer */
  .highlight .mo { color: #AE81FF } /* Literal.Number.Oct */
  .highlight .sa { color: #E6DB74 } /* Literal.String.Affix */
  .highlight .sb { color: #E6DB74 } /* Literal.String.Backtick */
  .highlight .sc { color: #E6DB74 } /* Literal.String.Char */
  .highlight .dl { color: #E6DB74 } /* Literal.String.Delimiter */
  .highlight .sd { color: #E6DB74 } /* Literal.String.Doc */
  .highlight .s2 { color: #E6DB74 } /* Literal.String.Double */
  .highlight .se { color: #AE81FF } /* Literal.String.Escape */
  .highlight .sh { color: #E6DB74 } /* Literal.String.Heredoc */
  .highlight .si { color: #E6DB74 } /* Literal.String.Interpol */
  .highlight .sx { color: #E6DB74 } /* Literal.String.Other */
  .highlight .sr { color: #E6DB74 } /* Literal.String.Regex */
  .highlight .s1 { color: #E6DB74 } /* Literal.String.Single */
  .highlight .ss { color: #E6DB74 } /* Literal.String.Symbol */
  .highlight .bp { color: #F8F8F2 } /* Name.Builtin.Pseudo */
  .highlight .fm { color: #A6E22E } /* Name.Function.Magic */
  .highlight .vc { color: #F8F8F2 } /* Name.Variable.Class */
  .highlight .vg { color: #F8F8F2 } /* Name.Variable.Global */
  .highlight .vi { color: #F8F8F2 } /* Name.Variable.Instance */
  .highlight .vm { color: #F8F8F2 } /* Name.Variable.Magic */
  .highlight .il { color: #AE81FF } /* Literal.Number.Integer.Long */
}