/* ============================================
   manixpcshot — SYNTHWAVE NEON THEME
   ============================================ */

:root {
  --bg-deep: #0a0015;
  --bg-mid: #1a0033;
  --bg-panel: rgba(10, 0, 21, 0.72);
  --neon-pink: #ff006e;
  --neon-purple: #b5179e;
  --neon-cyan: #00f5ff;
  --neon-blue: #3a86ff;
  --neon-yellow: #ffbe0b;
  --neon-green: #41ff9d;
  --text: #ffffff;
  --text-dim: #d8c8ff;
  --text-muted: #9c8abb;
  --border: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(0, 245, 255, 0.5);
  --card-bg: rgba(20, 8, 42, 0.66);
  --radius: 8px;
  --radius-lg: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--neon-yellow);
  color: #19001f;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* ===== SYNTHWAVE BACKGROUND ===== */
.bg-synth {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Sun */
.bg-synth::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffbe0b 0%, #ff006e 50%, #b5179e 100%);
  filter: blur(80px);
  opacity: 0.34;
  animation: sunPulse 8s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.6; }
}

/* Grid floor */
.bg-grid {
  position: fixed;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 60vh;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  animation: gridScroll 3s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridScroll {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}

/* Mountains */
.bg-mountains {
  position: fixed;
  bottom: 20vh;
  left: 0;
  right: 0;
  height: 100px;
  background:
    linear-gradient(135deg, transparent 40%, var(--bg-mid) 41%, var(--bg-mid) 60%, transparent 61%),
    linear-gradient(225deg, transparent 40%, var(--bg-mid) 41%, var(--bg-mid) 60%, transparent 61%);
  background-size: 200px 100px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Stars */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px #fff, 0 0 8px rgba(255, 255, 255, 0.5);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ===== LAYOUT ===== */
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), 0 0 30px rgba(255, 0, 110, 0.12);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink), inset 0 0 10px rgba(255, 0, 110, 0.3);
  transition: all 0.4s ease;
}

.logo-img:hover {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 0 35px var(--neon-pink);
}

.site-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  text-shadow:
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-purple);
  animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 100% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-purple); }
  50% { text-shadow: 0 0 5px var(--neon-pink), 0 0 15px var(--neon-pink), 0 0 30px var(--neon-purple); }
}

.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 10px 22px;
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.nav-links .btn-donate {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.nav-links .btn-donate:hover {
  box-shadow: 0 0 30px var(--neon-pink), 0 0 60px rgba(255, 0, 110, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-shadow: none;
  border-color: var(--neon-pink);
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  text-align: right;
  padding: 44px 20px 50px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-content {
  max-width: 720px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 100px;
  color: var(--neon-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 10px var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), inset 0 0 20px rgba(0, 245, 255, 0.1);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), inset 0 0 20px rgba(0, 245, 255, 0.1); }
  50% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.5), inset 0 0 30px rgba(0, 245, 255, 0.2); }
}

.hero h1 {
  font-size: 5.6rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.3));
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 660px;
  margin: 0;
}

.hero p strong {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.primary-action {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow: 0 0 24px rgba(255, 0, 110, 0.32);
}

.secondary-action {
  border: 1px solid rgba(0, 245, 255, 0.45);
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 245, 255, 0.18);
}

.hero-panel {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.12), transparent 45%),
    rgba(10, 0, 21, 0.72);
  box-shadow: inset 0 0 34px rgba(0, 245, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.42);
}

.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--neon-yellow);
  direction: ltr;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.hero-panel p {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neon-pink);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 8px var(--neon-pink);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}

/* ===== NEON CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  min-height: 290px;
}

.card:nth-child(1) { animation-delay: 0.3s; }
.card:nth-child(2) { animation-delay: 0.45s; }
.card:nth-child(3) { animation-delay: 0.6s; }

/* Animated border */
.card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 400% 400%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  animation: gradientMove 3s linear infinite;
}

.card:hover::before { opacity: 1; }

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  background: rgba(26, 0, 51, 0.8);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.card:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 4px;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.card-icon.rubika {
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
}

.card-icon.youtube {
  background: linear-gradient(135deg, #dc2626, var(--neon-pink));
  box-shadow: 0 0 25px rgba(255, 0, 110, 0.5);
}

.card-icon.aparat {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  box-shadow: 0 0 25px rgba(181, 23, 158, 0.5);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0;
}

.card-desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 18px;
  min-height: 48px;
}

