/* ═══════════════════════════════════════════════
   ✿ PRANAV PANDEY WAIFU SHRINE ✿
   The most embarrassing website on the internet
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink-100: #fff0f6;
  --pink-200: #ffd6e7;
  --pink-300: #ffadd2;
  --pink-400: #ff85c0;
  --pink-500: #f759ab;
  --pink-600: #eb2f96;
  --pink-700: #c41d7f;
  --purple-400: #b37feb;
  --purple-500: #9254de;
  --purple-600: #722ed1;
  --deep-bg: #0a0011;
  --card-bg: rgba(20, 5, 35, 0.85);
  --card-border: rgba(255, 133, 192, 0.25);
  --text-primary: #fff0f6;
  --text-secondary: #ffadd2;
  --text-muted: rgba(255, 240, 246, 0.55);
  --glow-pink: 0 0 30px rgba(247, 89, 171, 0.4);
  --glow-purple: 0 0 30px rgba(146, 84, 222, 0.4);
  --font-main: 'Zen Maru Gothic', sans-serif;
  --font-cursive: 'Sacramento', cursive;
  --font-fun: 'Permanent Marker', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--deep-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(247, 89, 171, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(146, 84, 222, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(179, 127, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── SAKURA PETALS ── */
#sakura-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.sakura-petal {
  position: absolute;
  top: -40px;
  font-size: 20px;
  opacity: 0.7;
  animation: sakuraFall linear infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(255, 133, 192, 0.5));
}

@keyframes sakuraFall {
  0% {
    transform: translateY(-40px) rotate(0deg) translateX(0);
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(105vh) rotate(720deg) translateX(100px);
    opacity: 0;
  }
}

/* ── SPARKLE CURSOR ── */
#sparkle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

.sparkle {
  position: absolute;
  pointer-events: none;
  font-size: 16px;
  animation: sparkleAnim 0.8s ease-out forwards;
}

@keyframes sparkleAnim {
  0% { transform: scale(1) rotate(0deg); opacity: 1; }
  100% { transform: scale(0) rotate(180deg) translateY(-30px); opacity: 0; }
}

/* ── FLOATING HEARTS ── */
#hearts-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

.floating-heart {
  position: absolute;
  bottom: -30px;
  font-size: 20px;
  opacity: 0.5;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-110vh) scale(0.3);
    opacity: 0;
  }
}

