@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg: #0a0707;
  --bg2: #141010;
  --card: #191313;
  --card2: #221919;
  --border: rgba(255, 55, 20, 0.28);
  --border-hover: rgba(255, 80, 30, 0.65);
  --accent: #ff3b1a;      /* ana renk: kırmızımsı */
  --accent2: #d10f00;     /* koyu kırmızı */
  --accent3: #ff9420;     /* sıcak turuncu (geçiş için) */
  --text: #f2ece8;
  --text-muted: #8f827a;
  --text-dim: #5e534c;
  --glow: 0 0 24px rgba(255, 50, 15, 0.5);
  --glow-sm: 0 0 12px rgba(255, 50, 15, 0.35);
  --glow-lg: 0 0 50px rgba(230, 25, 0, 0.45);
  --radius: 12px;
  --nav-height: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* === LAVA BACKGROUND === */
.lava-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lava-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background:
    radial-gradient(ellipse 60% 40% at 25% 60%, rgba(230, 25, 0, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(255, 70, 20, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 85%, rgba(180, 15, 0, 0.10) 0%, transparent 70%);
  animation: lavaFloat 14s ease-in-out infinite;
}

.lava-bg::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background:
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(255, 58, 22, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 15% 25%, rgba(255, 30, 10, 0.08) 0%, transparent 60%);
  animation: lavaFloat 18s ease-in-out infinite reverse;
}

@keyframes lavaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(2%, -3%) scale(1.04); }
  50%  { transform: translate(-2%, 2%) scale(0.97); }
  75%  { transform: translate(3%, 1%) scale(1.02); }
}

/* lava ripple particles */
.lava-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 15, 0.25), transparent 70%);
  animation: ripplePulse var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transform: scale(0);
}

@keyframes ripplePulse {
  0%, 100% { transform: scale(0); opacity: 0; }
  50%       { transform: scale(1); opacity: 1; }
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Rajdhani', 'Chakra Petch', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
  padding: 0.28rem 0.75rem 0.22rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,55,20,0.12), rgba(180,15,0,0.28));
  box-shadow:
    0 0 12px rgba(255, 55, 20, 0.55),
    inset 0 0 12px rgba(255, 80, 30, 0.35);
  text-shadow: 0 0 8px rgba(255, 90, 40, 0.9);
  display: inline-block;
  line-height: 1;
  position: relative;
}
.logo-text::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255,55,20,0.4);
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 58, 22, 0.1);
  box-shadow: 0 0 12px rgba(255, 58, 22, 0.2);
}

.nav-links a.active {
  border-bottom: 2px solid var(--accent);
  border-radius: 8px 8px 0 0;
}

.nav-links a svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === PAGE WRAPPER === */
.page-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === PAGE HEADER === */
.page-header {
  padding: 3rem 1rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent3), var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 0.5rem;
  text-align: center;
  width: 100%;
}

.page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* === HERO (HOMEPAGE) === */
.hero {
  padding: 5rem 0 2rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 58, 22, 0.1);
  border: 1px solid rgba(255, 58, 22, 0.35);
  color: var(--accent3);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(255, 58, 22, 0.4);
}

.hero h1 .glow-text {
  background: linear-gradient(135deg, #d10f00, #ff3b1a, #ff9420, #ffcf4a, #ff3b1a, #d10f00);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: colorShift 6s ease-in-out infinite;
}

@keyframes colorShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* === SERVER CARDS === */
.servers-section {
  padding: 1rem 0 5rem;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.server-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.server-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 58, 22, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.server-card:hover::before { opacity: 1; }

.server-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.server-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1a1212, #2a1510);
  position: relative;
  overflow: hidden;
}

.server-card-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #1a1212, #2a1510);
}

.server-card-body {
  padding: 1.25rem;
}

