/* ════════════════════════════════════
   podpora.html — Voting · Reviews · Donate
   Fully responsive
════════════════════════════════════ */

.page-header { padding: 130px 60px 60px; }

/* ════════════════════════════════════
   TAB NAV (sticky)
════════════════════════════════════ */
.page-tabs {
  position: sticky;
  top: 68px;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  background: rgba(6,9,14,0.85);
  backdrop-filter: blur(14px);
}
.page-tabs-inner {
  display: flex;
  gap: 0;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs-inner::-webkit-scrollbar { display: none; }

.ptab {
  padding: 18px 28px;
  font-size: var(--fs-paragraph-sm); font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: auto;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  transition: all .2s;
  border-bottom: 2px solid transparent;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ptab:hover { color: var(--text); }
.ptab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.ptab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-family: inherit;
  font-size: var(--fs-paragraph);
  line-height: 1;
}

/* TAB SECTIONS */
.tab-section {
  display: none;
  position: relative; z-index: 2;
}
.tab-section.active { display: block; }

/* ════════════════════════════════════
   HLASOVÁNÍ
════════════════════════════════════ */
.vote-section { padding: 60px 60px 80px; }

.vote-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.vh-eye {
  font-size: var(--fs-meta); font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.vh-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.vh-title span { color: var(--gold); }
.vh-sub {
  font-size: var(--fs-paragraph);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.vh-rewards {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.reward-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--fs-meta);
  font-weight: 700;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.22);
  color: var(--gold);
}

/* Nick wrap */
.nick-wrap { margin-top: 28px; }
.nick-label {
  font-size: var(--fs-meta-lg);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.nick-row {
  display: flex; gap: 10px;
  background: var(--sky2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  transition: border-color .2s;
}
.nick-row:focus-within {
  border-color: var(--border2);
}
.nick-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 11px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-paragraph);
  cursor: auto;
  min-width: 0;
}
.nick-input:focus { outline: none; }
.nick-input::placeholder { color: var(--muted); }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.nick-input.shake { animation: shake .4s ease; }

.nick-save {
  background: var(--gold);
  color: #060D14;
  border: none;
  padding: 11px 22px;
  border-radius: 9px;
  font-weight: 700;
  font-size: var(--fs-body-lg);
  cursor: auto;
  font-family: 'Outfit', sans-serif;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nick-save:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}
.nick-save.pulse { animation: pulseBtn .7s ease; }

.nick-saved {
  font-size: var(--fs-body-lg);
  color: var(--green);
  margin-top: 10px;
  display: none;
}
@keyframes flashIn {
  0%   { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.nick-saved.flash { animation: flashIn .3s ease; }

/* ════════════════════════════════════
   AVATAR PREVIEW (vote-illus)
════════════════════════════════════ */
.vote-illus-wrap {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vi-avatar-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: var(--sky2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s;
}

.vi-avatar-frame.saved {
  border-color: rgba(86,207,106,0.45);
  box-shadow: 0 0 40px rgba(86,207,106,0.15),
              0 8px 30px rgba(0,0,0,0.4);
}

.vi-frame-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.vi-frame-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center,
    rgba(245,166,35,0.18) 0%,
    rgba(245,166,35,0.05) 40%,
    transparent 70%);
  pointer-events: none;
  transition: background .4s;
  animation: viGlowPulse 4s ease-in-out infinite;
}
@keyframes viGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.vi-avatar-frame.saved .vi-frame-glow {
  background: radial-gradient(circle at center,
    rgba(86,207,106,0.18) 0%,
    rgba(86,207,106,0.05) 40%,
    transparent 70%);
}

/* The avatar image (Minotar 180px head) */
.vi-avatar {
  position: relative; z-index: 2;
  width: 60%;
  height: 60%;
  object-fit: contain;
  image-rendering: pixelated;
  border-radius: 14px;
  filter: drop-shadow(0 0 24px rgba(245,166,35,0.35))
          drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  animation: viFloat 4s ease-in-out infinite;
}
@keyframes viFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.vi-avatar-frame.saved .vi-avatar {
  filter: drop-shadow(0 0 24px rgba(86,207,106,0.35))
          drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}

/* Checkmark overlay (only visible when saved) */
.vi-checkmark {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(86,207,106,0.5);
  transform: scale(0);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vi-checkmark svg {
  width: 22px; height: 22px;
}
.vi-avatar-frame.saved .vi-checkmark {
  transform: scale(1);
}

/* Placeholder (when no nick) */
.vi-placeholder {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: var(--muted);
}
.vi-placeholder-head {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-display-md);
  color: var(--muted2);
  letter-spacing: 0;
}
.vi-placeholder-text {
  font-size: var(--fs-meta-lg);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Meta info under avatar */
.vi-meta {
  text-align: center;
}
.vi-nick {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h3-sm);
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  word-break: break-word;
}
.vi-avatar-frame.saved + .vi-meta .vi-nick {
  color: var(--green);
}
.vi-status {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════
   VOTE SITES
════════════════════════════════════ */
.vote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.vote-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all .35s;
  position: relative; overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.vote-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04), transparent);
  opacity: 0; transition: opacity .3s;
}
.vote-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4),
              0 0 30px rgba(245,166,35,0.07);
}
.vote-card:hover::before { opacity: 1; }
.vote-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px;
}
.vote-info { flex: 1; min-width: 0; }
.vote-site-name {
  font-size: var(--fs-subheading);
  font-weight: 700;
  margin-bottom: 3px;
}
.vote-site-desc {
  font-size: var(--fs-paragraph);
  color: var(--muted);
}
.vote-arrow {
  font-size: var(--fs-subheading);
  color: var(--muted);
  transition: all .25s;
  flex-shrink: 0;
}
.vote-card:hover .vote-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ════════════════════════════════════
   RECENZE