/* ═══════════════ HEADER ═══════════════ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 0, 17, 0.95) 0%, rgba(10, 0, 17, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-icon {
  font-size: 24px;
  color: var(--pink-500);
  animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.site-title {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

#main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 10px;
  padding-bottom: 10px;
}

#main-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--purple-500));
  transition: width 0.3s ease;
}

#main-nav a:hover {
  color: var(--pink-400);
}

#main-nav a:hover::after {
  width: 100%;
}

.header-sparkle-bar {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--pink-500), 
    var(--purple-500), 
    var(--pink-500), 
    transparent
  );
  background-size: 200% 100%;
  animation: sparkleBar 3s linear infinite;
}

@keyframes sparkleBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════ HERO ═══════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(247, 89, 171, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(146, 84, 222, 0.15) 0%, transparent 50%);
  z-index: 0;
}

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

.hero-frame {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--pink-500);
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(247, 89, 171, 0.4),
    0 0 80px rgba(247, 89, 171, 0.2),
    inset 0 0 30px rgba(247, 89, 171, 0.1);
  animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { box-shadow: 0 0 40px rgba(247, 89, 171, 0.4), 0 0 80px rgba(247, 89, 171, 0.2); }
  100% { box-shadow: 0 0 60px rgba(146, 84, 222, 0.5), 0 0 120px rgba(146, 84, 222, 0.3); }
}

.hero-roses {
  position: absolute;
  font-size: 28px;
  animation: roseFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 133, 192, 0.6));
}

.hero-roses.top-left { top: -10px; left: -10px; animation-delay: 0s; }
.hero-roses.top-right { top: -10px; right: -10px; animation-delay: 1s; }
.hero-roses.bottom-left { bottom: -10px; left: -10px; animation-delay: 2s; }
.hero-roses.bottom-right { bottom: -10px; right: -10px; animation-delay: 3s; }

@keyframes roseFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

.hero-hearts-burst span {
  position: absolute;
  font-size: 18px;
  color: var(--pink-400);
  animation: heartBurst 4s ease-in-out infinite;
  opacity: 0.6;
}

.hero-hearts-burst span:nth-child(1) { top: 10%; left: -40px; animation-delay: 0s; }
.hero-hearts-burst span:nth-child(2) { top: 30%; right: -40px; animation-delay: 0.4s; }
.hero-hearts-burst span:nth-child(3) { top: 50%; left: -50px; animation-delay: 0.8s; }
.hero-hearts-burst span:nth-child(4) { top: 70%; right: -50px; animation-delay: 1.2s; }
.hero-hearts-burst span:nth-child(5) { top: 90%; left: -30px; animation-delay: 1.6s; }
.hero-hearts-burst span:nth-child(6) { top: 20%; left: -60px; animation-delay: 2s; }
.hero-hearts-burst span:nth-child(7) { top: 40%; right: -60px; animation-delay: 2.4s; }
.hero-hearts-burst span:nth-child(8) { top: 60%; left: -45px; animation-delay: 2.8s; }
.hero-hearts-burst span:nth-child(9) { top: 80%; right: -35px; animation-delay: 3.2s; }
.hero-hearts-burst span:nth-child(10) { bottom: 0; left: -20px; animation-delay: 3.6s; }

@keyframes heartBurst {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
  50% { transform: scale(1.4) translateY(-10px); opacity: 1; }
}

.hero-text {
  text-align: center;
}

.hero-kana {
  font-size: 1rem;
  color: var(--pink-400);
  letter-spacing: 4px;
  margin-bottom: 8px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-name {
  font-family: var(--font-fun);
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--pink-300), var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  line-height: 1.2;
  margin-bottom: 16px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(247, 89, 171, 0.15), rgba(146, 84, 222, 0.15));
  border: 2px solid var(--pink-500);
  border-radius: 16px;
  padding: 12px 32px;
  box-shadow: var(--glow-pink);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-rank {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.badge-value {
  font-family: var(--font-fun);
  font-size: 2.5rem;
  color: #ff4d6a;
  text-shadow: 0 0 20px rgba(255, 77, 106, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── PLACEHOLDER IMAGES ── */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 89, 171, 0.1), rgba(146, 84, 222, 0.1));
  border: 2px dashed var(--card-border);
  color: var(--text-muted);
}

.placeholder-img span {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.placeholder-img small {
  font-size: 0.75rem;
  opacity: 0.5;
}

.hero-placeholder {
  border-radius: 50%;
  border: none;
}

/* ═══════════════ SECTIONS COMMON ═══════════════ */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-header .deco {
  font-size: 1.5rem;
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

#about-img-card {
  height: 400px;
}

.about-placeholder {
  border-radius: 20px;
  border: none;
}

.about-text-card {
  padding: 32px;
}

.about-text-card h3 {
  font-size: 1.3rem;
  text-align: center;
  color: var(--pink-400);
  margin-bottom: 20px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.profile-table tr {
  border-bottom: 1px solid rgba(255, 133, 192, 0.1);
}

.profile-table td {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.profile-table td:first-child {
  color: var(--pink-400);
  font-weight: 700;
  white-space: nowrap;
  width: 40%;
}

.profile-table td:last-child {
  color: var(--text-secondary);
}

.about-quote {
  background: linear-gradient(135deg, rgba(247, 89, 171, 0.08), rgba(146, 84, 222, 0.08));
  border-left: 3px solid var(--pink-500);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--pink-500);
  box-shadow: var(--glow-pink);
}

.gallery-placeholder {
  height: 250px;
  border-radius: 0;
  border: none;
}

.gallery-caption {
  padding: 16px;
  text-align: center;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

/* ═══════════════ STATS ═══════════════ */
.stats-container {
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--pink-500);
  box-shadow: var(--glow-pink);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-card h3 {
  font-size: 1rem;
  color: var(--pink-400);
}

.stat-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.stat-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--pink-600), var(--pink-400));
  width: 0;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(247, 89, 171, 0.5);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.overall-rating {
  max-width: 500px;
  margin: 60px auto 0;
  text-align: center;
  background: var(--card-bg);
  border: 2px solid var(--pink-500);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glow-pink);
}

