/**
 * Sunucu Detay Sayfası Güncellemeleri — v2.9.30
 * Oy CTA, cooldown timer, mode/version badges, tags
 */

/* ════════════════════════════════════════════════════════════
   OY CTA BUTONU (inline form yerini aldı)
   ════════════════════════════════════════════════════════════ */

.srv-vote-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(245, 158, 11, 0.08));
  border: 1.5px solid rgba(251, 191, 36, 0.45);
  border-radius: 12px;
  color: var(--text, #e6ecf3) !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.srv-vote-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.28), rgba(245, 158, 11, 0.14));
  border-color: #fbbf24;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.28);
}

.srv-vote-cta__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.4));
}

.srv-vote-cta__body { flex: 1; min-width: 0; }

.srv-vote-cta__body strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 2px;
}

.srv-vote-cta__body small {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted, #94a3b8);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   COOLDOWN
   ════════════════════════════════════════════════════════════ */

.srv-vote-cooldown {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
}

.srv-vote-cooldown__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.srv-vote-cooldown strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 4px;
}

.srv-vote-cooldown__timer {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.srv-vote-cooldown__timer span { color: #fbbf24; }

.srv-vote-cooldown small {
  font-size: 11.5px;
  color: var(--text-muted, #94a3b8);
}

.srv-vote-cooldown small a {
  color: #5B9FFF !important;
  text-decoration: underline !important;
}

/* ════════════════════════════════════════════════════════════
   OYUN MODU BADGELERİ
   ════════════════════════════════════════════════════════════ */

.server-badge--mode {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.server-badge--ver-multi {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: rgba(91, 159, 255, 0.12);
  color: #5B9FFF;
  border: 1px solid rgba(91, 159, 255, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════════════════
   ETIKETLER (TAGS)
   ════════════════════════════════════════════════════════════ */

.server-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.server-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted, #94a3b8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  transition: all 0.15s ease;
  cursor: default;
}

.server-tag:hover {
  background: rgba(61, 214, 140, 0.1);
  color: #3DD68C;
  border-color: rgba(61, 214, 140, 0.25);
}

/* Light tema */
[data-theme="light"] .srv-vote-cta { background: rgba(251, 191, 36, 0.1); }
[data-theme="light"] .srv-vote-cooldown { background: rgba(245, 158, 11, 0.06); }
[data-theme="light"] .server-tag { color: #64748b; background: rgba(15, 23, 42, 0.04); }