════════════════════════════════════ */
.reviews-section { padding: 60px 60px 80px; }

.rev-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.rev-header-left .sec-eye {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.rev-header-left .sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
}
.rev-header-left .sec-title span { color: var(--gold); }

.rev-header-right {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.rev-stars-summary {
  text-align: right;
}
.rev-big-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-64);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px var(--gold-glow);
}
.rev-stars-row {
  font-size: var(--fs-h5);
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: var(--gold);
}
.rev-count {
  font-size: var(--fs-body-lg);
  color: var(--muted);
}

.write-review-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: var(--fs-body);
  text-decoration: none;
  transition: all .25s;
  cursor: auto;
}
.write-review-btn:hover {
  background: rgba(245,166,35,0.22);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* Review modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.review-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 14, 0.74);
  backdrop-filter: blur(6px);
}
.review-modal-card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  background: linear-gradient(180deg, rgba(15,21,32,0.98), rgba(10,15,22,0.98));
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 30px rgba(245,166,35,0.08);
}
.review-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-paragraph);
  cursor: auto;
  transition: all .2s;
}
.review-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.review-modal-eye {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.review-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 12px;
}
.review-modal-title span { color: var(--gold); }
.review-modal-sub {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-modal-links {
  display: grid;
  gap: 10px;
}
.review-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--sky2);
  transition: all .2s;
}
.review-link:hover {
  border-color: var(--border2);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.review-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.24);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-paragraph);
  flex-shrink: 0;
}
.review-link-text {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  letter-spacing: .2px;
}
.review-link-ext {
  margin-left: auto;
  color: var(--muted);
  font-size: var(--fs-paragraph);
}
body.modal-open {
  overflow: hidden;
}

/* Featured review */
.featured-review {
  background: var(--sky2);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.featured-review::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.07), transparent 65%);
  pointer-events: none;
}
.featured-review:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.fr-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.fr-avatar {
  width: 52px; height: 52px;
  border-radius: 12px;
  image-rendering: pixelated;
  border: 2px solid rgba(255,255,255,0.08);
}
.fr-name {
  font-size: var(--fs-subheading);
  font-weight: 700;
}
.fr-stars {
  color: var(--gold);
  font-size: var(--fs-paragraph);
  letter-spacing: 2px;
  margin-top: 2px;
}
.fr-badge {
  margin-left: auto;
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.fr-quote {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.8;

}
.fr-quote::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-deco-70);
  color: rgba(245,166,35,0.1);
  line-height: 0;
  vertical-align: -32px;
  margin-right: 4px;
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.review-card {
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  transition: all .3s;
}
.review-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.rc-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.rc-avatar {
  width: 40px; height: 40px;
  border-radius: 9px;
  image-rendering: pixelated;
  border: 1px solid rgba(255,255,255,0.07);
}
.rc-name {
  font-size: var(--fs-subheading);
  font-weight: 700;
}
.rc-stars {
  color: var(--gold);
  font-size: var(--fs-body-lg);
  letter-spacing: 1px;
}
.rc-text {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Review nav */
.rev-nav {
  display: flex; align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.rev-dots {
  display: flex; align-items: center; gap: 8px;
}
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: auto;
  transition: all .2s;
  border: none;
  padding: 0;
}
.rev-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  width: 24px;
  border-radius: 4px;
}
.rev-arrows {
  display: flex; gap: 10px;
  margin-left: 20px;
}
.rev-arr {
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-paragraph);
  cursor: auto;
  transition: all .2s;
}
.rev-arr:hover {
  border-color: var(--border2);
  color: var(--gold);
}

