@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg: #07080f;
  --bg2: #0c0e1a;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.12);
  --text: #e8eaf2;
  --muted: #8892b0;
  --soft: #5a6482;
  --accent: #a78bfa;
  --accent2: #7dd3fc;
  --gold: #c9a84c;
  --gold2: #f0d080;
  --danger: #f87171;
  --glow: rgba(167,139,250,.15);
  --glow2: rgba(125,211,252,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,.6);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Background ─────────────────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}

.bg-orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(99,102,241,.35), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite;
}

.bg-orb--2 {
  width: 500px; height: 500px;
  top: 30%; right: -150px;
  background: radial-gradient(circle, rgba(56,189,248,.25), transparent 70%);
  animation: orbFloat 24s ease-in-out infinite reverse;
}

.bg-orb--3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 30%;
  background: radial-gradient(circle, rgba(139,92,246,.20), transparent 70%);
  animation: orbFloat 20s ease-in-out infinite 4s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.04); }
  66%  { transform: translate(-20px, 30px) scale(.97); }
}

/* ─── Layout ─────────────────────────────────────── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ─── Topbar ─────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,15,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.wrapbar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.badge .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.iconbtn {
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.iconbtn:hover {
  background: var(--surface);
  color: var(--accent);
}

.iconbtn-t { display: none; }

@media (min-width: 600px) {
  .iconbtn-t { display: inline; }
}

.iconbtn--login {
  background: var(--accent);
  color: var(--bg);
}

.iconbtn--login:hover {
  background: var(--accent2);
}

/* ─── Header Block ───────────────────────────────── */
.header-block {
  text-align: center;
  padding: 60px 0 40px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.title-glow {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-accent {
  display: inline;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 500px;
}

.header-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CTA Buttons ────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.cta--hero {
  padding: 14px 28px;
  font-size: 15px;
}

.cta--ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.cta--ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.cta-variant-2 {
  padding: 12px 20px;
  font-size: 14px;
  width: 100%;
}

/* ─── Hero Promo ─────────────────────────────────── */
.hero {
  margin: 60px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 720px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.card h2, .card h3, .card h4 {
  margin-top: 0;
}

.card h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.hero-promo .bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-promo .bullets li {
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
}

.hero-promo .bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-note {
  font-size: 12px;
  color: var(--soft);
  margin: 0;
}

/* ─── Testimonial Carousel ──────────────────────── */
.testimonial-section {
  margin: 80px 0;
}

.testimonial-carousel {
  position: relative;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  backdrop-filter: blur(8px);
}

.testimonial-carousel-inner {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  opacity: 1;
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin: 0 0 12px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-amount {
  font-size: 13px;
  color: var(--gold);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.carousel-dot:hover {
  background: var(--accent2);
}

/* ─── Sections ───────────────────────────────────── */
.section {
  margin: 80px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.section-head h3 {
  font-size: 32px;
  margin: 0;
  color: var(--text);
}

/* ─── Server Grid ────────────────────────────────── */
.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.server {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.server:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(167,139,250,.15);
}

.server .top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}

.server .label {
  font-weight: 600;
  font-size: 14px;
}

.server .desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  flex: 1;
}

.server-detail {
  font-size: 12px;
  color: var(--soft);
}

.server-detail-k {
  color: var(--accent);
  font-weight: 600;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

/* ─── Features ───────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 720px) {
  .feature { grid-template-columns: 1fr; }
}

.card h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

/* ─── Warning ────────────────────────────────────── */
.warning {
  margin: 80px 0;
}

.warning-inner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.warning-badge {
  display: inline-block;
  font-size: 12px;
  color: #f87171;
  margin-bottom: 12px;
  font-weight: 600;
}

.warning-title {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--text);
}

.warning-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ─── Ads Section ────────────────────────────────── */
.ads-section {
  margin: 80px 0;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ad-box {
  background: var(--surface2);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ad-icon {
  font-size: 32px;
}

.ad-text h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--accent);
}

.ad-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--soft);
}

.visitor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.visitor-icon { font-size: 16px; }

.visitor-counter {
  font-weight: 600;
  color: var(--accent);
}

.footer-note {
  margin: 0;
  color: var(--soft);
}

/* ─── Modal ──────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 13px;
  color: var(--muted);
}

.modal-x {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.modal-x:hover {
  color: var(--text);
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  gap: 0;
}

.modal-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--muted);
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  position: relative;
}

.modal-tab:hover {
  color: var(--text);
}

.modal-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.modal-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.modal-tab-content {
  display: none;
}

.modal-tab-content.active {
  display: block;
}

.modal-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--soft);
  text-align: center;
}

/* ─── Forms ──────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  gap: 6px;
}

.label input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s;
}

.label input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--glow);
}

.label input::placeholder {
  color: var(--soft);
}

.btn {
  padding: 10px 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--accent2);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface2);
  border-color: var(--accent);
}

.row {
  display: flex;
  gap: 12px;
}

.row .btn {
  flex: 1;
}

.hint {
  font-size: 12px;
  color: var(--soft);
  margin: 0;
  min-height: 16px;
}

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.member-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.member-row:last-child {
  border-bottom: none;
}

.member-k {
  color: var(--soft);
  font-weight: 600;
}

.member-v {
  color: var(--accent);
}

.member-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.alert {
  background: rgba(34, 197, 94, 0.15);
  border-left: 3px solid #22c55e;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #22c55e;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.checklist li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── Particles ──────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  animation: floatUp 20s linear infinite;
  opacity: 0.3;
}

@keyframes floatUp {
  from {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  to {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0.3;
  }
}

/* ─── Skip Link ──────────────────────────────────── */
.skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-size: 12px;
  z-index: 999;
}

.skip:focus {
  top: 0;
}

/* ─── Responsive ─────────────────────────────────── */
.logo {
  font-size: 22px;
  margin-right: 8px;
}

.header-block {
  text-align: center;
  padding: 80px 0 60px;
}

/* ─── Hero Banner ─────────────────────────────────── */
.hero-banner {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.trust-icon {
  font-size: 16px;
}

/* ─── Stats Section ────────────────────────────────── */
.stats-section {
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Howto Section ────────────────────────────────── */
.howto-section {
  margin: 80px 0;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.howto-card {
  text-align: center;
  position: relative;
}

.howto-step {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.howto-card .card {
  padding-top: 32px;
}

/* ─── Feature Cards ────────────────────────────────── */
.feature-icon {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.feature-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ─── Server Stats ─────────────────────────────────── */
.stats-mini {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--soft);
}

/* ─── FAQ Section ──────────────────────────────────── */
.faq-section {
  margin: 80px 0;
}

.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 16px 20px 0;
  font-size: 14px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

/* ─── Responsive Updates ─────────────────────────────── */
@media (max-width: 720px) {
  .title-glow { font-size: 36px; }
  .section-head h3 { font-size: 24px; }
  .wrap { padding: 0 16px 60px; }
  .card { padding: 20px; }
  .testimonial-carousel { padding: 24px 20px; }
  .feature { gap: 16px; }
  .trust-badges { gap: 12px; }
  .hero-banner { padding: 60px 0 40px; }
}

@media (max-width: 600px) {
  .wrapbar { padding: 10px 16px; flex-wrap: wrap; }
  .topbar-left { flex: 1; }
  .badge { font-size: 11px; padding: 4px 8px; }
  .header-block { padding: 40px 0 30px; }
  .subtitle { font-size: 14px; }
  .header-actions { gap: 8px; }
  .cta { padding: 10px 20px; font-size: 13px; }
  .hero-inner { gap: 16px; }
  .card { padding: 16px; }
  .server-grid { grid-template-columns: 1fr; }
  .section { margin: 60px 0; }
  .section-head { margin-bottom: 24px; }
  .modal-panel { width: 90%; max-height: 85vh; }
}

/* Disable text selection for anti-copying - re-enable for inputs */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Re-enable selection for form inputs and textareas */
input, textarea, select, button {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* ─── Comment System ────────────────────────────────── */
.comment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.comment-user {
  font-weight: 600;
  color: var(--accent);
}

.comment-time {
  color: var(--soft);
}

.comment-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.comment-actions {
  display: flex;
  gap: 8px;
}

.btn--approve {
  background: var(--gold);
  color: var(--bg);
}

.btn--approve:hover {
  background: var(--gold2);
}

.btn--reject {
  background: var(--danger);
  color: var(--text);
}

.btn--reject:hover {
  background: #fb923c;
}

.comments-list {
  margin-top: 20px;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  padding: 20px;
}