.server-name {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.server-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.server-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.server-info-label {
  color: var(--text-muted);
}

.server-info-value {
  color: var(--text);
  font-weight: 600;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: none;
}

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

.server-ip {
  margin-top: 0.75rem;
  background: rgba(255, 58, 22, 0.07);
  border: 1px solid rgba(255, 58, 22, 0.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--accent3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.server-ip-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
  -webkit-user-select: all;
  cursor: text;
}

.server-ip {
  cursor: default;
}

.connect-btn {
  width: 100%;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 58, 22, 0.4);
  background: linear-gradient(135deg, rgba(255,58,22,0.18), rgba(255,58,0,0.12));
  color: var(--accent3);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.connect-btn svg {
  width: 16px;
  height: 16px;
}

.connect-btn:hover {
  background: linear-gradient(135deg, rgba(255,58,22,0.32), rgba(255,58,0,0.22));
  box-shadow: var(--glow);
  color: #fff;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0;
  transition: color 0.2s;
}

.copy-btn:hover { color: var(--accent); }

/* === AUTHORITY (VIP) CARDS === */
.auth-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.period-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.period-btn.active {
  background: rgba(255, 58, 22, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.auth-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 0.55rem;
}

.auth-icon svg {
  width: 26px;
  height: 26px;
}

.auth-card:nth-child(1) .auth-icon { background: rgba(255,50,0,0.1); color: #ff5a2a; box-shadow: 0 0 18px rgba(255,50,0,0.35) inset; }
.auth-card:nth-child(2) .auth-icon { background: rgba(255,110,0,0.1); color: #ff8a30; box-shadow: 0 0 18px rgba(255,110,0,0.35) inset; }
.auth-card:nth-child(3) .auth-icon { background: rgba(180,120,255,0.08); color: #b880ff; box-shadow: 0 0 18px rgba(160,80,255,0.3) inset; }
.auth-card:nth-child(4) .auth-icon { background: rgba(80,150,255,0.08); color: #6fb0ff; box-shadow: 0 0 18px rgba(80,150,255,0.28) inset; }
.auth-card:nth-child(5) .auth-icon { background: rgba(80,220,120,0.08); color: #6fdc85; box-shadow: 0 0 18px rgba(80,220,120,0.28) inset; }
.auth-card:nth-child(6) .auth-icon { background: rgba(180,180,190,0.08); color: #d0d5df; box-shadow: 0 0 18px rgba(200,200,215,0.2) inset; }

.auth-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent3));
  opacity: 0;
  transition: opacity 0.3s;
}

.auth-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.auth-card:hover::after { opacity: 1; }

.auth-card.featured {
  border-color: rgba(255, 170, 0, 0.5);
  background: linear-gradient(135deg, #1e1510, #181414);
}

.auth-card.featured::after { opacity: 1; }

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.auth-card:nth-child(1) .auth-badge { background: rgba(255,50,0,0.15); color: #ff5a2a; border: 1px solid rgba(255,50,0,0.3); }
.auth-card:nth-child(2) .auth-badge { background: rgba(255,110,0,0.15); color: #ff8a30; border: 1px solid rgba(255,110,0,0.3); }
.auth-card:nth-child(3) .auth-badge { background: rgba(180,120,255,0.12); color: #c090ff; border: 1px solid rgba(180,120,255,0.3); }
.auth-card:nth-child(4) .auth-badge { background: rgba(80,150,255,0.1); color: #7ab5ff; border: 1px solid rgba(80,150,255,0.28); }
.auth-card:nth-child(5) .auth-badge { background: rgba(80,220,120,0.1); color: #7de095; border: 1px solid rgba(80,220,120,0.28); }
.auth-card:nth-child(6) .auth-badge { background: rgba(180,180,190,0.08); color: #d0d5df; border: 1px solid rgba(180,180,190,0.25); }

.auth-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.auth-price {
  margin: 0.75rem 0;
  padding: 0.55rem 0.75rem;
  background: rgba(0,0,0,0.3);
  border-radius: 7px;
  border: 1px solid rgba(255, 58, 22, 0.1);
}

.auth-price .price-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent3);
  line-height: 1.1;
}

.auth-price .price-period {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.auth-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.auth-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.auth-features li::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

.auth-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 58, 22, 0.1);
  border: 1px solid rgba(255, 58, 22, 0.3);
  border-radius: 7px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.auth-contact:hover {
  background: rgba(255, 58, 22, 0.2);
  box-shadow: var(--glow-sm);
}

/* === LEADERBOARD === */
.lb-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lb-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  white-space: nowrap;
}

.lb-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 58, 22, 0.07);
  white-space: nowrap;
}

.lb-table tr:last-child td { border-bottom: none; }

.lb-table tbody tr {
  background: var(--bg2);
  transition: background 0.15s;
}

.lb-table tbody tr:nth-child(even) {
  background: var(--card);
}

.lb-table tbody tr:hover {
  background: rgba(255, 58, 22, 0.06);
}

.lb-rank {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.lb-rank.gold   { color: #ffaa00; text-shadow: 0 0 10px rgba(255,170,0,0.6); }
.lb-rank.silver { color: #b0b8c8; text-shadow: 0 0 10px rgba(180,190,210,0.5); }
.lb-rank.bronze { color: #c87040; text-shadow: 0 0 10px rgba(200,110,60,0.5); }

.lb-player {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lb-name {
  font-weight: 600;
  color: var(--text);
}

.lb-xp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  color: var(--accent3);
  font-weight: 700;
  font-size: 0.8rem;
}

.lb-note {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.lb-note a {
  color: var(--accent);
  text-decoration: none;
}

/* === BAN LIST === */
.ban-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ban-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ban-stats-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.ban-stats-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ban-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 58, 22, 0.07);
  font-size: 0.875rem;
}

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

.ban-stat-label { color: var(--text-muted); }
.ban-stat-val { font-weight: 700; color: var(--accent); }

.ban-search {
  display: flex;
  gap: 0.5rem;
}

.ban-search input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.ban-search input:focus {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.ban-search input::placeholder { color: var(--text-dim); }

.btn-icon {
  background: rgba(255, 58, 22, 0.1);
  border: 1px solid rgba(255, 58, 22, 0.3);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(255, 58, 22, 0.2);
  box-shadow: var(--glow-sm);
}

.ban-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ban-tab {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ban-tab.active {
  background: rgba(255, 58, 22, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.ban-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.ban-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.ban-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  white-space: nowrap;
}

.ban-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 58, 22, 0.06);
}

.ban-table tr:last-child td { border-bottom: none; }

.ban-table tbody tr {
  background: var(--bg2);
  transition: background 0.15s;
}

.ban-table tbody tr:nth-child(even) { background: var(--card); }
.ban-table tbody tr:hover { background: rgba(255, 58, 22, 0.05); }

.ban-type-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ban-type-icon svg {
  width: 17px;
  height: 17px;
}

.ban-type-icon.ban  {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #ff4d4d;
}

.ban-type-icon.kick {
  background: rgba(255, 150, 20, 0.14);
  border: 1px solid rgba(255, 150, 20, 0.35);
  color: #ffa538;
}

.ban-type-icon.mute {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fbbf24;
}

/* Chat susturma — mute'a benzer sarı ton */
.ban-type-icon.gag {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fbbf24;
}

/* Kaldırma aksiyonları — pozitif eylem, yeşil */
.ban-type-icon.unban,
.ban-type-icon.unmute,
.ban-type-icon.ungag {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.duration-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
}

.duration-badge.perm    { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.duration-badge.temp    { background: rgba(234,179,8,0.12); color: #fbbf24; border: 1px solid rgba(234,179,8,0.3); }

.auth-tag {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.auth-tag.auth-boss    { background: rgba(255,50,0,0.15);  color: #ff5a2a; border: 1px solid rgba(255,50,0,0.3); }
.auth-tag.auth-mad     { background: rgba(255,58,22,0.15);  color: #ff7c30; border: 1px solid rgba(255,58,22,0.3); }
.auth-tag.auth-yonetim { background: rgba(180,120,0,0.15); color: #e0a020; border: 1px solid rgba(180,120,0,0.3); }
.auth-tag.auth-admin   { background: rgba(100,160,255,0.1);color: #80b4ff; border: 1px solid rgba(100,160,255,0.25); }

.admin-stat-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.admin-stat-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,58,22,0.1);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.admin-stat-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-stat-count {
  font-size: 0.75rem;
  color: var(--accent);
}

/* === RULES === */
.rules-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.rules-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.rules-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.rules-cat-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.7;
}

.rules-cat-btn:hover {
  background: rgba(255, 58, 22, 0.06);
  color: var(--text);
}

.rules-cat-btn.active {
  background: rgba(255, 58, 22, 0.12);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}

.rules-cat-btn.active svg { opacity: 1; }

.rules-category { display: none; }
.rules-category.active { display: block; }

.rules-cat-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: all 0.2s;
}

.rule-item:hover {
  border-color: rgba(255, 58, 22, 0.3);
  background: rgba(255, 58, 22, 0.03);
}

.rule-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 58, 22, 0.1);
  border: 1px solid rgba(255, 58, 22, 0.2);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  white-space: nowrap;
}

.rule-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .rules-layout { grid-template-columns: 1fr; }
  .rules-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .rules-cat-btn { width: auto; }
}

/* === SKINS / KAPLAMALAR === */
.skins-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 58, 22, 0.05);
  border: 1px solid rgba(255, 58, 22, 0.15);
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --- Üst sekmeler --- */
.skin-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.skin-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.skin-tab svg { width: 22px; height: 22px; flex-shrink: 0; }
.skin-tab span { display: flex; flex-direction: column; line-height: 1.2; }
.skin-tab b { font-size: 0.85rem; color: var(--text); font-weight: 700; }
.skin-tab small { font-size: 0.7rem; color: var(--text-dim); }

.skin-tab.active {
  border-color: var(--accent);
  background: rgba(255, 58, 22, 0.12);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}
.skin-tab.active b { color: var(--accent); }

.skin-tab.disabled { opacity: 0.45; cursor: not-allowed; }
.skin-tab:not(.disabled):not(.active):hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* --- Takım geçişi (T / CT) --- */
.team-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.team-btn {
  min-width: 70px;
  padding: 0.45rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}

.team-btn.active { background: rgba(255,58,22,0.12); border-color: var(--accent); color: var(--accent); box-shadow: var(--glow-sm); }
.team-btn.team-t.active  { background: rgba(222,170,40,0.15); border-color: #deaa28; color: #f0c04a; box-shadow: 0 0 12px rgba(222,170,40,0.3); }
.team-btn.team-ct.active { background: rgba(70,130,255,0.15); border-color: #4a82ff; color: #7aa8ff; box-shadow: 0 0 12px rgba(70,130,255,0.3); }

/* --- Ana düzen --- */
.skins-layout {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.skin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.skin-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.3rem;
  border: none;
  border-radius: 8px;
  background: none;
  color: var(--text-muted);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.skin-cat-btn svg { width: 22px; height: 22px; opacity: 0.75; }
.skin-cat-btn span { font-size: 0.65rem; font-weight: 600; }

.skin-cat-btn:hover { background: rgba(255,58,22,0.06); color: var(--text); }
.skin-cat-btn.active {
  background: rgba(255,58,22,0.12);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}
.skin-cat-btn.active svg { opacity: 1; }

/* --- Silah gridi --- */
.skins-root { min-height: 300px; }

.weapon-cat-group { margin-bottom: 2rem; }

.weapon-cat-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.weapon-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.weapon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}

.weapon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.weapon-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

.weapon-thumb {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.weapon-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.weapon-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.weapon-count { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.15rem; }

/* --- Yükleniyor / hata --- */
.skins-loading, .skins-empty, .skins-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}
.skins-error { color: #f87171; }

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255,58,22,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Skin modalı --- */
.skin-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,4,4,0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.skin-modal.open { display: flex; }

.skin-modal-inner {
  background: var(--bg2);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  width: 100%;
  max-width: 980px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glow-lg);
  overflow: hidden;
}

.skin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,58,22,0.04);
}
.skin-modal-title { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.skin-modal-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

.skin-modal-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.2s;
}
.skin-modal-close svg { width: 18px; height: 18px; display: block; }
.skin-modal-close:hover { background: rgba(255,58,22,0.15); color: var(--accent); border-color: var(--accent); }

.skin-modal-body { overflow-y: auto; padding: 1.25rem 1.5rem; }

.skin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.skin-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rc, #888);
  border-radius: 10px;
  padding: 0.6rem;
  transition: all 0.2s;
}
.skin-item:hover {
  border-color: var(--rc, var(--border-hover));
  box-shadow: 0 0 14px color-mix(in srgb, var(--rc, #888) 35%, transparent);
  transform: translateY(-2px);
}

.skin-item-img {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.skin-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.skin-item-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.25rem;
  min-height: 2em;
}

.skin-item-rarity {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.skin-item-rarity .rarity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rc, #888);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--rc, #888);
}

@media (max-width: 700px) {
  .skins-layout { grid-template-columns: 1fr; }
  .skin-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .skin-cat-btn { flex-direction: row; }
}

/* === ADMINS === */
.admins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  justify-content: center;
}

.admin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.admin-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
}

.admin-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card2);
  border: 2px solid var(--border);
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}

.admin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.admin-role {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
}

.admins-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* === FOOTER === */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo .logo-text {
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer-disclaimer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-dim);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}


/* === UTILS === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2rem 0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .auth-grid { grid-template-columns: repeat(2, 1fr); }
  .ban-layout { grid-template-columns: 1fr; }
  .ban-sidebar { order: 2; }
  .servers-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 640px) {
  .auth-grid { grid-template-columns: 1fr; }
  .nav-inner { width: 100%; justify-content: space-between; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    transform: none;
    background: rgba(10,9,9,0.97);
    backdrop-filter: blur(16px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .hero h1 { font-size: 2.2rem; }
}


/* === SERVER SELECT (liderlik & yasaklama) === */
.srv-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.srv-select-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.25rem;
}
.srv-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.srv-btn:hover { border-color: var(--border-hover); color: var(--text); }
.srv-btn.active {
  background: rgba(255,55,20,0.14);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}

.footer-legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* === NAVBAR HOVER ANİMASYONLARI === */
.nav-links a svg { transition: transform 0.35s ease, opacity 0.2s; transform-origin: center; }

.nav-links a[href="index.html"]:hover svg { animation: navBounce 0.6s ease; }
@keyframes navBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

.nav-links a[href="kurallar.html"]:hover svg { animation: navFlip 0.7s ease; }
@keyframes navFlip { 0%{transform:rotateY(0)} 50%{transform:rotateY(180deg)} 100%{transform:rotateY(360deg)} }

.nav-links a[href="yetki.html"]:hover svg { animation: navSpin 0.8s ease; }
@keyframes navSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.nav-links a[href="liderboard.html"]:hover svg line { animation: navBars 0.6s ease infinite alternate; transform-origin: bottom; transform-box: fill-box; }
.nav-links a[href="liderboard.html"]:hover svg line:nth-child(2) { animation-delay: 0.15s; }
.nav-links a[href="liderboard.html"]:hover svg line:nth-child(3) { animation-delay: 0.3s; }
@keyframes navBars { from{transform:scaleY(1)} to{transform:scaleY(0.6)} }

.nav-links a[href="yasaklama.html"]:hover svg { animation: navPulse 0.5s ease infinite alternate; }
@keyframes navPulse { from{transform:scale(1)} to{transform:scale(1.15)} }

.nav-links a[href="kaplamalar.html"]:hover svg { animation: navSpin 1.2s linear infinite; }

.nav-links a[href="yoneticiler.html"]:hover svg { animation: navShake 0.5s ease; }
@keyframes navShake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-2px)} 75%{transform:translateX(2px)} }

/* === TOAST === */
.toast-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3000;
  pointer-events: none;
}
.toast {
  background: linear-gradient(135deg, rgba(20,10,10,0.98), rgba(35,15,10,0.98));
  border: 1px solid var(--accent);
  border-left: 3px solid var(--accent);
  color: var(--text);
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 20px rgba(255,55,20,0.35);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 200px;
  max-width: 360px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2,0.9,0.3,1.2), opacity 0.2s;
  pointer-events: auto;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* === CUSTOM CURSOR === */




/* === ANA SAYFA SUNUCU KART GÖRSELİ === */
.server-hero {
  height: 160px;
  background: linear-gradient(180deg, #1e1010, #0f0808);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.server-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,55,20,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.server-hero img {
  max-height: 130px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255,55,20,0.35));
  z-index: 1;
  transition: transform 0.4s ease;
}
.server-card:hover .server-hero img { transform: scale(1.08); }

/* === SUNUCU CANLI DOLULUK === */
.server-populate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pop-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.pop-bar-fill {
  position: absolute;
  inset: 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent3));
  border-radius: 3px;
  transition: width 0.6s ease;
}
.pop-count { font-weight: 700; color: var(--text); font-family: 'Chakra Petch', monospace; }