/* ════════════════════════════════════
   DONATE
════════════════════════════════════ */
.donate-section { padding: 60px 60px 80px; }
.donate-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.don-eye {
  font-size: var(--fs-badge);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.don-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
.don-title span { color: var(--gold); }
.don-sub {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-donate {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.wd-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--sky2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px 18px;
  transition: all .25s;
}
.wd-item:hover {
  border-color: var(--border2);
  background: var(--sky3);
}
.wd-icon {
  font-size: var(--fs-h5);
  min-width: 32px;
  text-align: center;
  margin-top: 1px;
  color: var(--gold);
}
.wd-title {
  font-size: var(--fs-paragraph);
  font-weight: 700;
  margin-bottom: 3px;
}
.wd-desc {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.5;
}

.donate-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold);
  color: #060D14;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: var(--fs-body-lg);
  text-decoration: none;
  box-shadow: 0 0 36px rgba(245,166,35,0.32),
              0 4px 18px rgba(0,0,0,0.3);
  transition: all .25s;
  position: relative; overflow: hidden;
}
.donate-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.donate-btn:hover::before {
  transform: translateX(100%);
}
.donate-btn:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 8px 48px rgba(245,166,35,0.55);
}

/* Donate info card */
.donate-info {
  background: var(--sky2);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 140px;
}
.di-img {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: -12px;
}
.di-img img {
  width: min(100%, 300px);
  display: block;
  transform: translateY(-34px);
  transform-origin: top center;
}
.di-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(10,15,22,1) 0%,
    rgba(10,15,22,0.4) 60%,
    transparent 100%);
  pointer-events: none;
}
.di-body { padding: 22px; }
.di-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-h5);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.di-title span { color: var(--gold); }
.di-rules {
  display: flex; flex-direction: column;
  gap: 10px;
}
.di-rule {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--fs-meta-lg);
}
.di-rule-icon {
  font-size: var(--fs-body-lg);
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}
.di-rule-text {
  color: var(--muted);
  line-height: 1.5;
}
.di-rule-text strong { color: var(--text); }
.di-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--sky3);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  font-size: var(--fs-meta-lg);
  color: var(--muted);
  line-height: 1.6;
}
.di-note strong { color: var(--gold); }

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-header { padding: 130px 40px 50px; }
  .page-tabs-inner { padding: 0 40px; }
  .ptab { padding: 16px 22px; font-size: var(--fs-caption); }

  .vote-section,
  .reviews-section,
  .donate-section {
    padding: 50px 40px 70px;
  }

  .vote-hero {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
  .vi-avatar-frame { max-width: 260px; }

  .vote-grid {
    gap: 12px;
  }

  /* Reviews grid 3 → 2 cols */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-wrap {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* HEADER */
  .page-header { padding: 90px 20px 36px; }

  /* TABS — sticky under nav (60px) */
  .page-tabs {
    top: 60px;
  }
  .page-tabs-inner {
    padding: 0 20px;
    gap: 4px;
  }
  .ptab {
    padding: 14px 14px;
    font-size: var(--fs-badge);
    gap: 6px;
  }
  .ptab-num { font-size: var(--fs-meta-lg); }

  /* SECTIONS */
  .vote-section,
  .reviews-section,
  .donate-section {
    padding: 40px 20px 60px;
  }

  /* VOTE — stack, avatar above text */
  .vote-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .vh-text { order: 2; }
  .vote-illus-wrap {
    order: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
  }
  .vi-avatar-frame {
    width: 130px;
    max-width: 130px;
    border-radius: 18px;
  }
  .vi-checkmark {
    width: 28px; height: 28px;
    bottom: 8px; right: 8px;
  }
  .vi-checkmark svg { width: 16px; height: 16px; }
  .vi-placeholder-head {
    width: 52px; height: 52px;
    font-size: var(--fs-h2-sm);
  }
  .vi-placeholder-text {
    font-size: var(--fs-badge-sm);
  }
  .vi-meta {
    text-align: left;
    flex: 1;
    min-width: 0;
  }
  .vi-nick { font-size: var(--fs-paragraph); }
  .vi-status { font-size: var(--fs-meta); }

  .vh-title {
    font-size: clamp(32px, 9vw, 48px);
  }
  .vh-sub {
    font-size: var(--fs-body-lg);
  }
  .reward-pill {
    font-size: var(--fs-badge);
    padding: 6px 12px;
  }

  .nick-row {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }
  .nick-input {
    width: 100%;
    padding: 12px 14px;
  }
  .nick-save {
    width: 100%;
    padding: 12px;
  }

  /* Vote grid — stack */
  .vote-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vote-card {
    padding: 18px;
    gap: 14px;
  }
  .vote-logo { width: 42px; height: 42px; }

  /* REVIEWS */
  .rev-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .rev-header-right {
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .rev-stars-summary { text-align: left; }
  .rev-big-score { font-size: var(--fs-display-xxl); }
  .rev-stars-row { font-size: var(--fs-paragraph); }
  .rev-count { font-size: var(--fs-caption); }
  .write-review-btn {
    align-self: flex-end;
    font-size: var(--fs-caption);
    padding: 10px 16px;
  }

  .review-modal-card {
    width: min(560px, calc(100vw - 22px));
    padding: 22px 16px 16px;
  }
  .review-modal-title {
    font-size: var(--fs-h2-lg);
  }

  .featured-review {
    padding: 24px 22px;
    margin-bottom: 18px;
  }
  .fr-top { gap: 12px; margin-bottom: 14px; }
  .fr-avatar { width: 44px; height: 44px; }
  .fr-badge {
    font-size: var(--fs-badge-sm);
    padding: 3px 9px;
  }
  .fr-quote {
    font-size: var(--fs-body-lg);
    line-height: 1.7;
  }
  .fr-quote::before {
    font-size: var(--fs-display-hero-sm);
    vertical-align: -22px;
  }

  /* Reviews grid — stack */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-card { padding: 18px; }

  .rev-nav {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .rev-arrows { margin-left: 0; }

  /* DONATE — stack */
  .donate-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .donate-info {
    position: static;
    top: auto;
  }
  .donate-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    cursor: auto;
  }

  /* FOOTER */
  footer {
    padding: 22px 20px;
    font-size: var(--fs-caption);
    line-height: 1.7;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤380px)
════════════════════════════════════ */
@media (max-width: 380px) {
  .ph-title { font-size: var(--fs-display-lg) !important; }

  /* Tabs: hide labels, show only nums + emoji */
  .ptab {
    padding: 12px 10px;
    font-size: var(--fs-badge-sm);
    flex-direction: column;
    gap: 4px;
  }
  .ptab-num { font-size: var(--fs-caption); }

  /* Vote-illus wrap stacks vertically again */
  .vote-illus-wrap {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .vi-avatar-frame { width: 140px; max-width: 140px; }
  .vi-meta { text-align: center; }

  .vh-title { font-size: var(--fs-h2); }
  .vh-sub { font-size: var(--fs-meta); }
  .reward-pill { font-size: var(--fs-badge-sm); padding: 5px 10px; }

  .vote-card { padding: 16px; }
  .vote-site-name { font-size: var(--fs-meta-lg); }

  .review-card { padding: 16px; }
  .featured-review { padding: 22px 18px; }

  .di-body { padding: 18px; }
}

.vi-avatar-frame.shake {
  animation: shake .45s ease;
}
 
/* Warning state for status text */
.vi-status.warn {
  color: var(--gold);
  font-weight: 700;
  animation: warnPulse 1s ease-in-out infinite;
}
@keyframes warnPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

