/* =====================================================
   BEAUTYCONTEST — Engagement-optimised stylesheet
   Psychology: dopamine loop colours, urgency badges,
   FOMO triggers, social proof signals, mobile-first
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Warm rose-gold palette — aspirational, feminine, premium */
  --bg:       #fff9f7;
  --surface:  #ffffff;
  --border:   #f0e6e2;
  --text:     #1c1410;
  --muted:    #8a7570;
  --accent:   #d4547a;   /* Rose — triggers warmth + excitement */
  --accent2:  #f0a500;   /* Gold — prize / reward association */
  --accent3:  #4a9eff;   /* Blue — trust / calm after vote action */
  --danger:   #c0392b;
  --success:  #27ae60;
  --pulse:    #ff3d6e;   /* Hot pink — vote CTA, maximum urgency */
  --radius:   14px;
  --shadow:   0 2px 20px rgba(212,84,122,0.08);
  --shadow-lg:0 8px 48px rgba(212,84,122,0.16);
}

html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 12px rgba(212,84,122,0.07);
}
.header-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 14px; height: 54px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.3rem; font-weight: 800; color: var(--accent);
  text-decoration: none; letter-spacing: -0.5px;
}
.header-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.header-nav a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem; transition: color 0.2s;
}
.header-nav a:hover { color: var(--accent); }

/* Live vote counter in header — social proof */
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff0f4; border: 1px solid #ffd0de;
  border-radius: 20px; padding: 3px 10px;
  font-size: 0.75rem; font-weight: 700; color: var(--pulse);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pulse);
  animation: pulse-dot 1.4s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff;
  border: none; padding: 8px 18px; border-radius: 20px;
  cursor: pointer; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover  { background: #c03d6a; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); padding: 6px 14px; border-radius: 20px;
  cursor: pointer; font-size: 0.82rem; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 8px 18px; border-radius: 20px;
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── STREAK BANNER — variable reward / FOMO ──────── */
.streak-bar {
  background: linear-gradient(90deg, #fff4e6, #fff9f7);
  border-bottom: 1px solid #fde8c8;
  text-align: center; padding: 7px 16px;
  font-size: 0.82rem; font-weight: 600; color: #b06000;
  letter-spacing: 0.2px;
}
.streak-bar span { color: var(--accent2); }

/* ─── VOTE ARENA ──────────────────────────────────── */
main.vote-main {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 18px 8px 48px;
}

.vote-arena {
  display: flex; align-items: flex-start; gap: 12px;
  width: 100%; max-width: 860px; justify-content: center;
}

/* Contestant card — card flip on vote for dopamine hit */
.contestant-card {
  flex: 1; min-width: 0; max-width: 390px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s;
}
.contestant-card:hover { box-shadow: var(--shadow-lg); }

.card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.nick { font-weight: 800; font-size: 0.95rem; color: var(--text); }
.fav-btn {
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--muted); transition: color 0.15s, transform 0.15s;
}
.fav-btn:hover, .fav-btn.active { color: var(--accent2); transform: scale(1.2); }

/* Win-rate badge on card — social proof */
.winrate-badge {
  font-size: 0.7rem; font-weight: 700; padding: 2px 7px;
  border-radius: 10px; background: #fff0f4; color: var(--accent);
  margin-left: 6px; vertical-align: middle;
}

/* Photo — blur-to-reveal is the core dopamine loop */
.photo-wrap {
  position: relative; width: 100%;
  aspect-ratio: 3/4; overflow: hidden;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  cursor: pointer;
}
.photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(14px) brightness(0.9);
  transform: scale(1.05);
  transition: filter 4s ease, transform 4s ease;
}
.photo-wrap img.loaded { filter: blur(0) brightness(1); transform: scale(1); }

/* Shimmer loading skeleton */
.photo-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  background-size: 200%;
  animation: shimmer 1.6s infinite;
  z-index: 1; pointer-events: none;
  opacity: 1; transition: opacity 0.5s;
}
.photo-wrap.loaded-wrap::before { opacity: 0; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.report-btn {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.38); color: #fff;
  border: none; border-radius: 6px; padding: 4px 8px;
  font-size: 0.72rem; cursor: pointer; opacity: 0.7; z-index: 2;
}
.report-btn:hover { opacity: 1; background: var(--danger); }