/* === DISCORD WIDGET === */
.discord-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  color: #a8b3ff;
  text-decoration: none;
  transition: all 0.2s;
}
.discord-widget:hover { background: rgba(88, 101, 242, 0.2); box-shadow: 0 0 14px rgba(88,101,242,0.35); }
.discord-widget .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: livePulse 2s infinite;
}
@keyframes livePulse { 50% { opacity: 0.5; } }

/* === FOOTER İLETİŞİM === */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { width: 16px; height: 16px; }
.footer-contact a.discord-link:hover { color: #a8b3ff; }

/* === SUNUCU SEÇİCİ ÇOKLU (checkbox stili) === */
.srv-select .srv-btn { position: relative; padding-left: 2rem; }
.srv-select .srv-btn::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--text-dim);
  border-radius: 3px;
  transition: all 0.2s;
}
.srv-select .srv-btn.active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,55,20,0.15);
}
.srv-select .srv-btn.active::after {
  content: '\2713';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-52%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

/* === YÖNETİCİ KARTLARI (foto/gif) === */
.admin-card {
  padding: 1.25rem 1rem;
  position: relative;
  overflow: hidden;
}
.admin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent3));
  opacity: 0.6;
}
.admin-avatar {
  width: 90px;
  height: 90px;
  border: 2px solid var(--border-hover);
  overflow: hidden;
  background: var(--card2);
  box-shadow: 0 0 18px rgba(255,55,20,0.25);
}
.admin-avatar img { width: 100%; height: 100%; object-fit: cover; }
.admin-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.admin-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.admin-role.role-kurucu { background: rgba(255,55,20,0.15); color: #ff7c30; border: 1px solid rgba(255,55,20,0.35); }
.admin-role.role-bas,
.admin-role.role-sorumlu { background: rgba(255,120,30,0.12); color: #ff9530; border: 1px solid rgba(255,120,30,0.3); }
.admin-role.role-gelistirici { background: rgba(96,165,250,0.14); color: #60a5fa; border: 1px solid rgba(96,165,250,0.35); }

/* === KAPLAMALAR sidebar ikonları: gerçek silah resmi === */
.skin-cat-btn .cat-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(1.4) grayscale(0.2);
}
.skin-cat-btn.active .cat-img { opacity: 1; filter: brightness(1.6) drop-shadow(0 0 4px var(--accent)); }

/* === SUNUCU ETİKETİ (yasaklama listesi) === */
.srv-tag {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.srv-tag.srv-awp     { background: rgba(255,150,20,0.12); color: #ffa538; border: 1px solid rgba(255,150,20,0.3); }
.srv-tag.srv-aim     { background: rgba(100,200,255,0.12); color: #6bb4ff; border: 1px solid rgba(100,200,255,0.3); }
.srv-tag.srv-redline { background: rgba(255,60,40,0.15); color: #ff6a4a; border: 1px solid rgba(255,60,40,0.3); }

/* === Seçili skin göstergesi === */
.weapon-card.has-selection {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(255,55,20,0.4);
  position: relative;
}
.weapon-card.has-selection::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255,55,20,0.6);
}
.skin-item {
  cursor: pointer;
  position: relative;
}
.skin-item.active {
  border-color: var(--rc, var(--accent));
  box-shadow: 0 0 16px color-mix(in srgb, var(--rc, #ff3b1a) 50%, transparent);
  transform: translateY(-2px);
}
.skin-item.active::before {
  content: 'SEÇİLİ';
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--rc, var(--accent));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.auth-tag.auth-boss     { background: rgba(220,40,40,0.18); color: #ff5a5a; border: 1px solid rgba(220,40,40,0.4); }
.auth-tag.auth-mad      { background: rgba(180,120,220,0.15); color: #c090ff; border: 1px solid rgba(180,120,220,0.35); }
.auth-tag.auth-yonetim  { background: rgba(70,200,120,0.15); color: #58d295; border: 1px solid rgba(70,200,120,0.35); }
.auth-tag.auth-admin    { background: rgba(80,150,255,0.15); color: #7ab5ff; border: 1px solid rgba(80,150,255,0.35); }
.auth-tag.auth-mod      { background: rgba(230,180,20,0.15); color: #eecd4a; border: 1px solid rgba(230,180,20,0.35); }
.auth-tag.auth-awp-sor  { background: rgba(230,180,20,0.15); color: #eecd4a; border: 1px solid rgba(230,180,20,0.35); }
.auth-tag.auth-aim-sor  { background: rgba(180,120,220,0.14); color: #c090ff; border: 1px solid rgba(180,120,220,0.32); }
.auth-tag.auth-youtuber { background: rgba(220,40,40,0.15); color: #ff5a5a; border: 1px solid rgba(220,40,40,0.35); }
.auth-tag.auth-premium  { background: rgba(230,120,180,0.14); color: #ff8ac0; border: 1px solid rgba(230,120,180,0.35); }
.auth-tag.auth-uye      { background: rgba(100,190,230,0.14); color: #7fd4ff; border: 1px solid rgba(100,190,230,0.35); }
.auth-tag.auth-awp-yet  { background: rgba(230,180,20,0.13); color: #eecd4a; border: 1px solid rgba(230,180,20,0.3); }
.auth-tag.auth-pistol-yet { background: rgba(180,120,220,0.13); color: #c090ff; border: 1px solid rgba(180,120,220,0.3); }
.auth-tag.auth-redline-yet{ background: rgba(220,40,40,0.13); color: #ff5a5a; border: 1px solid rgba(220,40,40,0.3); }

/* === BAN PAGINATION === */
.ban-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.pag-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.pag-btn:hover:not(:disabled):not(.active) {
  border-color: var(--border-hover);
  color: var(--text);
}
.pag-btn.active {
  background: rgba(255,55,20,0.14);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}
.pag-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pag-dots { color: var(--text-dim); padding: 0 0.25rem; }

.admin-stat-item {
  background: rgba(255,55,20,0.06);
  border: 1px solid rgba(255,55,20,0.15);
  border-radius: 6px;
  padding: 0.4rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.admin-stat-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-stat-count {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
}

/* === İŞLEM BADGE === */
.action-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.action-badge.action-ban  { background: rgba(239,68,68,0.14); color: #ff5a5a; border: 1px solid rgba(239,68,68,0.35); }
.action-badge.action-kick { background: rgba(255,150,20,0.14); color: #ffa538; border: 1px solid rgba(255,150,20,0.35); }
.action-badge.action-mute { background: rgba(234,179,8,0.14); color: #eecd4a; border: 1px solid rgba(234,179,8,0.35); }
.action-badge.action-gag  { background: rgba(234,179,8,0.14); color: #eecd4a; border: 1px solid rgba(234,179,8,0.35); }
.action-badge.action-unban,
.action-badge.action-unmute,
.action-badge.action-ungag { background: rgba(34,197,94,0.14); color: #4ade80; border: 1px solid rgba(34,197,94,0.35); }

/* === YETKİLİ BAŞVURU BÖLÜMÜ === */
.apply-section {
  margin: 3rem auto 0;
  max-width: 900px;
  padding: 2rem 1.6rem 2.4rem;
  background: linear-gradient(180deg, rgba(255,60,26,0.06), rgba(20,10,10,0.6));
  border: 1px solid rgba(255,60,26,0.22);
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,60,26,0.18), transparent 60%);
  pointer-events: none;
}
.apply-header { position: relative; margin-bottom: 1.6rem; }
.apply-title {
  font-size: 1.7rem; font-weight: 900;
  background: linear-gradient(90deg, #fff, #ff8060);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.5px;
}
.apply-subtitle {
  color: var(--text-muted); font-size: 0.92rem; margin: 0.4rem 0 0;
}
.apply-req-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem; margin: 1.4rem 0 1.6rem; position: relative;
}
.req-card {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  text-align: left;
}
.req-emoji { font-size: 1.4rem; }
.req-text { font-size: 0.86rem; color: var(--text); }
.req-text strong { color: var(--accent); }
.apply-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #ff3b1a, #ff6844);
  color: #fff; font-size: 1rem; font-weight: 800;
  border: none; border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,60,26,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.apply-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,60,26,0.5); }
.apply-btn svg { width: 20px; height: 20px; }

/* === FORM MODAL === */
.form-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 3rem 1rem;
  overflow-y: auto;
}
.form-modal.open { display: flex; }
.form-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
}
.form-modal-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 720px;
  background: #181010;
  border: 1px solid rgba(255,60,26,0.35);
  border-radius: 14px;
  padding: 1.6rem 1.6rem 1.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: formModalIn 0.25s ease;
}
@keyframes formModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.form-modal-close {
  position: absolute; top: 0.8rem; right: 0.8rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); border-radius: 8px;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.form-modal-close:hover { color: #fff; background: rgba(255,60,26,0.2); border-color: rgba(255,60,26,0.5); }
.form-modal-header { margin-bottom: 1.4rem; padding-right: 2rem; }
.form-modal-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 0.3rem; }
.form-modal-sub { color: var(--text-muted); font-size: 0.85rem; }
.form-body { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-3 { display: grid; grid-template-columns: 1.5fr 0.7fr 1fr; gap: 1rem; }
@media (max-width: 600px) {
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
}
.form-label {
  font-size: 0.82rem; font-weight: 700; color: var(--text);
}
.req-mark { color: #ff5a5a; font-weight: 900; }
.form-body input[type="text"],
.form-body input[type="number"],
.form-body input[type="url"],
.form-body select,
.form-body textarea {
  width: 100%; padding: 0.65rem 0.8rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-body input:focus, .form-body select:focus, .form-body textarea:focus {
  outline: none; border-color: rgba(255,60,26,0.6);
  box-shadow: 0 0 0 3px rgba(255,60,26,0.15);
}
.form-body textarea { resize: vertical; min-height: 60px; }
.form-body input:invalid:not(:placeholder-shown) { border-color: rgba(239,68,68,0.6); }
.form-radio-group { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.form-radio {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; cursor: pointer;
  font-size: 0.86rem; user-select: none;
  transition: all 0.15s;
}
.form-radio input { accent-color: #ff3b1a; }
.form-radio:has(input:checked) {
  background: rgba(255,60,26,0.12);
  border-color: rgba(255,60,26,0.5);
  color: #ff8060;
}
.form-inline-two { display: flex; align-items: center; gap: 0.5rem; }
.form-inline-two input[type="number"] { max-width: 110px; }
.form-inline-sep { color: var(--text-muted); font-weight: 700; }
.form-inline-suffix { color: var(--text-muted); font-size: 0.85rem; }
.form-check-row { padding: 0.5rem 0; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  cursor: pointer; font-size: 0.9rem;
}
.form-check input { margin-top: 0.15rem; accent-color: #ff3b1a; }
.form-check a { color: var(--accent); }
.form-error {
  padding: 0.7rem 0.9rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 8px;
  color: #ff8080; font-size: 0.85rem;
}
.form-actions {
  display: flex; gap: 0.7rem; justify-content: flex-end;
  padding-top: 0.8rem; margin-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.form-cancel {
  padding: 0.7rem 1.4rem; font-size: 0.9rem; font-weight: 700;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); border-radius: 8px; cursor: pointer;
}
.form-cancel:hover { background: rgba(255,255,255,0.1); }
.form-submit {
  padding: 0.7rem 1.6rem; font-size: 0.95rem; font-weight: 800;
  background: linear-gradient(135deg, #ff3b1a, #ff6844);
  color: #fff; border: none; border-radius: 8px; cursor: pointer;
  box-shadow: 0 4px 12px rgba(255,60,26,0.3);
}
.form-submit:hover:not(:disabled) { box-shadow: 0 6px 18px rgba(255,60,26,0.5); }
.form-submit:disabled { opacity: 0.7; cursor: wait; }

/* =========================================================
 * TEMA VARYASYONLARI — mavi ve mor için değişken override'ları
 * ========================================================= */
:root[data-theme="blue"] {
  --bg: #05080f;
  --bg2: #0c1220;
  --card: #10182a;
  --card2: #172140;
  --border: rgba(59, 130, 246, 0.28);
  --border-hover: rgba(96, 165, 250, 0.65);
  --accent: #3b82f6;
  --accent2: #1e40af;
  --accent3: #60a5fa;
  --text: #e8eef8;
  --text-muted: #7a8ea6;
  --text-dim: #4c5c72;
  --glow: 0 0 24px rgba(59, 130, 246, 0.5);
  --glow-sm: 0 0 12px rgba(59, 130, 246, 0.35);
  --glow-lg: 0 0 50px rgba(30, 64, 175, 0.45);
}
:root[data-theme="purple"] {
  --bg: #0a0512;
  --bg2: #150c25;
  --card: #1a1030;
  --card2: #2a1840;
  --border: rgba(168, 85, 247, 0.28);
  --border-hover: rgba(196, 130, 255, 0.65);
  --accent: #a855f7;
  --accent2: #7e22ce;
  --accent3: #c084fc;
  --text: #f0e8f8;
  --text-muted: #9080a6;
  --text-dim: #5c4c72;
  --glow: 0 0 24px rgba(168, 85, 247, 0.5);
  --glow-sm: 0 0 12px rgba(168, 85, 247, 0.35);
  --glow-lg: 0 0 50px rgba(126, 34, 206, 0.45);
}

/* =========================================================
 * PREFS UI — nav sağ tarafında 3 küçük buton + dropdown
 * ========================================================= */
.pref-controls {
  display: flex; align-items: center; gap: 0.35rem;
  margin-left: 0.6rem;
}
.pref-btn-group { position: relative; }
.pref-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.pref-btn:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.06);
}
.pref-btn svg { width: 18px; height: 18px; }
.pref-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  z-index: 100;
  animation: prefDropIn 0.16s ease;
}
.pref-drop.open { display: block; }
@keyframes prefDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.pref-drop-title {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); padding: 0.35rem 0.5rem 0.45rem;
}
.pref-item {
  display: flex; align-items: center; gap: 0.55rem;
  width: 100%; padding: 0.5rem 0.6rem;
  background: transparent; border: none;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer; text-align: left; font-size: 0.87rem;
  font-family: inherit;
  transition: background 0.12s;
}
.pref-item:hover { background: rgba(255,255,255,0.05); }
.pref-item.active { background: rgba(255,255,255,0.08); color: var(--accent); font-weight: 700; }
.pref-swatch {
  width: 14px; height: 14px; border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.pref-flag { font-size: 1.1rem; }
.pref-emoji { font-size: 1.05rem; width: 20px; text-align: center; }
.pref-effect-list { max-height: 300px; overflow-y: auto; }

@media (max-width: 700px) {
  .pref-controls { margin-left: 0.2rem; }
  .pref-btn { width: 32px; height: 32px; }
  .pref-drop { right: -40px; min-width: 160px; }
}

/* =========================================================
 * FX LAYER — arka plan efekt partikülleri
 * ========================================================= */
.fx-layer {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  overflow: hidden;
}
.fx-particle {
  position: absolute; top: -10vh;
  animation-duration: var(--d, 8s);
  animation-delay: var(--dl, 0s);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: scale(var(--s, 1));
  will-change: transform, opacity;
}

/* ---- Fall (yukarıdan aşağı düşme, ortak) ---- */
@keyframes fx-fall {
  0%   { transform: translate3d(0, 0, 0) scale(var(--s, 1)); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate3d(var(--x, 0), 110vh, 0) scale(var(--s, 1)); opacity: 0; }
}
@keyframes fx-drift {
  0%,100% { transform: translate3d(0, 0, 0) scale(var(--s, 1)); opacity: 0.7; }
  50%     { transform: translate3d(var(--x, 20px), -20px, 0) scale(var(--s, 1.2)); opacity: 1; }
}
@keyframes fx-twinkle {
  0%,100% { opacity: 0.2; }
  50%     { opacity: 1; }
}
@keyframes fx-shoot {
  0%   { transform: translate3d(-10vw, -10vh, 0) rotate(45deg) scale(var(--s, 1)); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate3d(90vw, 110vh, 0) rotate(45deg) scale(var(--s, 1)); opacity: 0; }
}
@keyframes fx-nova {
  0%,100% { transform: scale(0.5); opacity: 0.4; }
  50%     { transform: scale(1.5); opacity: 1; }
}

/* --- Kırmızı tema efektleri --- */
.p-ash {
  width: 3px; height: 3px; border-radius: 50%;
  background: #ff8b60;
  box-shadow: 0 0 6px #ff5a2b;
  animation-name: fx-fall;
}
.p-firedrop {
  width: 2px; height: 14px;
  background: linear-gradient(to bottom, transparent, #ff3b1a, #ff8060);
  border-radius: 2px;
  animation-name: fx-fall;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  filter: blur(0.3px);
}
.p-cyber-r {
  width: 2px; height: 2px; border-radius: 50%;
  background: #ff5a2b;
  box-shadow: 0 0 8px #ff3b1a;
  animation-name: fx-twinkle;
  top: unset;
  left: var(--l, 50%);
}
.p-matrix-r {
  color: #ff5a2b;
  font-family: 'Chakra Petch', monospace;
  font-size: 14px;
  white-space: pre;
  text-shadow: 0 0 8px #ff3b1a;
  opacity: 0.7;
  animation-name: fx-fall;
  letter-spacing: 2px;
}
.p-spark {
  width: 3px; height: 3px; border-radius: 50%;
  background: #ffcc66;
  box-shadow: 0 0 10px #ff8020, 0 0 14px #ff3b1a;
  animation-name: fx-drift;
}
.p-star-r {
  width: 2px; height: 2px; border-radius: 50%;
  background: #ff9060;
  box-shadow: 0 0 5px #ff5a2b;
  animation-name: fx-twinkle;
  top: calc(var(--y, 50%) * 1%);
}

/* --- Mavi tema efektleri --- */
.p-snow {
  width: 5px; height: 5px; border-radius: 50%;
  background: #e0edff;
  box-shadow: 0 0 6px #a0c8ff;
  animation-name: fx-fall;
}
.p-raindrop {
  width: 1.5px; height: 18px;
  background: linear-gradient(to bottom, transparent, #60a5fa);
  border-radius: 2px;
  animation-name: fx-fall;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.p-cyber-b {
  width: 2px; height: 2px; border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 8px #3b82f6;
  animation-name: fx-twinkle;
}
.p-matrix-b {
  color: #60a5fa;
  font-family: 'Chakra Petch', monospace;
  font-size: 14px;
  white-space: pre;
  text-shadow: 0 0 8px #3b82f6;
  opacity: 0.7;
  animation-name: fx-fall;
  letter-spacing: 2px;
}
.p-firefly {
  width: 4px; height: 4px; border-radius: 50%;
  background: #a0f0a0;
  box-shadow: 0 0 12px #60ff60, 0 0 20px #60a5fa;
  animation-name: fx-drift;
}
.p-star-b {
  width: 2px; height: 2px; border-radius: 50%;
  background: #e0edff;
  box-shadow: 0 0 5px #a0c8ff;
  animation-name: fx-twinkle;
}

/* --- Mor tema efektleri --- */
.p-dust {
  width: 3px; height: 3px; border-radius: 50%;
  background: #e0c0ff;
  box-shadow: 0 0 6px #a855f7;
  animation-name: fx-drift;
}
.p-meteor {
  width: 3px; height: 40px;
  background: linear-gradient(to bottom, transparent, #a855f7, #e0c0ff);
  border-radius: 3px;
  filter: blur(0.5px);
  animation-name: fx-shoot;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.p-cyber-p {
  width: 2px; height: 2px; border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 8px #a855f7;
  animation-name: fx-twinkle;
}
.p-matrix-p {
  color: #c084fc;
  font-family: 'Chakra Petch', monospace;
  font-size: 14px;
  white-space: pre;
  text-shadow: 0 0 8px #a855f7;
  opacity: 0.7;
  animation-name: fx-fall;
  letter-spacing: 2px;
}
.p-stardust {
  width: 2px; height: 2px; border-radius: 50%;
  background: #d0a8ff;
  box-shadow: 0 0 6px #a855f7;
  animation-name: fx-twinkle;
}
.p-supernova {
  width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle, #fff, #c084fc 40%, transparent 70%);
  animation-name: fx-nova;
  animation-duration: calc(var(--d, 8s) * 0.8);
}
