:root {
  --bg-deep: #030712;
  --glass-panel: rgba(13, 19, 33, 0.78);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 184, 48, 0.3);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --accent-red: #ff3838;
  --accent-gold: #ffb830;
  --accent-cyan: #00f2fe;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.site-body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  position: relative;
}

/* Ambient Glow & Canvas */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  pointer-events: none;
}
.glow-1 { width: clamp(320px, 45vw, 680px); height: clamp(320px, 45vw, 680px); background: rgba(255, 56, 56, 0.3); top: -80px; left: -80px; }
.glow-2 { width: clamp(350px, 50vw, 750px); height: clamp(350px, 50vw, 750px); background: rgba(255, 184, 48, 0.22); bottom: 10%; right: -100px; }
.glow-3 { width: clamp(250px, 35vw, 500px); height: clamp(250px, 35vw, 500px); background: rgba(255, 56, 56, 0.15); top: 50%; left: 30%; }
#particles-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -1; opacity: 0.65; }

h1, h2, h3 { font-weight: 900; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }
.defer-render { content-visibility: auto; contain-intrinsic-size: 1px 400px; }

/* Responsive Containers */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(1rem, 2.5vw, 1.5rem); width: 100%; }
.narrow-container { max-width: 896px; margin: 0 auto; padding: 0 clamp(1rem, 2.5vw, 1.5rem); width: 100%; }
.section-pad { padding-top: clamp(3.5rem, 6vw, 5rem); padding-bottom: clamp(3.5rem, 6vw, 5rem); }
.border-top { border-top: 1px solid var(--glass-border); }

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-panel);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.35s ease, box-shadow 0.35s ease;
}
.glass-card:hover {
  border-color: var(--glass-hover);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
}

/* Scroll To Top Button */
.scroll-top-btn { 
  position: fixed; 
  bottom: 5.5rem; 
  right: 1.25rem; 
  z-index: 50; 
  width: 3rem; 
  height: 3rem; 
  border-radius: 0.875rem; 
  background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); 
  color: #000; 
  border: none; 
  cursor: pointer; 
  box-shadow: 0 8px 25px rgba(255, 56, 56, 0.45); 
  opacity: 0; 
  transform: translateY(20px); 
  pointer-events: none; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 14px 35px rgba(255, 56, 56, 0.7); }

/* ========================================================= */
/* --- 1000B$ WORTH HEADER NAVIGATION (NON-SQUISHING) --- */
/* ========================================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  width: 100%;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 18px rgba(255, 56, 56, 0.5);
  flex-shrink: 0;
}
.brand-names { display: flex; flex-direction: column; justify-content: center; flex-shrink: 0; }
.brand-title { font-weight: 900; font-size: 1.1rem; color: #fff; line-height: 1.1; white-space: nowrap; }
.brand-sub { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-gold); font-weight: 800; white-space: nowrap; }
.brand-accent { background: linear-gradient(135deg, #ff8a8a, #ffb830); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.6rem, 1.1vw, 1.1rem);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (min-width: 1150px) { .desktop-nav { display: flex; } }
.desktop-nav a { position: relative; padding: 0.4rem 0; transition: color 0.25s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--accent-red), var(--accent-gold)); transition: width 0.25s ease; border-radius: 2px; }
.desktop-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-socials { display: none; align-items: center; gap: 0.35rem; padding-right: 0.75rem; border-right: 1px solid var(--glass-border); }
@media (min-width: 768px) { .header-socials { display: flex; } }
.mini-icon { width: 2rem; height: 2rem; background: rgba(255,255,255,0.03); color: var(--text-muted); display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); border-radius: 0.5rem; transition: all 0.25s ease; }

@keyframes sun-aura {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 56, 56, 0.4), 0 0 25px rgba(255, 184, 48, 0.25); }
  50% { box-shadow: 0 0 30px rgba(255, 56, 56, 0.8), 0 0 45px rgba(255, 184, 48, 0.6); }
}
@keyframes sweep {
  0% { transform: translateX(-150%) skewX(-45deg); }
  100% { transform: translateX(250%) skewX(-45deg); }
}
.btn-sub {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
  color: #000;
  font-weight: 900;
  padding: 0.55rem 1.1rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 56, 56, 0.4);
  transition: transform 0.2s ease;
}
.btn-sub::before { content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 100%; background: rgba(255, 255, 255, 0.5); transform: skewX(-45deg); animation: sweep 2.5s infinite; filter: blur(5px); pointer-events: none; }
.btn-sub:hover { transform: scale(1.04); }

.mobile-toggle { display: flex; width: 2.25rem; height: 2.25rem; background: transparent; color: #f8fafc; border: none; align-items: center; justify-content: center; cursor: pointer; }
@media (min-width: 1150px) { .mobile-toggle { display: none; } }
.mobile-drawer { border-top: 1px solid var(--glass-border); background: rgba(3, 7, 18, 0.98); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.mobile-drawer a { font-size: 0.9rem; font-weight: 800; color: #cbd5e1; text-decoration: none; }
.mobile-drawer a:hover { color: var(--accent-gold); }

/* Side Bar */
.side-bar { display: none; position: fixed; left: 1rem; top: 50%; transform: translateY(-50%); z-index: 40; padding: 0.5rem; flex-direction: column; gap: 0.5rem; }
@media (min-width: 1280px) { .side-bar { display: flex; } }
.side-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); background: rgba(13, 19, 33, 0.85); border: 1px solid var(--glass-border); color: var(--text-muted); }

