/* ===== Sport Q&A theme redesign ===== */
:root {
  --color-primary:   #16c784;  /* sport green: active UI, accents, focus */
  --color-header:    #07111f;  /* stadium navy: header, footer, strong headings */
  --color-link:      #0b6b47;  /* links and clickable text */
  --color-text:      #1c2530;  /* main text */
  --color-bg:        #f3f6f1;  /* clean arena background */
  --color-accent:    #ff6b1a;  /* energetic CTA orange */
  --color-offer-btn: #ff6b1a;  /* offer buttons */
  --color-nick:      #0b7a3b;  /* user nicknames */
  --color-answers:   #168a45;  /* answers counter */

  --color-surface:   #ffffff;
  --color-surface-2: #f8fbf6;
  --color-border:    #d7e2d7;
  --color-muted:     #627066;
  --color-success:   #16c784;
  --color-warning:   #ffb21a;
  --color-error:     #d63b2f;
  --shadow-sm:       0 4px 14px rgba(7, 17, 31, .07);
  --shadow-md:       0 12px 30px rgba(7, 17, 31, .12);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { touch-action: manipulation; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(22,199,132,.10), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(255,107,26,.10), transparent 28%),
    linear-gradient(180deg, #f9fbf7 0%, var(--color-bg) 48%, #edf3ea 100%);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
  min-height: 100vh;
}
a { color: var(--color-link); text-decoration: none; transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
a:hover { color: var(--color-accent); text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(22,199,132,.22); color: var(--color-header); }

/* ===== Layout ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 30px; padding: 30px 0; align-items: start; }
.main-col, .side-col, .layout > aside { min-width: 0; }
@media (max-width: 700px) {
  .container { padding: 0 14px; }
  .layout { grid-template-columns: 1fr; gap: 22px; padding: 22px 0; }
}

/* ===== Header ===== */
.site-header {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,199,132,.18), transparent 30%),
    linear-gradient(90deg, var(--color-header) 0%, #0b1d32 52%, #102841 100%);
  padding: 14px 0;
  box-shadow: 0 12px 30px rgba(7,17,31,.24);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255,255,255,.045) 34px 36px),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent);
}
.site-header .container { position: relative; z-index: 1; }
.logo { color: #fff; font-size: 1.32rem; font-weight: 900; letter-spacing: .7px; text-transform: uppercase; }
.logo:hover { color: #fff; text-decoration: none; }
.logo-img img {
  width: 160px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.28));
}
@media (max-width: 500px) {
  .logo-img img { width: 110px; height: 36px; }
}

/* ===== Section titles ===== */
.section-title, .answers-title, .similar-title {
  position: relative;
  font-size: .94rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--color-header);
  margin-bottom: 14px;
  padding-left: 14px;
}
.section-title::before, .answers-title::before, .similar-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: .22em;
  width: 5px;
  height: 1.05em;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

