:root {
  --bg: #0f0f0f;
  --panel: #151515;
  --panel-soft: #181818;
  --text: #e6e6e6;
  --muted: #a8a8ac;
  --line: #2a2a2f;
  --primary: #ffcc33;
  --danger: #ff4d4d;
  --accent: #f4c542;
  --radius: 14px;
  --shadow-soft: 0 0 18px rgba(0,0,0,0.55);
}

body.light {
  --bg: #f5f5f7;
  --panel: #ffffff;
  --panel-soft: #f5f5f7;
  --text: #202020;
  --muted: #666;
  --line: #d0d0d7;
  --shadow-soft: 0 0 16px rgba(0,0,0,0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* === SABİT SAĞ / SOL REKLAMLAR === */
.ad-col {
  width: 231px;
  position: fixed;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 5;
  background: #000;
}
.ad-col.left { left: 0; }
.ad-col.right { right: 0; }

.ad-col a {
  display: block;
  width: 100%;
  height: 100%;
}

.ad-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

@media (min-width:1300px) {
  body {
    padding-left: 231px;
    padding-right: 231px;
  }
}

@media (max-width:1299px) {
  .ad-col { display: none; }
  body { padding: 0 !important; }
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111111e6;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
body.light header {
  background: #ffffffdd;
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: url("/assets/img/logo.png") no-repeat center;
  background-size: contain;
  box-shadow: 0 0 10px rgba(255,204,51,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  display: flex;
  gap: 18px;
  flex: 1;
}
.nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,#ffcc33,#ff9900);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease-out;
}
.nav a:hover::after {
  transform: scaleX(1);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  position: relative;
}
.search-box input {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 26px 6px 10px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 150px;
}
.search-box span {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--muted);
}

.btn-login,
.btn-register {
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.btn-login {
  background: #ffcc33;
  color: #000;
}
.btn-login:hover { background: #ffd95a; }
.btn-register {
  background: #ff4d4d;
  color: #fff;
}
.btn-register:hover { background: #ff6969; }

.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}
.theme-toggle:hover {
  box-shadow: 0 0 10px rgba(255,204,51,0.4);
}

.burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.burger span {
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (max-width:900px) {
  .nav { display: none; }
  .search-box { display: none; }
  .burger { display: flex; }
}

.mobile-nav {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--line);
  background: #111111f2;
}
body.light .mobile-nav {
  background: #ffffffee;
}
.mobile-nav a {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  font-size: 14px;
}
.mobile-nav a + a {
  border-top: 1px solid var(--line);
}

/* === ANA İÇERİK === */
.center-col {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  position: relative;
  z-index: 1;
}

/* === SLIDER === */
.hero {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: .6;
}
.swiper-pagination-bullet-active {
  background: #ffcc33;
  opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* === İSTATİSTİKLER === */
.stats-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.stat-card {
  background: var(--panel);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #242424;
  box-shadow: var(--shadow-soft);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width:768px) {
  .stats-row {
    grid-template-columns: repeat(2,1fr);
  }
}

/* === FİLTRELER === */
.filters {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.filters-label {
  font-weight: 600;
  font-size: 14px;
  margin-right: 4px;
}
.filters input[type="text"] {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  min-width: 160px;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--muted);
  cursor: pointer;
}
.chip.active {
  background: var(--primary);
  color: #000;
  border-color: #000;
}

@media (max-width:768px) {
  .filters {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === SUNUCU LİSTESİ === */
h2.section-title {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
h2.section-title span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.servers-wrapper {
  margin-top: 6px;
}

.server {
  background: var(--panel);
  border: 1px solid #1f1f1f;
  padding: 14px 16px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s;
  position: relative;
  overflow: hidden;
}
.server::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,204,51,0.15), transparent 55%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.server:hover {
  transform: translateY(-3px);
  border-color: #f1c40f;
  box-shadow: 0 0 24px rgba(0,0,0,0.7);
}
.server:hover::before {
  opacity: 1;
}

.server-logo {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 8px rgba(0,0,0,0.8),
              inset 0 0 4px rgba(255,255,255,0.18);
}
.server-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.meta {
  font-size: 13px;
  color: var(--muted);
}
.meta .countdown {
  margin-top: 4px;
  font-size: 12px;
  color: #ffd95a;
  font-weight: 600;
}

/* BADGE’LER – PREMIUM KÖŞELİ */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.badge {
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* LEVEL → MAVİ */
.badge.level {
  background: linear-gradient(135deg,#6ad2ff,#3ba9e6) !important;
  color: #000 !important;
  box-shadow: 0 0 10px rgba(74,194,255,0.8);
}

/* EMEK → SARI */
.badge.emek {
  background: linear-gradient(135deg,#ffd86b,#f1b60d) !important;
  color: #000 !important;
  box-shadow: 0 0 10px rgba(255,215,75,0.8);
}

/* OLDSCHOOL → BAKIR / BRONZ */
.badge.oldschool {
  background: linear-gradient(135deg,#b87333,#7a3f10) !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(184,115,51,0.75);
}

/* NEWSCHOOL → FUŞYA */
.badge.newschool {
  background: linear-gradient(135deg,#ff4fd8,#b5179e) !important;
  color: #fff !important;
  box-shadow: 0 0 14px rgba(255,79,216,0.9);
}

/* WS → MOR */
.badge.ws {
  background: linear-gradient(135deg,#9b5de5,#5a189a) !important;
  color: #fff !important;
  box-shadow: 0 0 6px rgba(155,93,229,.6) !important;
}

/* OTO AV → MOR */
.badge.otoav {
  background: linear-gradient(135deg,#7c3aed,#2e1065) !important;
  color: #f5f3ff !important;
  box-shadow: 0 0 14px rgba(124,58,237,0.9);
}

/* KOLAY → YEŞİL */
.badge.kolay {
  background: linear-gradient(135deg,#32cd32,#1e9d1e) !important;
  color: #000 !important;
  box-shadow: 0 0 10px rgba(50,205,50,0.9);
}

/* ORTA → TURUNCU */
.badge.orta {
  background: linear-gradient(135deg,#ffb347,#ff9800) !important;
  color: #000 !important;
  box-shadow: 0 0 10px rgba(255,152,0,0.9);
}

/* ZOR → YUMUŞAK KIRMIZI */
.badge.zor {
  background: linear-gradient(135deg,#b91c1c,#7f1d1d) !important;
  color: #fff5f5 !important;
  box-shadow: 0 0 8px rgba(185,28,28,0.55);
}

/* Aksiyon butonları */
.actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid #444;
  background: #333;
  color: #fff;
}
.pill:hover {
  background: #555;
}
.pill.visit {
  background: #f1c40f;
  color: #000;
  border-color: #d8b100;
  box-shadow: 0 0 12px rgba(255,215,75,0.9);
}
.pill.visit:hover {
  background: #ffd950;
}

/* Discord butonu */
.pill.discord {
  background: #5865F2;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(88,101,242,.6);
}
.pill.discord:hover {
  background: #4752c4;
}

/* Discord + butonlar hizalama (detay sayfası) */
.actions.actions-vertical {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 30px;
}
.actions-vertical .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Discord ikonu */
.discord-icon {
  width: 55px;
  height: 65px;
  background: #5865F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(88,101,242,.75);
}
.discord-icon img {
  width: 66px;
  height: 80px;
}

@media (max-width:720px) {
  .server {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }
}

.server.hidden {
  display: none;
}

/* Detay sayfası için sunucu kartına overlay link */
.server {
  position: relative;
}
.server-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: auto !important;
}
.server .actions {
  position: relative;
  z-index: 10;
}

/* FOOTER – eski basit class’lar (compat) */
.footer-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-links {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-links a {
  color: var(--primary);
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* === LOGIN & REGISTER SAYFALARI === */
.auth-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 80px auto;
  background: var(--panel);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.auth-wrapper h2 {
  margin: 0 0 15px;
  text-align: center;
}
.auth-wrapper input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
}
.auth-wrapper button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.auth-wrapper a {
  color: var(--accent);
  text-decoration: none;
}
.auth-wrapper p {
  text-align: center;
  margin-top: 10px;
}

/* === FOOTER – FINAL 3 KOLON === */
.footer-3col {
  margin-top: 40px;
  padding: 40px 20px 25px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.45);
}
.footer-3col .f-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}
.footer-3col .f-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ddd;
}
.footer-3col .f-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-3col .f-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-3col .f-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}
.footer-3col a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}
.footer-3col a:hover {
  color: var(--primary);
}
.footer-3col .f-line {
  width: 100%;
  height: 1px;
  background: #222;
  margin: 25px 0 10px;
}
.footer-3col .f-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
}
@media (max-width:768px) {
  .footer-3col .f-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

/* 1. ve 3. kolonun altını dengele */
.footer-3col .f-container .f-col:first-child,
.footer-3col .f-container .f-col:last-child {
  padding-bottom: 15px;
}

/* === VİTRİN / SIDEBOX === */
.side-box {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #141414, #0f0f0f);
  border-radius: 16px;
  border: 1px solid rgba(255,204,51,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.side-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc33, transparent);
  opacity: 0.8;
}
.side-box h4 {
  font-size: 13px;
  margin-bottom: 12px;
  color: #ffcc33;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding-bottom: 0;
  border-bottom: none;
}
.side-server {
  display: block;
  padding: 11px 12px;
  margin-bottom: 9px;
  background: linear-gradient(180deg,#1c1c1c,#151515);
  border-radius: 12px;
  font-size: 13px;
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.side-server small {
  color: #9a9a9a;
  font-size: 11px;
}
.side-server:hover {
  background: linear-gradient(180deg,#242424,#191919);
  color: #ffcc33;
  transform: translateX(4px) scale(1.01);
  border-color: rgba(255,204,51,0.45);
}
.side-server::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,#ffcc33,#ff9900);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.side-server:hover::before {
  opacity: 1;
}
.side-server:hover small {
  color: #ffd966;
}
.side-server:last-child {
  margin-bottom: 0;
}
/* ikinci vitrine NEW etiketi */
.side-box:nth-of-type(2) .side-server::after {
  content: "NEW";
  position: absolute;
  top: 6px;
  right: 8px;
  background: #ffcc33;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
}

/* === SERVER DETAY AÇIKLAMA BLOKLARI === */

/* Kutu arka plan & çerçeve */
.server-box {
  background: linear-gradient(135deg,#2b1714,#150b0a);
  border: 1px solid rgba(255,204,136,0.4);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 14px rgba(0,0,0,0.6);
}

/* Başlık */
.server-box h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
  color: #ffd58a;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Başlık solundaki altın çizgi */
.server-box h3::before {
  content: "";
  width: 6px;
  height: 26px;
  background: linear-gradient(180deg,#ffcc66,#ff9966);
  border-radius: 999px;
}

/* Başlık altı ince çizgi */
.server-box hr {
  border: none;
  height: 1px;
  margin: 6px 0 16px 0;
  background: linear-gradient(90deg,transparent,#ffcc66,transparent);
}

/* Paragraflar */
.server-box p {
  color: #f5e6d0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

/* Listeler */
.server-box ul {
  margin: 0 0 12px 20px;
  padding: 0;
  list-style: disc;
  font-size: 14px;
  line-height: 1.6;
  color: #f5e6d0;
}

/* GENEL BLOK STİLİ (Detaydaki section’lar) */
section {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background: #151515;
  color: #ffd9a6;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(255,204,136,0.25);
  box-shadow: 0 0 10px rgba(255,200,120,0.15);
}

/* BAŞLIKLAR */
section h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffddaf;
  font-weight: bold;
}

/* ALT AÇIKLAMALAR */
section p {
  font-size: 14px;
  text-align: center;
  color: #eec89f;
  margin-bottom: 20px;
}

/* TABLO */
.bio-table {
  width: 100%;
  border-collapse: collapse;
  background: #2a1916;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
}
.bio-table th {
  background: #c57a40;
  padding: 8px;
  text-align: left;
  color: #fff;
}
.bio-table td {
  padding: 8px;
  border-bottom: 1px solid #3a2622;
  color: #ffdebd;
}
.bio-table tr:nth-child(even) {
  background: #241512;
}

/* BATTLEPASS KUTUSU */
.bp-box {
  display: block;
  background: #2a1916;
  padding: 15px;
  border-radius: 10px;
}
.bp-box ul {
  width: 100%;
  padding-left: 18px;
  list-style: none;
}
.bp-box li {
  padding: 10px;
  border-bottom: 1px solid #3b2520;
}
.bp-info {
  width: 100%;
  background: #3b2420;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

/* PARTNER GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
  margin-top: 20px;
}
.p-item {
  text-align: center;
  background: #2e1b17;
  border: 1px solid #c57a40;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* GENEL ÖZELLİKLER KUTULARI */
.ozel-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
  margin-top: 20px;
}
.ozel-grid div {
  background: #2e1b17;
  border: 1px solid #c57a40;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* Sunucu bilgi tablosu (flex grid) */
.bio-flex-table {
  width: 100%;
  background: #2a1916;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c57a40;
}
.bio-row {
  display: grid;
  grid-template-columns: 50px 1fr 60px 1.2fr 60px;
  padding: 8px 10px;
  border-bottom: 1px solid #3a2622;
  font-size: 13px;
  color: #ffe1c4;
}
.bio-header {
  background: #c57a40;
  color: white;
  font-weight: bold;
}
.bio-row:last-child {
  border-bottom: none;
}
@media (max-width:500px) {
  .bio-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }
  .bio-row div:nth-child(3),
  .bio-row div:nth-child(4),
  .bio-row div:nth-child(5) {
    padding-left: 10px;
  }
}

/* Açıklama boşluk ayarları */
.server-description-box h2,
.server-description-box h3 {
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}
.server-description-box p {
  margin: 8px 0 !important;
}
.server-description-box ul {
  margin: 5px 0 10px 20px !important;
}
.server-description-box li {
  margin-bottom: 4px !important;
}
.server-description-box hr {
  margin: 14px 0 !important;
}
/* === FOOTER FINAL FIX (EN ÜSTTEKİ HER ŞEYİ OVERRIDE EDER) === */
.footer-3col {
    margin-top: 40px;
    padding: 40px 20px 25px;
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.45);
    width: 100% !important;
}

.footer-3col .f-container {
    max-width: 1200px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px !important;
    align-items: start !important;
    justify-items: start !important;
}

.footer-3col .f-col {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* … devamı … */
.footer-3col .f-logo,
.footer-3col .f-title {
    font-weight: 700;
    color: #fff;
}

.footer-3col .f-desc,
.footer-3col a,
.footer-3col p {
    font-size: 14px;
    color: #ccc;
}

.footer-3col a:hover {
    color: var(--primary);
}

.footer-3col .f-line {
    width: 100%;
    height: 1px;
    background: #222;
    margin: 25px 0 10px;
}

.footer-3col .f-bottom {
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ================================
    FOOTER FINAL v1 (PREMIUM 3 KOLON)
   ================================ */

footer.footer-3col {
    margin-top: 40px;
    padding: 40px 20px 25px;
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.45);
    width: 100%;
}

/* GRID YAPISI */
footer.footer-3col .f-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* KOLONLAR */
footer.footer-3col .f-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

/* LOGO */
footer.footer-3col .f-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* BAŞLIKLAR */
footer.footer-3col .f-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* AÇIKLAMA METNİ */
footer.footer-3col .f-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

/* LİNKLER */
footer.footer-3col a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 6px;
    display: block;
}

footer.footer-3col a:hover {
    color: var(--primary);
}

/* İLETİŞİM YAZILARI */
footer.footer-3col .f-col p {
    color: #ddd;
    font-size: 15px;
    margin: 0 0 6px 0;
}

footer.footer-3col small {
    color: #aaa;
    font-size: 13px;
}

/* AYIRICI ÇİZGİ */
footer.footer-3col .f-line {
    width: 100%;
    height: 1px;
    background: #222;
    margin: 25px 0 10px;
}

/* ALT METİN */
footer.footer-3col .f-bottom {
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ========== MOBİL DÜZEN ========== */
@media (max-width: 768px) {
    footer.footer-3col .f-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    footer.footer-3col .f-col {
        align-items: center;
    }
}
/* ================================
      MOBİL FOOTER PERFECT v3
   ================================ */

@media (max-width: 768px) {

    footer.footer-3col {
        padding: 32px 18px 22px;
    }

    /* 3 kolon → 1 kolon */
    footer.footer-3col .f-container {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        text-align: center !important;
    }

    /* Kolonların ortalanması */
    footer.footer-3col .f-col {
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* LOGO */
    footer.footer-3col .f-logo {
        font-size: 22px;
        margin-bottom: 6px;
    }

    /* BAŞLIKLAR */
    footer.footer-3col .f-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    /* Linkler */
    footer.footer-3col a {
        font-size: 15px;
        margin: 6px 0;
        display: block;
    }

    /* İletişim yazıları */
    footer.footer-3col .f-col p {
        font-size: 15px;
        line-height: 1.45;
        margin: 3px 0;
    }

    footer.footer-3col small {
        font-size: 13px;
        margin-top: 6px;
        display: block;
        color: #aaa;
    }

    /* Alt çizgi */
    footer.footer-3col .f-line {
        margin: 22px 0 14px !important;
    }

    /* Alt telif yazısı */
    footer.footer-3col .f-bottom {
        text-align: center !important;
        font-size: 13px;
        line-height: 1.45;
        padding: 0 12px;
    }
}
/* ============================================
   PAGINATION — FINAL PREMIUM VERSION v2
   ============================================ */

/* Tüm pagination alanı */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

/* Sayıların olduğu satır */
.page-numbers {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

/* Ortak stil */
.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Aktif sayfa */
.pagination span {
    background: #ffaa00;
    color: #000;
    font-weight: 700;
}

/* Önceki – Sonraki */
.page-arrows {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    width: 260px; /* Masaüstünde yakın ama düzenli */
}

.page-arrows a,
.page-arrows span {
    min-width: 80px;
    background: #222;
}

/* ============================================
   MOBİL — NUMARALAR TEK SATIR, OKLAR ALTA
   ============================================ */
@media (max-width: 600px) {

    .pagination {
        flex-direction: column;
        align-items: center;
    }

    .page-numbers {
        overflow-x: auto;
        scrollbar-width: none;
        gap: 6px;
    }

    .page-numbers::-webkit-scrollbar {
        display: none;
    }

    .pagination a,
    .pagination span {
        min-width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
    }

    /* Önceki / Sonraki ayrı satırda */
    .page-arrows {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 40px;
        margin-top: 16px;
    }
}
/* ============================
   MASAÜSTÜ — ORİJİNAL PAGINATION
   ============================ */
@media (min-width: 900px) {

    /* Pagination satırını tek sıra yap */
    .pagination {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 22px 0;
        flex-wrap: nowrap !important;
        width: 100%;
    }

    /* Sayı kutuları */
    .pagination a,
    .pagination span {
        background: #333;
        color: #fff;
        padding: 8px 14px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
    }

    /* Aktif sayı */
    .pagination span {
        background: #333333;
        color: #ffffff;
        font-weight: 700;
    }

    /* Önceki / Sonraki masaüstünde sayıların DİBİNDE olacak */
    .page-arrows {
        display: flex !important;
        gap: 20px !important;
        margin: 0 15px !important;
        padding: 0 !important;
    }
}
@media (max-width: 768px) {
    .footer-3col .f-container {
        text-align: center !important;
        justify-items: center !important;
        align-items: center !important;
    }

    .footer-3col .f-col {
        align-items: center !important;
        text-align: center !important;
    }
}
@media (max-width: 600px) {
    .page-arrows span {
        color: #fff !important; /* beyaza yakın gri */
        background: #333 !important; /* aktif olmayan kutu rengi */
        opacity: 0.8 !important; /* disable efekti */
    }
}
@media (min-width: 900px) {
    .pagination {
        display: flex !important;
        flex-direction: column !important; /* Sayılar üstte, oklar altta */
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .page-arrows {
        width: 260px !important;
        display: flex !important;
        justify-content: space-between !important;
        margin-top: 5px !important;
        padding: 0 !important;
    }
}
.sf-input:focus {
    border-color: rgba(148,163,184,0.35) !important;
    box-shadow: none !important;
    background: rgba(15,23,42,0.85) !important;
    color: #fff !important;
    outline: none !important;  /* Chrome mavi çizgiyi KALDIR */
}

.form-control:focus {
    background-color: rgba(15,23,42,0.85) !important;
    border-color: rgba(148,163,184,0.35) !important;
    box-shadow: none !important;
    color: #fff !important;
    outline: none !important;
}

input[type=number]:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=password]:focus] {
    background-color: rgba(15,23,42,0.85) !important;
    color: #fff !important;
    border-color: rgba(148,163,184,0.35) !important;
}
/* === BİLDİRİM (TEMİZ VE ÇAKIŞMASIZ) === */
.notification-wrapper {
    position: relative;
    z-index: 9000;
    margin-left: 15px;
}

.notif-btn {
    background: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    transition: 0.2s;
    z-index: 9010;
}

.notif-btn:hover {
    background: #333;
}

.notif-count {
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 20px;
    position: absolute;
    top: -6px;
    right: -6px;
}

/* DROPDOWN */
.notif-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    width: 260px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    padding: 10px;
    display: none;
    z-index: 99999; /* HER ŞEYİN ÜSTÜNDE */
}

.notif-dropdown.active {
    display: block;
}

.notif-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffcc33;
}

.notif-item-title {
    color: #fff;
    font-weight: 600;
}

.notif-item-text {
    color: #ccc;
    font-size: 13px;
}

.notif-item-date {
    color: #777;
    font-size: 11px;
    margin-top: 4px;
}

.notif-footer {
    display: block;
    margin-top: 8px;
    color: #4a9fff;
    font-size: 13px;
    text-align: center;
}

/* === MOBİL DÜZEN === */
@media (max-width: 768px) {
    .notification-wrapper {
        position: static;
    }

    .notif-dropdown {
        position: fixed;
        top: 70px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: 330px;
    }
}

/* HEADER WRAP DROPDOWN KESMESİN DİYE */
.top-right,
.header-wrap {
    overflow: visible !important;
}
#notifBtn {
    position: relative !important;
    z-index: 9999999 !important;
    pointer-events: auto !important;
}
.notif-dropdown { display: none; }
.notif-dropdown.active { display: block; }
/* === BİLDİRİM LINK STİL TEMİZLEME === */
.notif-dropdown a {
    text-decoration: none !important;
    color: inherit !important;
}

.notif-dropdown a:hover {
    text-decoration: none !important;
    color: #fff !important;
}
/* Bildirim başlık – içerik arası boşluk */
.notif-item-title {
    margin-bottom: 6px;
}
.logo, .logo * {
    color: var(--text) !important;
}