/* ========================================================= */
/* --- REAL BRAND COLORS WITH VIBRANT NEON GLOW ON HOVER --- */
/* ========================================================= */

/* YouTube */
.icon-yt:hover, .plat-yt:hover, .footer-yt:hover {
  background: linear-gradient(135deg, #ff0000, #cc0000) !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.7), 0 0 10px rgba(255, 0, 0, 0.4) !important;
  transform: translateY(-4px) scale(1.06) !important;
}

/* TikTok (Glitch Neon) */
.icon-tt:hover, .plat-tt:hover, .footer-tt:hover {
  background: #010101 !important;
  color: #00f2fe !important;
  border-color: #00f2fe !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.6), 0 0 15px rgba(254, 44, 85, 0.5) !important;
  text-shadow: -1px -1px 0px #fe2c55, 1px 1px 0px #00f2fe;
  transform: translateY(-4px) scale(1.06) !important;
}

/* X (Twitter) */
.icon-x:hover, .plat-x:hover, .footer-x:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-4px) scale(1.06) !important;
}

/* Instagram (Sunset Anime Gradient) */
.icon-ig:hover, .plat-ig:hover, .footer-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  border-color: #dc2743 !important;
  box-shadow: 0 0 25px rgba(220, 39, 67, 0.7), 0 0 15px rgba(240, 148, 51, 0.4) !important;
  transform: translateY(-4px) scale(1.06) !important;
}