.view-large-btn {
  position: absolute; bottom: 150px; right: 8px;
  background: rgba(0,0,0,0.38); color: #fff;
  border: none; border-radius: 6px; padding: 4px 8px;
  font-size: 0.72rem; cursor: pointer; opacity: 0.7; z-index: 2;
}
.view-large-btn:hover { opacity: 1; background: var(--danger); }

/* VOTE BUTTON — maximum psychological weight */
.vote-btn {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--pulse), var(--accent));
  color: #fff; border: none;
  padding: 16px; font-size: 1.05rem; font-weight: 800;
  cursor: pointer; letter-spacing: 2px;
  transition: opacity 0.3s, transform 0.15s;
  opacity: 0; pointer-events: none;
  position: relative; overflow: hidden;
}
/* Ripple shimmer on button — reward anticipation */
.vote-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  background-size: 200%; animation: btn-shine 2s infinite;
}
@keyframes btn-shine { from { background-position: -200% 0; } to { background-position: 200% 0; } }
.vote-btn.visible { opacity: 1; pointer-events: auto; }
.vote-btn:hover   { transform: scaleY(1.03); }
.vote-btn:active  { transform: scaleY(0.97); }
.vote-btn:disabled { opacity: 0.35; pointer-events: none; }

/* Countdown ring overlay — builds anticipation */
.countdown-overlay {
 /* position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.82); z-index: 3;
  font-size: 2.8rem; font-weight: 900; color: var(--accent);
  transition: opacity 0.4s;*/
}
.countdown-overlay.gone { 
  
  /*opacity: 0; pointer-events: none;*/ }

.bio-text {
  font-size: 0.8rem; color: var(--muted); padding: 8px 14px;
  min-height: 28px; font-style: italic; line-height: 1.4;
}

/* ─── ADS ─────────────────────────────────────────── */
.adsense-slot {
  padding: 6px 0; text-align: center;
  background: #fdf9f8; min-height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.adsense-slot:empty::after {
  content: '[ Ad ]'; color: #ddd;
  font-size: 0.72rem;
}