.overall-rating h3 {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.rating-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.rating-letter {
  font-family: var(--font-fun);
  font-size: 6rem;
  color: #ff4d6a;
  text-shadow: 0 0 40px rgba(255, 77, 106, 0.6), 0 0 80px rgba(255, 77, 106, 0.3);
  line-height: 1;
}

.rating-minus {
  font-family: var(--font-fun);
  font-size: 3rem;
  color: #ff4d6a;
}

.rating-comment {
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 0.9rem;
}

.rating-stars {
  margin-top: 16px;
  font-size: 2rem;
  letter-spacing: 4px;
}

.star.empty {
  color: rgba(255, 255, 255, 0.15);
}

.rating-subtitle {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

/* ═══════════════ ROASTS / FAN MAIL ═══════════════ */
.roasts-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.roasts-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.roast-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
}

.roast-card:hover {
  border-color: var(--pink-500);
  box-shadow: var(--glow-pink);
  transform: translateY(-4px);
}

.roast-avatar {
  font-size: 2rem;
  flex-shrink: 0;
}

.roast-content h4 {
  font-size: 0.9rem;
  color: var(--pink-400);
  margin-bottom: 8px;
}

.roast-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.roast-rating {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════ CONFESSION ═══════════════ */
.confession-container {
  max-width: 650px;
  margin: 40px auto 0;
}

.confession-letter {
  background: linear-gradient(135deg, rgba(247, 89, 171, 0.05), rgba(146, 84, 222, 0.08));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.confession-letter::before {
  content: '♡';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 3rem;
  opacity: 0.1;
  color: var(--pink-400);
}

.confession-dear {
  font-family: var(--font-cursive);
  font-size: 2.5rem;
  color: var(--pink-400);
  margin-bottom: 20px;
}

.confession-letter p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.confession-sign {
  margin-top: 24px;
  text-align: right;
  font-style: italic;
}

.confession-name {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--pink-400);
}

/* ═══════════════ FOOTER ═══════════════ */
#main-footer {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid var(--card-border);
  background: rgba(10, 0, 17, 0.9);
}

.footer-jp {
  font-size: 0.85rem;
  color: var(--pink-400);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-en {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-emojis {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.2rem;
}

.footer-emojis span {
  animation: emojiFloat 3s ease-in-out infinite;
}

.footer-emojis span:nth-child(2n) {
  animation-delay: 0.5s;
}

.footer-emojis span:nth-child(3n) {
  animation-delay: 1s;
}

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
  .hero-name {
    font-size: 2.2rem;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  #about-img-card {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .roasts-grid {
    grid-template-columns: 1fr;
  }

  #main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .confession-letter {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-name {
    font-size: 1.8rem;
  }

  section {
    padding: 60px 16px;
  }
}

/* ── NEW HUMILIATION ANIMATIONS ── */
#interest-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #ff0000;
  color: white;
  text-align: center;
  font-weight: 900;
  padding: 8px;
  z-index: 10000;
  font-family: var(--font-fun);
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(255,0,0,0.5);
  animation: bgFlash 1s infinite alternate;
}
@keyframes bgFlash { from { background: #d90000; } to { background: #ff4d6a; } }

.anime-sweat {
  position: absolute; top: 10%; right: 15%;
  font-size: 3rem; animation: sweatDrop 2s infinite ease-in; z-index: 10;
}
@keyframes sweatDrop { 0% { transform: translateY(0) scale(1); opacity: 1; } 100% { transform: translateY(60px) scale(0.5); opacity: 0; } }

.anime-vein {
  position: absolute; top: 15%; left: 10%;
  font-size: 3rem; animation: throb 1s infinite alternate; z-index: 10;
}
@keyframes throb { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 1; color: red;} }

.unpaid-stamp {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--font-fun); font-size: 4rem; color: #ff0000; border: 5px solid #ff0000;
  padding: 10px 20px; border-radius: 10px; font-weight: 900; text-shadow: 2px 2px 0px rgba(255,255,255,0.5);
  z-index: 20; opacity: 0.8; animation: stampPound 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes stampPound { 0% { transform: translate(-50%, -50%) rotate(-15deg) scale(5); opacity: 0; } 100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 0.9; } }