/* Facebook (Royal Blue) */
.icon-fb:hover, .plat-fb:hover, .footer-fb:hover {
  background: linear-gradient(135deg, #1877f2, #0d65d9) !important;
  color: #ffffff !important;
  border-color: #1877f2 !important;
  box-shadow: 0 0 25px rgba(24, 119, 242, 0.7), 0 0 10px rgba(24, 119, 242, 0.4) !important;
  transform: translateY(-4px) scale(1.06) !important;
}

/* Hero Social Buttons Hover */
.social-row .social-tt:hover { background: #010101; color: #00f2fe; border-color: #00f2fe; box-shadow: 0 0 18px rgba(0, 242, 254, 0.6); transform: translateY(-3px); }
.social-row .social-x:hover { background: #ffffff; color: #000; border-color: #fff; box-shadow: 0 0 18px rgba(255, 255, 255, 0.6); transform: translateY(-3px); }
.social-row .social-ig:hover { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; border-color: #dc2743; box-shadow: 0 0 18px rgba(220, 39, 67, 0.6); transform: translateY(-3px); }
.social-row .social-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; box-shadow: 0 0 18px rgba(24, 119, 242, 0.6); transform: translateY(-3px); }

/* Hero Section */
.hero-section { padding-top: clamp(1.5rem, 4vw, 2.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.mascot-banner { margin-bottom: clamp(1.25rem, 3vw, 2rem); padding: 1rem 1.25rem; background: linear-gradient(90deg, rgba(255, 56, 56, 0.15), rgba(255, 184, 48, 0.06), transparent); border: 1px solid rgba(255, 56, 56, 0.4); border-radius: 1rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; position: relative; overflow: hidden; }
.mascot-banner::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--accent-red), var(--accent-gold)); }

.banner-tag { padding: 0.3rem 0.75rem; background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; font-weight: 900; font-size: 0.7rem; text-transform: uppercase; border-radius: 0.5rem; letter-spacing: 0.06em; }
.banner-text { font-size: clamp(0.8rem, 2vw, 0.875rem); font-weight: 600; color: #f1f5f9; }
.banner-link { font-size: clamp(0.8rem, 2vw, 0.875rem); font-weight: 900; color: var(--accent-gold); display: flex; align-items: center; gap: 0.25rem; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: stretch; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.62fr 1fr; gap: 1.5rem; } }

.video-container { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: clamp(1rem, 2.5vw, 1.35rem); overflow: hidden; background: #000; border: 1px solid rgba(255, 184, 48, 0.25); box-shadow: 0 18px 50px rgba(0,0,0,0.6); cursor: pointer; }
.video-facade-premium { position: absolute; inset: 0; background: radial-gradient(circle at center, #131d33 0%, #030712 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.4s ease; z-index: 10; }
.play-pulse-btn { width: clamp(4rem, 8vw, 5rem); height: clamp(4rem, 8vw, 5rem); border-radius: 50%; background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); color: #000; display: flex; align-items: center; justify-content: center; }

.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 5; opacity: 0; transition: opacity 0.5s ease; }
.video-loaded iframe { opacity: 1; }
.video-loaded .video-facade-premium { opacity: 0; pointer-events: none; }

.hero-sidebar { display: flex; flex-direction: column; height: 100%; }
.featured-box { padding: clamp(1.125rem, 2.5vw, 1.5rem); display: flex; flex-direction: column; justify-content: space-between; height: 100%; gap: 1rem; border-color: rgba(255, 184, 48, 0.2); }
.release-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: #ff8a8a; margin-bottom: 0.5rem; background: rgba(255, 56, 56, 0.15); padding: 0.35rem 0.875rem; border-radius: 2rem; border: 1px solid rgba(255, 56, 56, 0.4); }
.dot-red { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; }
.featured-title { font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 900; color: #fff; margin-bottom: 0.35rem; line-height: 1.25; }
.featured-desc { font-size: clamp(0.75rem, 1.8vw, 0.8125rem); color: var(--text-muted); line-height: 1.4; }

.featured-actions { display: flex; flex-direction: column; gap: 0.625rem; padding-top: 0.75rem; border-top: 1px solid var(--glass-border); }
.btn-yt { width: 100%; padding: 0.75rem; border-radius: 0.75rem; background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(153, 27, 27, 0.5)); color: #fff; font-weight: 900; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; justify-content: center; gap: 0.5rem; border: 1px solid rgba(239, 68, 68, 0.55); transition: all 0.3s; }
.btn-yt:hover { background: linear-gradient(135deg, #ef4444, #b91c1c); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5); }

.social-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.btn-social { padding: 0.55rem 0; border-radius: 0.625rem; background: rgba(255, 255, 255, 0.04); color: var(--text-muted); font-weight: 800; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); transition: all 0.3s; cursor: pointer; }

.stats-grid-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding-top: 0.75rem; border-top: 1px solid var(--glass-border); }
.stat-mini { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--glass-border); border-radius: 0.75rem; padding: 0.625rem 0.25rem; text-align: center; }
.stat-mini .stat-num { font-weight: 900; font-size: clamp(1.05rem, 2vw, 1.25rem); color: #fff; }
.stat-mini .stat-lbl { font-size: 0.6rem; color: var(--accent-gold); text-transform: uppercase; font-weight: 800; }

/* Content Library */
.section-head { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.sub-label { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-red); margin-bottom: 0.25rem; display: block; }
.section-title { font-size: clamp(1.4rem, 3.5vw, 2.25rem); line-height: 1.15; font-weight: 900; }

.head-controls { display: flex; align-items: center; gap: 0.75rem; }
.search-box input { background: rgba(0,0,0,0.5); color: #fff; font-size: 0.8125rem; border-radius: 0.75rem; padding: 0.65rem 1.1rem; border: 1px solid var(--glass-border); outline: none; width: clamp(10rem, 25vw, 15rem); }
.slider-arrows { display: flex; gap: 0.4rem; }
.arrow-btn { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: var(--glass-panel); border: 1px solid var(--glass-border); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }

.horizontal-scroll { display: flex; overflow-x: auto; gap: 1.25rem; padding-bottom: 0.85rem; scroll-behavior: smooth; scrollbar-width: none; min-height: 180px; }
.episode-card { flex: 0 0 clamp(15rem, 65vw, 19.5rem); overflow: hidden; cursor: pointer; display: flex; flex-direction: column; }
.card-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s; }
.episode-card:hover .play-overlay { opacity: 1; }
.play-circle { width: 3.25rem; height: 3.25rem; border-radius: 50%; background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); color: #000; display: flex; align-items: center; justify-content: center; }
.card-info { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid var(--glass-border); }
.card-title { font-weight: 800; font-size: 0.875rem; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.75rem; line-height: 1.4; }
.card-footer { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--accent-gold); display: flex; justify-content: space-between; }
.skeleton-card { flex: 0 0 17rem; height: 16rem; background: rgba(255,255,255,0.02); border-radius: 1.25rem; border: 1px solid var(--glass-border); }

/* Recipes Vault */
.text-center-box { text-align: center; max-width: 48rem; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.badge-fire { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.125rem; border-radius: 2rem; background: linear-gradient(135deg, rgba(255, 184, 48, 0.2), rgba(255, 56, 56, 0.15)); border: 1px solid rgba(255, 184, 48, 0.4); color: #fde047; font-weight: 900; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.timer-box { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.625rem 1.25rem; border-radius: 1rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255, 184, 48, 0.3); margin-top: 1rem; }
.timer-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--text-muted); }
.timer-clock { font-family: monospace; font-weight: 900; font-size: 1.1rem; color: var(--accent-gold); }
.suggest-btn-wrap { margin-top: 1.25rem; }
.btn-suggest { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); color: #f8fafc; font-weight: 800; font-size: 0.8125rem; padding: 0.7rem 1.35rem; border-radius: 0.75rem; cursor: pointer; transition: all 0.3s; }

.recipes-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .recipes-grid { grid-template-columns: repeat(3, 1fr); } }
.recipe-card { padding: 1.35rem; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.recipe-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.recipe-tag { display: inline-block; padding: 0.25rem 0.625rem; background: rgba(255, 184, 48, 0.12); color: var(--accent-gold); border: 1px solid rgba(255, 184, 48, 0.3); border-radius: 0.5rem; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; }
.recipe-name { font-weight: 900; font-size: 1.15rem; color: #fff; margin-bottom: 0.35rem; }
.recipe-text { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; }
.recipe-footer { padding-top: 0.85rem; border-top: 1px solid var(--glass-border); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--accent-red); display: flex; justify-content: space-between; }

/* Ingredient Items & Amazon Buy Button */
.ing-item { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0.75rem; margin-bottom: 0.4rem; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 0.625rem; font-size: 0.8125rem; color: #e2e8f0; }
.ing-link { font-size: 0.7rem; color: #030712 !important; background: linear-gradient(135deg, var(--accent-gold), #f59e0b); padding: 0.3rem 0.65rem; border-radius: 0.4rem; font-weight: 900; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.25rem; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 2px 10px rgba(255, 184, 48, 0.25); }

/* ================================================================= */
/* --- ULTIMATE NEON ANIMATIONS & ELEMENTAL GLOW FOR TOP 5 RANKS --- */
/* ================================================================= */

@keyframes gold-fire-aura {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 184, 48, 0.4), inset 0 0 15px rgba(255, 184, 48, 0.2), 0 0 35px rgba(255, 56, 56, 0.2);
    border-color: #ffb830;
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 184, 48, 0.8), inset 0 0 22px rgba(255, 184, 48, 0.4), 0 0 50px rgba(255, 56, 56, 0.45);
    border-color: #ffe066;
  }
}

@keyframes ice-blizzard-frost {
  0%, 100% {
    box-shadow: 0 0 18px rgba(0, 242, 254, 0.35), inset 0 0 12px rgba(0, 242, 254, 0.15);
    border-color: #00f2fe;
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.75), inset 0 0 18px rgba(0, 242, 254, 0.35);
    border-color: #a5f3fc;
  }
}

@keyframes magma-inferno-spark {
  0%, 100% {
    box-shadow: 0 0 18px rgba(249, 115, 22, 0.35), inset 0 0 12px rgba(249, 115, 22, 0.15);
    border-color: #f97316;
  }
  50% {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.75), inset 0 0 18px rgba(249, 115, 22, 0.35);
    border-color: #fdba74;
  }
}

@keyframes mystic-purple-aura {
  0%, 100% {
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.3), inset 0 0 10px rgba(168, 85, 247, 0.12);
    border-color: #a855f7;
  }
  50% {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.65), inset 0 0 15px rgba(168, 85, 247, 0.25);
    border-color: #d8b4fe;
  }
}

