:root {
  --bg: #0f1115;
  --surface: #12141a;
  --surface-2: #151922;
  --border: #1f232b;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f59e0b;   /* amber */
  --ok: #22c55e;       /* green */
  --warn: #ef4444;     /* red */
  --info: #3b82f6;     /* blue */
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.25);
  --radius: 10px;
}

/* Reset & Base */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
}
.zirve-dashboard {
  min-height: 100vh;       /* ekran yüksekliği kadar */
  display: flex;
  flex-direction: column;
}

.zirve-dashboard main {
  flex: 1;                 /* içerik alanı boşluğu doldurur */
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(245,158,11,.06), transparent 60%),
              radial-gradient(900px 500px at 90% -20%, rgba(239,68,68,.05), transparent 60%),
              var(--bg);
  background: url('/zpv26_assets/images/zsbg3.jpg') no-repeat center center fixed !important;
  background-size: cover;
  color: var(--text);
  font: 14px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(0.4px);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
h1, h2, h3 { margin: 0 0 .5rem; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.grid { display: grid; gap: 16px; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width:1024px) { .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width:640px) { .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: #1c1914;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.card-header {
  position: relative;
  height: 43px;
  background: url('/zpv26_assets/images/card-header.png') center / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.card-title {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.card-body { padding: 16px; }

/* Section Titles */
.section-title {
  position: relative;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  /* background: url('/zpv26_assets/images/sectiontitle_username.png') center / cover no-repeat; */
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.section-title-server-status {
    background: url('/zpv26_assets/images/dragonic-gameplay-03.jpg') center / cover no-repeat;
}
.section-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.section-title h2 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  /* color: var(--accent); */
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);

  color: #a58859; 
  text-shadow: 0 0 6px rgba(255, 220, 150, 0.3);
}
.section-title .flex { position: relative; z-index: 1; gap: 8px; }

/* Navigation */
header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.nav {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 12px 24px;
  background: url('/zpv26_assets/images/zs_kilic.png') center / cover no-repeat;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}
.nav a {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  padding: 8px 12px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--accent); }

/* Header responsive */
.header-ko { display: block; }
.header-card { display: none; }
@media (max-width:640px) {
  .header-ko { display: none; }
  .header-card { display: block; }
  .header-card .card {
    background: url('/zpv26_assets/images/zs_kilic.png') center / cover no-repeat;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .header-card .list a {
    display: block;
    padding: 12px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .header-card .list a:hover { color: var(--accent); }
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  display:none;
}
.accordion-content.open { max-height: 500px; display:block; }

/* Lists */
.list { display: flex; flex-direction: column; gap: .5rem; }
.list-item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: .4rem .5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: rgba(255,255,255,.02);
  color: #fff; /* burada beyaz yapıyoruz */
}
.list a {
  display: block;
  padding: 12px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  transition: background .2s ease, color .2s ease;
}
.list a:hover {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
}

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 9px; }
th, td { padding: .6rem .5rem; border-top: 1px solid var(--border); }
thead th { color: #94a3b8; text-align: left; }
tbody tr:hover { background-color: rgba(255,255,255,.02); }

/* Ranking Table */
.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ranking-table th {
  background: linear-gradient(180deg, #1f232b, #151922);
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.ranking-table td {
  padding: 10px;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.ranking-table tbody tr:hover {
  background: rgba(245,158,11,0.08);
  cursor: pointer;
}

/* Badge styles */
.badge {
  display: inline-block;
  padding: 0.50rem .5rem;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background-color: rgba(255,255,255,.03);
}
.badge.ok { color: var(--ok); border-color: rgba(34,197,94,.35); }
.badge.on { color: var(--ok); border-color: rgba(34,197,94,.35); }
.badge.off { color: var(--muted); border-color: rgba(156,163,175,.35); }
.badge.warn { color: var(--warn); border-color: rgba(239,68,68,.35); }


/* Inputs */
.input {
  width: 100%;
  padding: .6rem .75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: #0b0e13;
  color: var(--text);
}
.input::placeholder { color: #6b7280; }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  background-color: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  font-size: 12px;
  color: #cbd5e1;
}

/* Utility classes */
.flex { display: flex; gap: 12px; align-items: center; }
.space-between { display: flex; justify-content: space-between; align-items: center; }
.shadow { box-shadow: var(--shadow); }
.muted { color: var(--muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: #94a3b8;
  background: linear-gradient(180deg, rgba(18,20,26,.92), rgba(18,20,26,.96));
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Status dots */
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.ok { background: var(--ok); }
.dot.on { background: var(--ok); }
.dot.off { background: #6b7280; }
.dot.warn { background: var(--warn); }

/* Stacks */
.stack { display: grid; gap: 16px; }

/* Badge icons (örneğin karakter kafası) */
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}
.badge-icon img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(245,158,11,0.6));
}



#gm-table td, 
#gm-table th {
  font-size:20px;
  color: var(--text) !important; /* senin theme rengin */
}

/* gm-table içindeki status hücreleri */
#gm-table .muted {
  color: var(--muted) !important;
}

#gm-table .dot.off {
  background: var(--warn); /* veya var(--muted) */
}

#gm-table .dot.ok {
  background: var(--ok);
}

#kings-table td, 
#kings-table th {
  font-size:20px;
  color: var(--text) !important; /* senin theme rengin */
}