/* ===== Question list ===== */
.question-list { display: flex; flex-direction: column; gap: 10px; }
.question-item {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-primary);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.question-item::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -60px;
  width: 140px;
  height: 180px;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(22,199,132,.08), rgba(255,107,26,.06));
  pointer-events: none;
}
.question-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(22,199,132,.48); }
.qi-avatar { flex-shrink: 0; position: relative; z-index: 1; }
.qi-avatar img { width: 42px; height: 42px; border-radius: 11px; object-fit: cover; display: block; border: 2px solid rgba(22,199,132,.24); }
.qi-avatar-ph, .avatar-placeholder, .q-author-ph, .feed-avatar-ph {
  background: linear-gradient(135deg, rgba(22,199,132,.22), rgba(255,107,26,.18));
  border: 1px solid rgba(22,199,132,.24);
  color: var(--color-header);
}
.qi-avatar-ph { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; }
.qi-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.question-link { font-size: 1rem; font-weight: 800; color: var(--color-header); display: block; margin-bottom: 7px; line-height: 1.42; }
.question-link:hover { color: var(--color-link); }
.question-meta { display: flex; align-items: center; gap: 9px; font-size: .78rem; color: var(--color-muted); flex-wrap: wrap; }
.qi-nick { color: var(--color-nick); font-weight: 800; }
.qi-time { color: #657163; }
.cat-tag {
  background: rgba(22,199,132,.12);
  color: var(--color-link);
  border: 1px solid rgba(22,199,132,.22);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: .75rem;
  font-weight: 800;
}
.cat-tag:hover { background: rgba(255,107,26,.12); color: #9b3d07; border-color: rgba(255,107,26,.28); }
.ans-badge { color: var(--color-answers); font-weight: 900; }

/* ===== Sidebar ===== */
.sidebar { min-width: 0; }
.cat-list { display: flex; flex-direction: column; gap: 8px; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.cat-list li:hover { border-color: rgba(22,199,132,.42); transform: translateY(-1px); }
.cat-list li a { color: var(--color-header); font-weight: 800; }
.cat-list li a:hover { color: var(--color-link); }
.cat-count {
  background: linear-gradient(135deg, var(--color-primary), #0ea36a);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .76rem;
  font-weight: 900;
  min-width: 28px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 5px 12px rgba(22,199,132,.25);
}

/* ===== Category page ===== */
.page-title { font-size: 1.55rem; font-weight: 900; margin-bottom: 8px; color: var(--color-header); line-height: 1.25; letter-spacing: -.02em; }
.breadcrumb { font-size: .85rem; color: var(--color-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--color-link); font-weight: 700; }
.breadcrumb a:hover { color: var(--color-accent); }

/* ===== Question page ===== */
.question-text { font-size: 1.22rem; font-weight: 900; color: var(--color-header); margin: 0; line-height: 1.5; }
.question-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
}
.question-card::before {
  content: '';
  position: absolute;
  right: -48px;
  top: -90px;
  width: 180px;
  height: 240px;
  transform: rotate(28deg);
  background: linear-gradient(180deg, rgba(22,199,132,.12), rgba(255,107,26,.08));
  pointer-events: none;
}
.question-card > * { position: relative; z-index: 1; }
.question-info { margin-top: 12px; font-size: .83rem; color: var(--color-muted); display: flex; gap: 14px; flex-wrap: wrap; }
.answer-list { display: flex; flex-direction: column; gap: 14px; }
.answer-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-left: 5px solid transparent;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.answer-card:hover { border-left-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #d7e7d9; border: 2px solid rgba(22,199,132,.24); }
.avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.answer-body { flex: 1; min-width: 0; }
.answer-author { font-weight: 900; color: var(--color-nick); font-size: .92rem; }
.answer-date { font-size: .78rem; color: var(--color-muted); margin-left: 10px; }
.answer-text { margin-top: 8px; color: var(--color-text); line-height: 1.7; }
.answer-text a { color: var(--color-link); font-weight: 700; }
.answer-text a:hover { color: var(--color-accent); }

/* ===== Question author ===== */
.q-author { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--color-nick); }
.q-author-av { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(22,199,132,.28); }
.q-author-ph { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: .68rem; flex-shrink: 0; }

/* ===== Answer feed (sidebar) ===== */
.answer-feed { display: flex; flex-direction: column; gap: 10px; }
.feed-item {
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.feed-item:hover { border-color: rgba(22,199,132,.36); }
.feed-header { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.feed-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(22,199,132,.28); }
.feed-avatar-ph { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .75rem; }
.feed-nick { font-weight: 900; font-size: .82rem; color: var(--color-nick); }
.feed-time { font-size: .73rem; color: var(--color-muted); margin-left: auto; }
.feed-question { display: block; font-size: .78rem; color: var(--color-header); margin-bottom: 4px; line-height: 1.4; font-weight: 800; }
.feed-question:hover { color: var(--color-link); }
.feed-text { font-size: .8rem; color: #3f4d43; line-height: 1.5; margin: 0; }
.empty { color: var(--color-muted); font-style: italic; padding: 20px 0; }

/* ===== Forms, cards and buttons ===== */
.metro-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 800; margin-bottom: 5px; font-size: .88rem; color: var(--color-header); }
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=number],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  background: var(--color-surface-2);
  transition: border .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22,199,132,.14);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn { display: inline-block; padding: 10px 20px; border: none; border-radius: 999px; cursor: pointer; font-size: .9rem; font-weight: 900; transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease; }
.btn:hover { opacity: .94; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), #0fa86f); color: #fff; box-shadow: 0 8px 18px rgba(22,199,132,.25); }
.btn-danger { background: var(--color-error); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: .8rem; }

/* ===== Ask block ===== */
.ask-block {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 17px 18px;
  background: var(--color-surface);
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.ask-block:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ask-line1, .ask-line2 { color: #465448; font-size: .95rem; margin-bottom: 4px; }
.ask-cta { color: var(--color-accent); font-size: .9rem; font-weight: 900; letter-spacing: .4px; margin: 0; text-transform: uppercase; }

/* ===== Pagination ===== */
.pagination { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; padding: 26px 0 8px; }
.page-link, .page-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 900;
}
.page-link { background: var(--color-surface); color: var(--color-header); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.page-link:hover { background: rgba(22,199,132,.12); color: var(--color-link); border-color: rgba(22,199,132,.36); }
.page-current { background: linear-gradient(135deg, var(--color-primary), #0fa86f); color: #fff; cursor: default; box-shadow: 0 8px 18px rgba(22,199,132,.24); }
.page-arrow { font-size: 1rem; font-weight: 700; min-width: 36px; }
.page-disabled { color: #a7b1a7; cursor: default; box-shadow: none; opacity: .55; }
.page-gap { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 36px; font-size: .88rem; color: #a7b1a7; }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,199,132,.14), transparent 32%),
    linear-gradient(90deg, var(--color-header), #0b1d32);
  color: #eaf4ef;
  padding: 24px 0;
  margin-top: 40px;
  font-size: .88rem;
  box-shadow: 0 -10px 28px rgba(7,17,31,.14);
}
.site-footer::before { content:''; position:absolute; inset:0; pointer-events:none; background:repeating-linear-gradient(115deg, transparent 0 38px, rgba(255,255,255,.04) 38px 40px); }
.site-footer .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links a, .footer-nav-link { color: #eaf4ef; transition: color .15s; font-size: .85rem; text-decoration: none; font-weight: 800; }
.footer-links a:hover, .footer-nav-link:hover { color: var(--color-primary); text-decoration: none; }
.footer-sep { color: rgba(234,244,239,.52); }
.footer-copy { color: rgba(234,244,239,.82); }

/* ===== Static content ===== */
.static-content { line-height: 1.8; color: #344039; }
.static-content p { margin-bottom: 12px; }
.static-content h2 { font-size: 1.1rem; font-weight: 900; margin: 20px 0 8px; color: var(--color-header); }
.static-content h3 { font-size: 1rem; font-weight: 900; margin: 16px 0 6px; color: var(--color-header); }
.static-content ul, .static-content ol { margin: 10px 0 14px 22px; padding: 0; }
.static-content ul { list-style: disc; }
.static-content ol { list-style: decimal; }
.static-content li { margin-bottom: 6px; }
.static-content a { color: var(--color-link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.static-content strong, .static-content b { font-weight: 900; }
.alert { padding: 11px 14px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .9rem; font-weight: 700; }
.alert-success { background: rgba(22,199,132,.12); color: #075d3e; border: 1px solid rgba(22,199,132,.30); }
.alert-error { background: rgba(214,59,47,.10); color: #8c1d15; border: 1px solid rgba(214,59,47,.26); }

/* ===== Offers widget ===== */
.offers-widget, .qa-offers {
  border: 1px solid rgba(22,199,132,.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}
.offer-row, .qa-offer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(90deg, rgba(22,199,132,.045), transparent 32%);
}
.offer-row:last-child, .qa-offer-row:last-child { border-bottom: none; }
.offer-logo-wrap, .qa-offer-logo-wrap {
  flex-shrink: 0;
  border: 2px dashed var(--color-accent);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  width: 150px;
  min-width: 150px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #fffaf6;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
}
.offer-logo, .qa-offer-logo { width: auto; max-width: 138px; height: auto; max-height: 48px; object-fit: contain; display: block; }
.offer-logo-ph { font-size: .8rem; color: var(--color-muted); font-weight: 900; }
.offer-stars, .qa-offer-stars { flex-shrink: 0; display: flex; gap: 3px; width: 170px; align-items: center; justify-content: center; color: var(--color-warning); }
.star { font-size: 1.3rem; }
.star.full, .star.half { color: var(--color-warning); }
.star.half { opacity: .78; }
.star.empty { color: #d8ded7; }
.offer-text, .qa-offer-text { flex: 1; font-size: .9rem; color: #344039; text-align: center; line-height: 1.4; font-weight: 700; min-width: 0; }
.offer-btn, .qa-offer-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-offer-btn), #ff8a3d);
  color: #fff;
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .7px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid #c84a0c;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255,107,26,.28);
  transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
  display: inline-block;
}
.offer-btn:hover, .qa-offer-btn:hover { opacity: .96; transform: translateY(-1px); text-decoration: none; color: #fff; box-shadow: 0 12px 24px rgba(255,107,26,.34); }
@media (max-width: 600px) {
  .offer-row, .qa-offer-row { flex-wrap: wrap; gap: 12px; justify-content: center; padding: 14px 12px; }
  .offer-text, .qa-offer-text { text-align: center; width: 100%; flex-basis: 100%; order: 4; font-size: .85rem; }
  .offer-logo-wrap, .qa-offer-logo-wrap { width: 150px !important; min-width: 150px !important; height: 60px !important; padding: 6px !important; flex-shrink: 0 !important; box-sizing: border-box !important; }
  .offer-logo, .qa-offer-logo { max-width: 138px !important; max-height: 48px !important; object-fit: contain !important; }
  .offer-stars, .qa-offer-stars { min-width: 0; width: 100%; flex-basis: 100%; order: 2; justify-content: center; padding-left: 0; }
  .offer-btn, .qa-offer-btn { order: 3; width: 100%; max-width: 280px; text-align: center; padding: 13px 22px; box-sizing: border-box; }
}

/* ===== Similar questions ===== */
.similar-questions { margin-top: 32px; }
.similar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.similar-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.similar-item:hover { border-color: rgba(22,199,132,.36); }
.similar-link { font-size: 1rem; font-weight: 800; color: var(--color-header); flex: 1; }
.similar-link:hover { color: var(--color-link); }
.similar-meta { font-size: .78rem; color: var(--color-muted); white-space: nowrap; flex-shrink: 0; }

/* ===== Profile ===== */
.profile-header { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(22,199,132,.25); box-shadow: var(--shadow-sm); }
.profile-avatar-ph { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.profile-stats { display: flex; gap: 20px; font-size: .9rem; color: var(--color-muted); flex-wrap: wrap; }
.profile-stats b { color: var(--color-header); }
.profile-activity { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.profile-tile { background: var(--color-surface); border-radius: var(--radius-md); padding: 14px 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); border-left: 5px solid var(--color-primary); }
.profile-tile-answer { border-left-color: var(--color-answers); }
.profile-meta { font-size: .78rem; color: var(--color-muted); margin-top: 4px; }
.profile-excerpt { font-size: .86rem; color: var(--color-text); margin-top: 6px; line-height: 1.6; }

/* ===== Question rating and votes ===== */
.star-rating { display: flex; gap: 4px; align-items: center; }
.star-rating .star { font-size: 1.4rem; cursor: pointer; color: #d7e2d7; transition: color .15s, transform .15s; line-height: 1; }
.star-rating .star:hover, .star-rating .star.active, .star-rating .star.voted { color: var(--color-warning); }
.star-rating .star:hover { transform: scale(1.08); }
.star-rating .star.voted { cursor: default; }
.answer-votes { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }
.vote-btn { background: none; border: none; cursor: pointer; padding: 0 2px; font-size: 1rem; line-height: 1; transition: transform .1s, color .15s; }
.vote-up { color: var(--color-success); }
.vote-up:hover, .vote-up.voted { color: #0b7a3b; transform: scale(1.2); }
.vote-up.voted, .vote-down.voted { cursor: default; }
.vote-down { color: var(--color-error); }
.vote-down:hover, .vote-down.voted { color: #9b241c; transform: scale(1.2); }
.vote-count { font-size: .78rem; color: var(--color-muted); min-width: 10px; font-weight: 800; }
.user-stat { background: rgba(22,199,132,.08); border-radius: 999px; padding: 2px 7px; }