.shake-animation { animation: shakeBadge 0.2s infinite alternate; border-color: red;}
@keyframes shakeBadge { from { transform: translateX(-2px) rotate(-1deg); } to { transform: translateX(2px) rotate(1deg); } }

.broke-overlay-text {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: black; color: red; font-family: var(--font-fun); font-size: 2rem;
  padding: 5px 15px; border: 2px solid red; transform: translateX(-50%) rotate(-5deg); z-index: 10;
}

.dakimakura-wrapper { position: relative; overflow: hidden; }
.dakimakura-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; background: rgba(255,0,0,0.5); opacity: 0; transition: 0.3s; z-index: 5; font-family: var(--font-fun); font-size: 2.5rem; color: white; text-shadow: 2px 2px red; }
.dakimakura-wrapper:hover .dakimakura-overlay { opacity: 1; backdrop-filter: blur(5px); }

.drain-anim { animation: drainBar 4s cubic-bezier(0.4, 0, 0.2, 1) forwards !important; background: red !important; }
@keyframes drainBar { 0% { width: 100%; } 100% { width: 0%; box-shadow: 0 0 10px red; } }

.bounce-clown { font-size: 4rem; animation: bounceClown 1s infinite alternate; }
@keyframes bounceClown { from { transform: translateY(0); } to { transform: translateY(-20px); } }

.flash-red { animation: flashText 0.5s infinite; color: red !important; }
@keyframes flashText { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; color: #ff4d6a;} }

.bounce-card { animation: floatOdd 3s ease-in-out infinite; border-color: red !important; box-shadow: 0 0 10px rgba(255,0,0,0.4) !important;}
.bounce-card-alt { animation: floatEven 3.5s ease-in-out infinite; border-color: red !important; box-shadow: 0 0 10px rgba(255,0,0,0.4) !important;}
@keyframes floatOdd { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }
@keyframes floatEven { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }

.vibrate-hover:hover { animation: vibrateItem 0.1s linear infinite; box-shadow: 0 0 25px red;}
@keyframes vibrateItem { 0% { transform: translate(1px, 1px); } 25% { transform: translate(-1px, -1px); } 50% { transform: translate(-1px, 1px); } 75% { transform: translate(1px, -1px); } 100% { transform: translate(1px, 1px); } }

.donate-container { margin-top: 40px; position: relative; height: 80px; }
#runaway-btn {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: var(--pink-500); color: white; border: none; padding: 15px 30px;
  font-family: var(--font-fun); font-size: 1.2rem; border-radius: 20px; cursor: pointer;
  box-shadow: 0 5px 15px rgba(247, 89, 171, 0.5); transition: 0.1s linear; z-index: 50;
}
.pulsing-warning { font-weight: bold; color: yellow !important; text-align: center; border: 2px dashed red; padding: 12px; border-radius: 8px; animation: pulseWarn 1s infinite alternate; background: rgba(255,0,0,0.2);}
@keyframes pulseWarn { from { transform: scale(1); border-color: red;} to { transform: scale(1.05); border-color: yellow;} }