#kings-table .muted {
  color: var(--muted) !important;
}

#kings-table .dot.off {
  background: var(--warn); /* veya var(--muted) */
}

#kings-table .dot.ok {
  background: var(--ok);
}

#top-players td, 
#top-players th {
  font-size:20px;
  color: var(--text) !important; /* senin theme rengin */
}

#top-players .muted {
  color: var(--muted) !important;
}

#top-players .dot.off {
  background: var(--warn); /* veya var(--muted) */
}

#top-players .dot.ok {
  background: var(--ok);
}

#top-clans td, 
#top-clans th {
  font-size:20px;
  color: var(--text) !important; /* senin theme rengin */
}

#top-clans .muted {
  color: var(--muted) !important;
}

#top-clans .dot.off {
  background: var(--warn); /* veya var(--muted) */
}

#top-clans .dot.ok {
  background: var(--ok);
}

#event-table td, 
#event-table th {
  font-size:20px;
  color: var(--text) !important; /* senin theme rengin */
}

#event-table .muted {
  color: var(--muted) !important;
}

#event-table .dot.off {
  background: var(--warn); /* veya var(--muted) */
}

#event-table .dot.ok {
  background: var(--ok);
}



/* ZIRVEPANEL V26 SLIDER START */
.heroSwiper {
  width: 100%;
  position: relative;
}

.heroSwiper .swiper-slide {
  position: relative;
}

.heroSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

      
.slide-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  border-radius: 5px;
  color: #fff;
}

.slide-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.slide-content p {
  margin: 0 0 10px;
  font-size: 14px;
}

.swiper-button-next, .swiper-button-prev {
  color:#e08107;
}
/* ZIRVEPANEL V26 SLIDER END */

.zpv26_witchking {
  /* Ejderha texture */
  background: url('/zpv26_assets/images/texture/witchking.jpg') center/cover no-repeat,
              linear-gradient(180deg, #b22222, #7a0c0c);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Popup arka plan */
.swal-dark {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 8px;
}

/* Başlık */
.swal-title {
  color: #fff !important;
}

/* İçerik yazısı */
.swal-text {
  color: #fff !important;
}

/* Buton */
.swal-btn {
  background-color: orange !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
  font-weight: 600;
}
.swal-btn:hover {
  background-color: #ff9800 !important;
}


.blog-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.blog-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.blog-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

.blog-post {
  color: #eaeaea;              /* Açık gri yazı rengi */
  font-size: 1rem;
  line-height: 1.6;
}

.blog-post h1, 
.blog-post h2, 
.blog-post h3 {
  color: #fff;                 /* Başlıklar beyaz */
  margin-bottom: 0.75rem;
}

.blog-post .blog-meta {
  font-size: 0.9rem;
  color: #ccc;                 /* Meta bilgileri daha soluk */
  margin-bottom: 1rem;
}

.blog-post .blog-content {
  background: rgba(0,0,0,0.6); /* Hafif koyu arka plan */
  padding: 1rem;
  border-radius: 8px;
}

.blog-post p {
  margin-bottom: 1rem;
}



/* MyKOL form input stilleri */
#mykolForm .form-control {
  background-color: #000;   /* siyah arka plan */
  color: #fff;              /* beyaz yazı */
  border: 1px solid #444;   /* varsayılan koyu border */
}

#mykolForm .form-control::placeholder {
  color: #aaa;              /* placeholder gri */
}

#mykolForm .form-control:focus {
  background-color: #000;   /* odaklanınca da siyah kalır */
  color: #fff;              /* yazı beyaz */
  border: 1px solid #fff;   /* beyaz border */
  box-shadow: none;         /* Bootstrap’in mavi glow’unu kaldırır */
}

/* MyKOL form input stilleri */
#registerForm .form-control {
  background-color: #000;   /* siyah arka plan */
  color: #fff;              /* beyaz yazı */
  border: 1px solid #444;   /* varsayılan koyu border */
}

#registerForm .form-control::placeholder {
  color: #aaa;              /* placeholder gri */
}

#registerForm .form-control:focus {
  background-color: #000;   /* odaklanınca da siyah kalır */
  color: #fff;              /* yazı beyaz */
  border: 1px solid #fff;   /* beyaz border */
  box-shadow: none;         /* Bootstrap’in mavi glow’unu kaldırır */
}

/* ZS general form input stilleri */
.zsgeneralform .form-control {
  background-color: #000;   /* siyah arka plan */
  color: #fff;              /* beyaz yazı */
  border: 1px solid #444;   /* varsayılan koyu border */
}

.zsgeneralform .form-control::placeholder {
  color: #aaa;              /* placeholder gri */
}

.zsgeneralform .form-control:focus {
  background-color: #000;   /* odaklanınca da siyah kalır */
  color: #fff;              /* yazı beyaz */
  border: 1px solid #fff;   /* beyaz border */
  box-shadow: none;         /* Bootstrap’in mavi glow’unu kaldırır */
}


.heroSwiper .swiper-slide img {
  width: 100%;
  height: 400px; /* sabit yükseklik */
  object-fit: cover; /* resmi kırparak orantılı doldurur */
}


.zslist {
  font-size:20px;
}

.sometabletitlefonts{
  font-size:20px;
}