/* ─── COMMENTS ────────────────────────────────────── */
.comments-wrap { border-top: 1px solid var(--border); }
.comments-scroll {
  max-height: 160px; overflow-y: auto;
  padding: 10px 14px; display: flex; flex-direction: column; gap: 7px;
  scroll-behavior: smooth;
}
.comment-item { font-size: 0.8rem; line-height: 1.4; }
.comment-nick { font-weight: 700; color: var(--accent); margin-right: 3px; }
.comment-text { color: var(--text); }
.comment-time { color: var(--muted); font-size: 0.7rem; margin-left: 4px; }
.comment-input-wrap {
  display: flex; gap: 6px; padding: 8px 12px;
  border-top: 1px solid var(--border);
}
.comment-input-wrap input {
  flex: 1; border: 1px solid var(--border); border-radius: 20px;
  padding: 6px 12px; font-size: 0.8rem; outline: none;
  background: var(--bg);
}
.comment-input-wrap input:focus { border-color: var(--accent); background: #fff; }
.comment-input-wrap button {
  background: var(--accent); color: #fff; border: none;
  border-radius: 20px; padding: 6px 14px; cursor: pointer;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}

/* ─── VS DIVIDER ──────────────────────────────────── */
.vs-divider {
  font-size: 1.6rem; font-weight: 900;
  color: var(--accent); align-self: center;
  padding: 0 2px; flex-shrink: 0;
  text-shadow: 0 0 18px rgba(212,84,122,0.35);
  animation: vs-pulse 2s infinite;
}
@keyframes vs-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* ─── VOTE CELEBRATION ────────────────────────────── */
.vote-flash {
  position: fixed; inset: 0; pointer-events: none; z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.vote-flash .emoji {
  font-size: 5rem; opacity: 0;
  animation: flash-up 0.7s ease forwards;
}
@keyframes flash-up {
  0%   { opacity: 0; transform: scale(0.3) translateY(40px); }
  50%  { opacity: 1; transform: scale(1.2) translateY(-10px); }
  100% { opacity: 0; transform: scale(1) translateY(-60px); }
}

/* ─── BOTTOM ACTIONS ──────────────────────────────── */
.bottom-actions {
  display: flex; gap: 10px; margin-top: 20px;
  flex-wrap: wrap; justify-content: center;
}
.donate-btn { border-color: #c48; color: #c48; }
.donate-btn:hover { background: #c48; color: #fff; }

/* ─── SCORE TICKER ────────────────────────────────── */
.score-ticker {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 20px;
  margin-top: 16px; width: 100%; max-width: 860px;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.ticker-item { text-align: center; }
.ticker-num { font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.ticker-label { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }

/* ─── LIGHTBOX ────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 70vh;
  border-radius: 10px; object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 1.4rem; cursor: pointer;
  border-radius: 50%; width: 42px; height: 42px;
}
.lightbox-ad { margin-top: 14px; min-height: 60px; }

/* ─── MODALS ──────────────────────────────────────── */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 300;
  align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-box {
  background: var(--surface); border-radius: var(--radius);
  padding: 26px; max-width: 560px; width: 94%;
  max-height: 82vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--muted);
}
.modal-box h2 { margin-bottom: 16px; font-size: 1.1rem; }

/* ─── VOTE HISTORY PAIRS ─────────────────────────── */
.vote-pair { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.vote-pair img { width: 60px; height: 76px; object-fit: cover; border-radius: 8px; }
.vote-pair .winner-img { border: 2px solid var(--success); }
.vote-pair .loser-img  { opacity: 0.5; filter: grayscale(40%); }
.vote-winner-nick { font-weight: 700; color: var(--success); font-size: 0.83rem; }
.vote-loser-nick  { color: var(--muted); font-size: 0.83rem; }
.vote-pair-label  { font-size: 0.72rem; color: var(--muted); }

/* ─── FAVORITES ───────────────────────────────────── */
.fav-item { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); cursor: pointer; border-radius: 8px; transition: background 0.15s; }
.fav-item:hover { background: #fdf5f7; }
.fav-item img { width: 52px; height: 66px; object-fit: cover; border-radius: 6px; }
.fav-item-nick { font-weight: 700; font-size: 0.88rem; }

/* ─── LEADERBOARD / LIST PAGES ──────────────────── */
.page-wrap { max-width: 800px; margin: 28px auto; padding: 0 16px; }
.page-wrap h1 { font-size: 1.5rem; margin-bottom: 6px; }
.page-wrap p  { color: var(--muted); margin-bottom: 20px; font-size: 0.88rem; }

table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: 0.88rem; }
thead { background: linear-gradient(135deg, var(--accent), #c03d6a); color: #fff; }
th  { padding: 11px 13px; text-align: left; font-weight: 700; }
td  { padding: 10px 13px; border-bottom: 1px solid var(--border); }
tr:last-child td { border: none; }
tr:hover td { background: #fff5f7; cursor: pointer; }

.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--border); font-weight: 800; font-size: 0.78rem; }
.rank-badge.gold   { background: linear-gradient(135deg, #f9c828, #e6a817); color: #333; }
.rank-badge.silver { background: linear-gradient(135deg, #d0d0d0, #a8a8a8); color: #333; }
.rank-badge.bronze { background: linear-gradient(135deg, #cd8b3e, #a0622a); color: #fff; }
.thumb-sm { width: 42px; height: 54px; object-fit: cover; border-radius: 5px; }

/* ─── FORMS ───────────────────────────────────────── */
.form-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; max-width: 520px; margin: 28px auto; }
.form-card h2 { margin-bottom: 22px; font-size: 1.3rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 5px; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 10px 13px; font-size: 0.92rem; outline: none;
  background: var(--bg); transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); background: #fff; }
.form-group small { font-size: 0.75rem; color: var(--muted); margin-top: 3px; display: block; }
.form-submit {
  background: linear-gradient(135deg, var(--accent), #c03d6a);
  color: #fff; border: none; width: 100%; padding: 13px;
  border-radius: 8px; font-size: 1rem; cursor: pointer;
  font-weight: 800; letter-spacing: 0.4px;
  transition: opacity 0.2s, transform 0.1s;
}
.form-submit:hover  { opacity: 0.92; transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.alert { padding: 11px 15px; border-radius: 8px; font-size: 0.86rem; margin-bottom: 14px; }
.alert-success { background: #d5f0de; color: #1a6b30; }
.alert-error   { background: #fde8e8; color: #8b1a1a; }

/* Photo upload */
.photo-upload-label {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed var(--border); border-radius: 8px; height: 150px;
  cursor: pointer; transition: border-color 0.2s; background: var(--bg);
}
.photo-upload-label:hover { border-color: var(--accent); }
.photo-upload-label span  { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
#photo-preview { max-width: 100%; max-height: 150px; border-radius: 6px; display: none; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 14px; text-align: center;
  font-size: 0.78rem; color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: none; margin: 0 4px; }
.site-footer a:hover { color: var(--accent); }

/* ─── ADMIN ───────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 210px; background: #1c1018; padding: 22px 0; flex-shrink: 0; }
.admin-sidebar .logo { display: block; color: var(--accent); font-size: 1rem; font-weight: 800; padding: 0 18px 20px; text-decoration: none; }
.admin-sidebar a { display: block; color: #c0b5b8; padding: 9px 18px; text-decoration: none; font-size: 0.85rem; transition: background 0.15s, color 0.15s; }
.admin-sidebar a:hover,
.admin-sidebar a.active { background: rgba(212,84,122,0.15); color: var(--accent); }
.admin-content { flex: 1; padding: 28px 24px; overflow-y: auto; background: var(--bg); }
.admin-content h1 { font-size: 1.3rem; margin-bottom: 22px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-bottom: 28px; }
.stat-card { background: var(--surface); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); text-align: center; }
.stat-num   { font-size: 1.9rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
.admin-table-wrap { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-table-wrap table { font-size: 0.82rem; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; }
.badge-green  { background: #d5f0de; color: #1a6b30; }
.badge-red    { background: #fde8e8; color: #8b1a1a; }
.badge-orange { background: #fef3e0; color: #8b4f00; }
.act-btn   { padding: 4px 9px; border-radius: 5px; border: none; cursor: pointer; font-size: 0.76rem; margin-right: 3px; }
.act-danger { background: var(--danger); color: #fff; }
.act-safe   { background: var(--success); color: #fff; }
.act-muted  { background: var(--border); color: var(--text); }
.settings-form { max-width: 580px; }
.search-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.search-bar input { flex: 1; border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 13px; font-size: 0.88rem; outline: none; }
.search-bar input:focus { border-color: var(--accent); }
.search-bar button { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 8px 16px; cursor: pointer; font-size: 0.85rem; font-weight: 700; }

/* ─── PROFILE ─────────────────────────────────────── */
.profile-wrap { max-width: 480px; margin: 28px auto; padding: 0 14px; }
.profile-header { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px; }
.profile-photo { width: 100%; max-height: 340px; object-fit: cover; }
.profile-info { padding: 18px 22px; }
.profile-info h2 { font-size: 1.2rem; margin-bottom: 4px; }
.profile-stats { display: flex; gap: 22px; margin: 10px 0; }
.stat-item .num { font-size: 1.3rem; font-weight: 900; color: var(--accent); }
.stat-item .lbl { font-size: 0.74rem; color: var(--muted); }
.profile-bio    { font-style: italic; color: var(--muted); font-size: 0.87rem; margin-top: 8px; }
.share-section  { display: flex; gap: 9px; margin-top: 12px; flex-wrap: wrap; }

/* ─── WINNERS ─────────────────────────────────────── */
.winners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; margin-top: 22px; }
.winner-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; text-align: center; padding-bottom: 16px; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; }
.winner-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.winner-card img  { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.winner-name  { font-weight: 800; margin: 10px 8px 4px; font-size: 0.92rem; }
.winner-prize { font-size: 0.78rem; color: var(--accent); }

/* ─── PAGINATION ──────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.pagination a, .pagination span { padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; text-decoration: none; color: var(--muted); border: 1px solid var(--border); }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination span.current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #1c1410; color: #fff; padding: 10px 22px;
  border-radius: 22px; font-size: 0.86rem; z-index: 9999;
  pointer-events: none; transition: opacity 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 600px) {
  .vote-arena  { gap: 8px; }
  .vs-divider  { font-size: 1.2rem; }
  .header-nav  { gap: 6px; }
  .photo-wrap  { aspect-ratio: 1/1.15; }
  .admin-wrap  { flex-direction: column; }
  .admin-sidebar { width: 100%; padding: 10px 0; }
  .comment-input-wrap { padding: 7px 10px; }
  .vote-btn    { font-size: 0.95rem; padding: 14px; }
  .score-ticker { padding: 10px 12px; gap: 8px; }
}