.card-handle {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  direction: ltr;
  font-family: 'Cascadia Code', 'Consolas', monospace;
  margin-bottom: 18px;
  text-shadow: 0 0 6px var(--neon-cyan);
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-pink);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 0.3s;
}

.card:hover .card-btn {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  gap: 14px;
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 60px;
}

.feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px var(--neon-pink));
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== DONATE PAGE ===== */
.donate-hero {
  text-align: center;
  padding: 40px 20px 28px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.donate-hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.4));
}

.donate-hero p {
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Donate Links Display */
.donate-section {
  max-width: 760px;
  margin: 40px auto 60px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.donate-card {
  background:
    linear-gradient(135deg, rgba(255, 190, 11, 0.08), transparent 35%),
    var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.donate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  to { left: 100%; }
}

.donate-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.donate-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.donate-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.donate-card-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.donate-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.donate-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(10, 0, 21, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  overflow: hidden;
}

.donate-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-pink), var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.donate-link-item:hover {
  border-color: var(--neon-cyan);
  transform: translateX(-6px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
  background: rgba(26, 0, 51, 0.6);
}

.donate-link-item:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 4px;
}

.donate-link-item:hover::before { opacity: 1; }

.dli-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.dli-icon.reymit { background: linear-gradient(135deg, #ff006e, #b5179e); }
.dli-icon.donofa { background: linear-gradient(135deg, #ffbe0b, #ff006e); }
.dli-icon.coffeete { background: linear-gradient(135deg, #00f5ff, #3a86ff); }

.dli-info {
  display: block;
  flex: 1;
  min-width: 0;
}

.dli-name {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.dli-url {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  direction: ltr;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Cascadia Code', 'Consolas', monospace;
}

.dli-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.donate-link-item:hover .dli-btn {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--neon-pink), 0 0 50px rgba(255, 0, 110, 0.3);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

/* ===== HOW TO EDIT BOX ===== */
.info-box {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: rgba(0, 245, 255, 0.05);
  border: 1px dashed var(--neon-cyan);
  border-radius: var(--radius);
  color: var(--neon-cyan);
  font-size: 0.88rem;
  text-align: center;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-box strong {
  color: #fff;
  text-shadow: 0 0 6px var(--neon-cyan);
}

.info-box code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--neon-pink);
  font-family: 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.footer strong { color: var(--neon-cyan); }

.footer-heart {
  color: var(--neon-pink);
  display: inline-block;
  text-shadow: 0 0 10px var(--neon-pink);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
  border-radius: 4px;
  box-shadow: 0 0 10px var(--neon-pink);
}

::selection {
  background: var(--neon-pink);
  color: #fff;
  text-shadow: 0 0 5px #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container { padding: 16px; }
  .header {
    flex-direction: column;
    gap: 14px;
    padding: 14px;
  }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .nav-links a { padding: 8px 14px; font-size: 0.82rem; }
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 4px 38px;
    text-align: center;
  }
  .hero-content,
  .hero p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-panel {
    grid-template-columns: 72px 1fr;
    min-height: auto;
    padding: 18px;
    text-align: right;
  }
  .hero-avatar {
    width: 72px;
    height: 72px;
  }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .features { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2rem; }
  .donate-hero h1 { font-size: 2.65rem; }
  .donate-card { padding: 22px 18px; }
  .donate-link-item {
    flex-wrap: wrap;
    gap: 12px;
  }
  .dli-btn { width: 100%; text-align: center; }
}

@media (max-width: 430px) {
  .site-name { font-size: 1.22rem; }
  .logo-img { width: 44px; height: 44px; }
  .hero h1 { font-size: 2.45rem; }
  .hero-badge { font-size: 0.72rem; padding: 8px 12px; }
  .hero-panel { grid-template-columns: 1fr; text-align: center; }
  .hero-avatar { margin: 0 auto; }
  .features { grid-template-columns: 1fr; }
  .primary-action,
  .secondary-action { width: 100%; }
  .card { min-height: auto; padding: 24px 20px; }
  .donate-card-header { flex-direction: column; align-items: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1s !important;
  }
}