@keyframes emerald-spark-green {
  0%, 100% {
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.3), inset 0 0 10px rgba(34, 197, 94, 0.12);
    border-color: #22c55e;
  }
  50% {
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.65), inset 0 0 15px rgba(34, 197, 94, 0.25);
    border-color: #86efac;
  }
}

.milestone-box {
  background: radial-gradient(circle at top left, rgba(255, 184, 48, 0.1), rgba(10, 13, 20, 0.95));
  border: 1px solid rgba(255, 184, 48, 0.4);
  border-radius: 1.1rem;
  padding: 1.35rem;
  margin: 1.25rem 1.25rem 0.75rem 1.25rem;
  box-shadow: 0 0 25px rgba(255, 184, 48, 0.12), inset 0 0 15px rgba(0,0,0,0.5);
}
.milestone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; font-size: 0.875rem; }
.milestone-title { display: flex; align-items: center; gap: 0.5rem; color: #fff; }
.milestone-status { font-size: 0.75rem; font-weight: 800; color: var(--accent-gold); background: rgba(255, 184, 48, 0.15); padding: 2px 8px; border-radius: 10px; }
.milestone-bar-wrap { width: 100%; height: 8px; background: #000; border-radius: 10px; overflow: hidden; margin-bottom: 1rem; }
.milestone-progress { height: 100%; background: linear-gradient(90deg, var(--accent-red), var(--accent-gold)); }

.milestone-prizes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}
.prize-pill {
  background: rgba(13, 19, 33, 0.85);
  border: 1px solid var(--glass-border);
  padding: 0.65rem 0.35rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.prize-pill:hover { transform: translateY(-3px) scale(1.04); }

/* Milestone Pills Elemental Glow */
.rank-1-pill {
  border-color: #ffb830 !important;
  background: linear-gradient(135deg, rgba(255, 184, 48, 0.25), rgba(255, 56, 56, 0.15));
  animation: gold-fire-aura 3s infinite ease-in-out;
}
.rank-1-pill .pill-amount { color: #ffea79; text-shadow: 0 0 12px rgba(255, 234, 121, 0.9); }

.rank-2-pill {
  border-color: #00f2fe !important;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(15, 23, 42, 0.7));
  animation: ice-blizzard-frost 3s infinite ease-in-out;
}
.rank-2-pill .pill-amount { color: #a5f3fc; text-shadow: 0 0 12px rgba(165, 243, 252, 0.9); }

.rank-3-pill {
  border-color: #f97316 !important;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(15, 23, 42, 0.7));
  animation: magma-inferno-spark 3s infinite ease-in-out;
}
.rank-3-pill .pill-amount { color: #fdba74; text-shadow: 0 0 12px rgba(253, 186, 116, 0.9); }

.rank-4-pill {
  border-color: #a855f7 !important;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(15, 23, 42, 0.7));
  animation: mystic-purple-aura 3s infinite ease-in-out;
}
.rank-4-pill .pill-amount { color: #d8b4fe; text-shadow: 0 0 12px rgba(216, 180, 254, 0.9); }

.rank-5-pill {
  border-color: #22c55e !important;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(15, 23, 42, 0.7));
  animation: emerald-spark-green 3s infinite ease-in-out;
}
.rank-5-pill .pill-amount { color: #86efac; text-shadow: 0 0 12px rgba(134, 239, 172, 0.9); }

.pill-rank { display: block; font-size: 0.7rem; color: var(--text-muted); font-weight: 700; }
.pill-amount { display: block; font-size: 0.95rem; font-weight: 900; }
.milestone-subtext { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.85rem; line-height: 1.4; }

/* Leaderboard Rows Glow */
.badge-hall { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.125rem; border-radius: 2rem; background: linear-gradient(135deg, rgba(255, 184, 48, 0.25), rgba(245, 158, 11, 0.1)); border: 1px solid rgba(255, 184, 48, 0.5); color: #fff; font-weight: 900; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.ranking-panel { overflow: hidden; padding: 0; }
.ranking-header { padding: 1.25rem 1.5rem; background: rgba(0,0,0,0.5); border-bottom: 1px solid var(--glass-border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; }
.ranking-title-box { display: flex; align-items: center; gap: 0.75rem; }
.ranking-icon { font-size: 1.5rem; }
.ranking-title { font-weight: 900; color: #fff; font-size: 1.1rem; }
.ranking-sub { font-size: 0.75rem; color: var(--text-muted); }
.ranking-badge { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; color: #000; background: linear-gradient(135deg, var(--accent-gold), #f59e0b); padding: 0.5rem 1rem; border-radius: 0.625rem; }

.leaderboard-list { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 220px; }
.loading-state { padding: 2rem; text-align: center; color: var(--text-muted); font-size: 0.875rem; font-weight: 600; }

/* Rank Row Base & Layering */
.rank-row {
  position: relative;
  padding: 0.95rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rank-row:hover { transform: translateX(6px) scale(1.01); background: rgba(255,255,255,0.06); }

/* Decorative Background Pseudo-elements for Subtle Elemental Effects */
.rank-row::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.18;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.rank-row:hover::before { opacity: 0.35; }

.rank-left, .rank-right { position: relative; z-index: 1; }

/* Elemental Animations on Leaderboard Rows */
.rank-row.rank-1 {
  background: linear-gradient(90deg, rgba(255, 184, 48, 0.22), rgba(13, 19, 33, 0.92));
  border: 1px solid #ffb830;
  animation: gold-fire-aura 3s infinite ease-in-out;
}
.rank-row.rank-1::before {
  background: radial-gradient(circle at 10% 50%, rgba(255, 184, 48, 0.8), rgba(255, 56, 56, 0.4), transparent 70%);
}

.rank-row.rank-2 {
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.16), rgba(13, 19, 33, 0.92));
  border: 1px solid #00f2fe;
  animation: ice-blizzard-frost 3s infinite ease-in-out;
}
.rank-row.rank-2::before {
  background: radial-gradient(circle at 10% 50%, rgba(0, 242, 254, 0.8), rgba(59, 130, 246, 0.4), transparent 70%);
}

.rank-row.rank-3 {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.16), rgba(13, 19, 33, 0.92));
  border: 1px solid #f97316;
  animation: magma-inferno-spark 3s infinite ease-in-out;
}
.rank-row.rank-3::before {
  background: radial-gradient(circle at 10% 50%, rgba(249, 115, 22, 0.8), rgba(239, 68, 68, 0.4), transparent 70%);
}

.rank-row.rank-4 {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.14), rgba(13, 19, 33, 0.92));
  border: 1px solid #a855f7;
  animation: mystic-purple-aura 3s infinite ease-in-out;
}
.rank-row.rank-4::before {
  background: radial-gradient(circle at 10% 50%, rgba(168, 85, 247, 0.8), rgba(236, 72, 153, 0.4), transparent 70%);
}

.rank-row.rank-5 {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.14), rgba(13, 19, 33, 0.92));
  border: 1px solid #22c55e;
  animation: emerald-spark-green 3s infinite ease-in-out;
}
.rank-row.rank-5::before {
  background: radial-gradient(circle at 10% 50%, rgba(34, 197, 94, 0.8), rgba(20, 184, 166, 0.4), transparent 70%);
}

.rank-left { display: flex; align-items: center; gap: 0.875rem; }
.rank-pos { font-weight: 900; font-size: 1.1rem; width: 2.25rem; text-align: center; }
.rank-1 .rank-pos { color: var(--accent-gold); text-shadow: 0 0 10px var(--accent-gold); }
.rank-2 .rank-pos { color: #00f2fe; text-shadow: 0 0 10px #00f2fe; }
.rank-3 .rank-pos { color: #f97316; text-shadow: 0 0 10px #f97316; }
.rank-4 .rank-pos { color: #a855f7; text-shadow: 0 0 10px #a855f7; }
.rank-5 .rank-pos { color: #22c55e; text-shadow: 0 0 10px #22c55e; }

.rank-avatar { width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--glass-border); object-fit: cover; }
.rank-user { font-weight: 800; color: #fff; font-size: 0.9rem; }
.rank-meta { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.45rem; }
.prize-tag { font-size: 0.65rem; font-weight: 800; color: #86efac; background: rgba(134, 239, 172, 0.15); padding: 1px 6px; border-radius: 4px; }
.rank-right { text-align: right; }

/* Dynamic Glow Points (+ Green, - Red) */
.rank-pts { font-weight: 900; font-size: 1.05rem; letter-spacing: 0.5px; }
.pts-pos { color: #4ade80 !important; text-shadow: 0 0 12px rgba(74, 222, 128, 0.85); }
.pts-neg { color: #f87171 !important; text-shadow: 0 0 12px rgba(248, 113, 113, 0.85); }
.pts-zero { color: #94a3b8 !important; }
.rank-status { font-size: 0.68rem; color: var(--text-muted); font-weight: 700; }

/* Top Ramen Backers */
.donor-card-row { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1.25rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); border-radius: 0.875rem; transition: transform 0.2s; }
.donor-card-row:hover { transform: translateX(4px); background: rgba(255, 255, 255, 0.05); }
.donor-card-row.rank-1 { background: linear-gradient(90deg, rgba(255, 184, 48, 0.18), rgba(0, 0, 0, 0.5)); border-color: rgba(255, 184, 48, 0.55); box-shadow: 0 0 20px rgba(255, 184, 48, 0.15); }
.donor-card-row.rank-2 { background: linear-gradient(90deg, rgba(226, 232, 240, 0.12), rgba(0, 0, 0, 0.5)); border-color: rgba(226, 232, 240, 0.45); }
.donor-card-row.rank-3 { background: linear-gradient(90deg, rgba(249, 115, 22, 0.12), rgba(0, 0, 0, 0.5)); border-color: rgba(249, 115, 22, 0.45); }
.donor-info-left { display: flex; align-items: center; gap: 0.875rem; }
.donor-medal-badge { font-weight: 900; font-size: 1.1rem; min-width: 2.25rem; text-align: center; }
.donor-name-txt { font-weight: 800; color: #fff; font-size: 0.9rem; }
.donor-role-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-gold); }
.donor-amt-pill { font-weight: 900; font-size: 0.9375rem; color: #fff; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 184, 48, 0.4); padding: 0.35rem 0.875rem; border-radius: 2rem; }

/* VIP Alert Panel */
.vip-alert-panel { padding: clamp(1.75rem, 4vw, 3rem); text-align: center; position: relative; overflow: hidden; border-color: rgba(255, 184, 48, 0.3); }
.vip-icon { font-size: 2.75rem; margin-bottom: 0.5rem; filter: drop-shadow(0 0 18px rgba(255, 184, 48, 0.7)); }
.vip-title { font-size: clamp(1.35rem, 3.5vw, 1.95rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.vip-desc { font-size: clamp(0.8125rem, 2vw, 0.9375rem); color: var(--text-muted); max-width: 36rem; margin: 0 auto 1.5rem; line-height: 1.6; }
.vip-form { display: flex; flex-direction: column; gap: 0.625rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .vip-form { flex-direction: row; } }
.vip-form input { flex: 1; padding: 0.85rem 1.25rem; border-radius: 0.75rem; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); color: #fff; outline: none; font-size: 0.875rem; }
.btn-vip { padding: 0.85rem 1.5rem; border-radius: 0.75rem; background: linear-gradient(135deg, var(--accent-red), var(--accent-gold)); color: #000; font-weight: 900; font-size: 0.8125rem; text-transform: uppercase; border: none; cursor: pointer; transition: transform 0.2s; white-space: nowrap; }
.btn-vip:hover { transform: scale(1.04); }
.vip-feedback { margin-top: 1rem; font-weight: 800; font-size: 0.875rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
.faq-card { overflow: hidden; padding: 0; }
.faq-toggle { width: 100%; padding: 1.25rem; text-align: left; font-weight: 800; color: #fff; font-size: 0.9375rem; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-arrow { font-size: 0.75rem; color: var(--accent-gold); transition: transform 0.2s; }
.faq-content { padding: 0 1.25rem 1.25rem; color: var(--text-muted); font-size: 0.8125rem; line-height: 1.6; border-top: 1px solid var(--glass-border); padding-top: 1rem; }

/* Comments */
.comment-card { flex: 0 0 clamp(16.5rem, 70vw, 20.5rem); padding: 1.35rem; display: flex; flex-direction: column; gap: 0.75rem; }
.comment-header { display: flex; align-items: center; gap: 0.625rem; }
.comment-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--glass-border); }
.comment-user { font-weight: 800; font-size: 0.8125rem; color: #fff; }
.comment-sub { font-size: 0.65rem; color: var(--accent-gold); font-weight: 700; text-transform: uppercase; }
.comment-text { font-size: 0.8125rem; color: #cbd5e1; font-style: italic; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Contact Section */
.contact-panel { padding: clamp(1.5rem, 4vw, 3rem); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin: 0.75rem 0 1.5rem; }

.email-box { padding: 0.875rem 1rem; border-radius: 1rem; background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border); display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .email-box { flex-direction: row; align-items: center; justify-content: space-between; } }
.email-info { display: flex; align-items: center; gap: 0.75rem; }
.email-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.625rem; background: rgba(255, 184, 48, 0.1); border: 1px solid rgba(255, 184, 48, 0.2); color: var(--accent-gold); display: flex; align-items: center; justify-content: center; }
.email-lbl { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; font-weight: 800; }
.email-val { font-size: 0.9375rem; font-weight: 800; color: #fff; font-family: monospace; }
.btn-copy { padding: 0.625rem 1.25rem; border-radius: 0.625rem; background: var(--text-main); color: #000; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; }
.btn-copy:hover { background: #fff; transform: scale(1.05); }

.contact-right { background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--glass-border); text-align: center; }
.contact-right-title { font-weight: 900; font-size: 1.15rem; color: #fff; margin-bottom: 0.25rem; }
.contact-right-sub { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
@media (min-width: 640px) { .platforms-grid { grid-template-columns: repeat(6, 1fr); } }

.btn-plat {
  padding: 0.75rem 0.5rem;
  border-radius: 0.625rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.plat-yt { grid-column: span 1; }
.plat-tt { grid-column: span 1; }
.plat-x  { grid-column: span 1; }
.plat-ig { grid-column: span 1; }
.plat-fb { grid-column: span 2; }
@media (min-width: 640px) {
  .plat-yt { grid-column: span 2; }
  .plat-tt { grid-column: span 2; }
  .plat-x  { grid-column: span 2; }
  .plat-ig { grid-column: span 3; }
  .plat-fb { grid-column: span 3; }
}

/* Modals */
.modal-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-backdrop.active { opacity: 1; pointer-events: auto; }
.modal-card { padding: 1.75rem; max-width: 34rem; width: 100%; border: 1px solid rgba(255, 184, 48, 0.4); border-radius: 1.25rem; position: relative; max-height: 85vh; overflow-y: auto; background: rgba(11, 17, 30, 0.96); box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.modal-close { position: absolute; top: 1rem; right: 1rem; color: var(--text-muted); font-size: 1.5rem; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Footer */
.main-footer { border-top: 1px solid var(--glass-border); padding: 2.5rem 0; margin-top: 3rem; background: rgba(2, 4, 8, 0.98); }
.footer-content { display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 1.5rem; font-size: 0.8125rem; color: var(--text-muted); }
@media (min-width: 768px) { .footer-content { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 0.625rem; cursor: pointer; }
.footer-title { font-weight: 900; color: #fff; font-size: 1.1rem; }
.footer-socials { display: flex; align-items: center; gap: 0.625rem; }
.footer-social-btn { width: 2.5rem; height: 2.5rem; border-radius: 0.625rem; background: rgba(255,255,255,0.03); color: var(--text-muted); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

@media (max-width: 700px) {
  .milestone-prizes-grid { grid-template-columns: repeat(3, 1fr); }
}
/* --- CYBER / ANIME LOADING SPINNER & BAR --- */
.loader-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255, 184, 48, 0.15);
  border-top-color: var(--accent-gold);
  border-right-color: var(--accent-red);
  border-radius: 50%;
  animation: spin-loader 0.75s linear infinite;
  box-shadow: 0 0 20px rgba(255, 184, 48, 0.5);
}

@keyframes spin-loader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-bar-container {
  width: 140px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 12px;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  animation: fill-bar 0.6s ease-out forwards;
  box-shadow: 0 0 10px var(--accent-gold);
}

@keyframes fill-bar {
  0% { width: 0%; }
  100% { width: 100%; }
}