/* ==========================================================================
   PVP Haftası - Metin2 PVP Keşif ve Tanıtım WordPress Teması Stilleri
   Tasarım: React 1:1 Birebir Piksel Uyumlu Sürüm (v1.4.0)
   ========================================================================== */

:root {
  --bg-main: #07080b;
  --bg-surface: #0e121a;
  --bg-surface-hover: #151c28;
  --bg-card: #0c0f16;
  --bg-card-border: #1b2332;
  --bg-card-gold-border: #f59e0b;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;
  --color-flame: #ef4444;
  --color-flame-dark: #dc2626;
  --color-success: #10b981;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Rajdhani', 'Cinzel', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --shadow-flame: 0 0 25px rgba(239, 68, 68, 0.3);
}

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

body {
  background-color: #07080b;
  background-image: radial-gradient(circle at 50% -10%, #1c1507 0%, #090b10 40%, #06070a 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Geniş ve Dengeli Ana Konteyner (Kuleler Arasında Tam Ortalanmış)
   ========================================================================== */

/* ==========================================================================
   Geniş ve Dengeli Ana Konteyner (Kulelerle Kesinlikle Çarpışmaz - React 1:1)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1040px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1320px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 1440px) {
  .header-inner {
    max-width: 1040px;
  }
}

@media (min-width: 1600px) {
  .header-inner {
    max-width: 1180px;
  }
}

@media (min-width: 1800px) {
  .header-inner {
    max-width: 1320px;
  }
}


/* ==========================================================================
   Header (Üst Bar) - React 1:1 Birebir Tasarım
   ========================================================================== */
.site-header {
  background: rgba(9, 11, 16, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #181f2c;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo & Alt Işıltılı Çizgi */
.brand-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.brand-logo-wrap:hover {
  transform: scale(1.02);
}

.brand-logo-text {
  display: flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-txt-white {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.logo-txt-gold {
  margin-left: 6px;
  background: linear-gradient(90deg, #fde68a, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.7));
}

.logo-glow-bar {
  width: 100%;
  height: 3px;
  margin-top: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, transparent);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.85);
}

/* Menü Navigasyon */
.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .site-nav-menu {
    display: none;
  }
}

.nav-item-btn {
  padding: 7px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-item-btn:hover {
  color: #ffffff;
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-1px);
}

.nav-item-btn.active {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 9999px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
  font-weight: 900;
}

/* Header Sağ CTA Butonu */
.header-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-promote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
  border: 1px solid #fef08a;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-header-promote:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.7);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid #1b2332;
  color: #fff;
  font-size: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   Sol ve Sağ Yan Kule Reklamları (160x600 Skyscraper) - 1:1 Piksel Uyumlu
   ========================================================================== */

/* ==========================================================================
   Sol ve Sağ Yan Kule Reklamları (128px-140px) - SIFIR ÇAKIŞMA GARANTİLİ
   ========================================================================== */
.side-tower-ad {
  position: fixed;
  top: 10px;
  bottom: 10px;
  width: 128px;
  z-index: 90;
  display: none;
  user-select: none;
  pointer-events: auto;
}

@media (min-width: 1280px) {
  .side-tower-ad {
    display: flex;
    flex-direction: column;
  }
}

.tower-left {
  left: 8px;
}

.tower-right {
  right: 8px;
}

@media (min-width: 1536px) {
  .side-tower-ad {
    width: 140px;
  }
  .tower-left {
    left: 14px;
  }
  .tower-right {
    right: 14px;
  }
}

@media (min-width: 1780px) {
  .side-tower-ad {
    width: 150px;
  }
  .tower-left {
    left: 20px;
  }
  .tower-right {
    right: 20px;
  }
}


.tower-inner-card {
  height: 100%;
  width: 100%;
  border-radius: 18px;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px dashed rgba(245, 158, 11, 0.7);
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.2);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tower-inner-card:hover {
  border-color: rgba(245, 158, 11, 1);
  box-shadow: 0 4px 30px rgba(245, 158, 11, 0.35);
}

/* Üst Sponsor Etiketi */
.tower-tag-top {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.tower-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px #f59e0b;
  display: inline-block;
}

.tower-tag-txt {
  font-family: monospace;
  font-size: 9.5px;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Orta İçerik */
.tower-center-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 2px;
  margin: auto 0;
}

.tower-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.tower-inner-card:hover .tower-icon-box {
  transform: scale(1.06);
}

.tower-dim-pill {
  display: inline-block;
  padding: 2.5px 8px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-family: monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.tower-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
  flex-shrink: 0;
}

.tower-desc {
  font-size: 10.5px;
  color: #cbd5e1;
  line-height: 1.4;
  padding: 0 2px;
  margin: 0;
}

/* Alt Buton */
.tower-bottom-wrap {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
}

.btn-tower-promote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 9px 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-tower-promote:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.55);
}

/* Resimli Kule Reklamı Görünümü */
.tower-img-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.3);
  background: #0a0c12;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.tower-img-link:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.5);
}

.tower-img-content {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.tower-img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tower-img-link:hover .tower-img-content img {
  transform: scale(1.05);
}

.tower-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  pointer-events: none;
}

.tower-img-bottom-info {
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  text-align: center;
  z-index: 10;
}

.tower-img-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
  line-height: 1.2;
}

/* ==========================================================================
   Hero Rozeti - TÜRKİYE'NİN PVP KEŞİF VE TANITIM PORTALI
   ========================================================================== */
.hero-portal-wrap {
  text-align: center;
  margin: 28px auto 22px;
  padding: 0 16px;
}

.hero-portal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 9999px;
  background: rgba(18, 15, 10, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-sparkle {
  font-size: 16px;
}

/* ==========================================================================
   6'LI REKLAM VİTRİNİ (Mega VIP Showcase) - 1:1 Birebir Tasarım
   ========================================================================== */
.section-showcase-wrap {
  padding: 10px 0 32px;
}

.showcase-outer-card {
  position: relative;
  border-radius: 24px;
  padding: 26px 28px;
  background: linear-gradient(180deg, #1c1507 0%, #100e0a 45%, #08090d 100%);
  border: 2px solid rgba(245, 158, 11, 0.75);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.22);
  overflow: hidden;
}

/* Üst Başlık Satırı */
.showcase-header-row {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.showcase-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 2px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-icon-inner {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fde68a;
  font-size: 22px;
}

.showcase-title-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.showcase-main-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0;
}

.showcase-badge-pill {
  display: inline-block;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.showcase-sub-text {
  color: #cbd5e1;
  font-size: 12.5px;
  margin: 4px 0 0;
}

.btn-showcase-promote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-showcase-promote:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.6);
}

/* 6 Slot Grid */
.showcase-slots-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .showcase-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .showcase-slots-grid {
    grid-template-columns: 1fr;
  }
}

/* Boş Reklam Slot Kartı (Varsayılan 1:1 Görünüm) */
.showcase-slot-card {
  background: #0c0f16;
  border: 2px dashed rgba(245, 158, 11, 0.45);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 230px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.showcase-slot-card:hover {
  border-color: rgba(245, 158, 11, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.25);
}

.slot-top-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.slot-pill-badge {
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  font-family: monospace;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-dim-text {
  font-family: monospace;
  font-size: 10px;
  color: #94a3b8;
}

.slot-center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.slot-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fbbf24;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.showcase-slot-card:hover .slot-icon-box {
  transform: scale(1.08);
}

.slot-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.slot-desc {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

.slot-bottom-action {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.btn-slot-promote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-slot-promote:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.5);
}

/* Resimli Banner Slot Kartı */
.slot-image-link {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  overflow: hidden;
}

.slot-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-slot-card:hover .slot-banner-img {
  transform: scale(1.05);
}

.slot-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.slot-img-badge-row {
  position: relative;
  z-index: 10;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-img-bottom-info {
  position: relative;
  z-index: 10;
  padding: 12px;
  text-align: left;
}

.slot-img-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.slot-img-desc {
  font-size: 11px;
  color: #cbd5e1;
  margin: 3px 0 8px;
  line-height: 1.3;
}

.slot-img-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
}

/* ==========================================================================
   Yana Sabit Yuvarlak Sosyal Medya Butonları (YouTube, Discord, WhatsApp)
   ========================================================================== */
.floating-social-circles {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  user-select: none;
}

@media (min-width: 1280px) {
  .floating-social-circles {
    right: 172px;
  }
}

@media (min-width: 1600px) {
  .floating-social-circles {
    right: 180px;
  }
}

.social-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-circle-btn:hover {
  transform: scale(1.12);
}

.social-circle-btn.btn-youtube {
  background: #FF0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.45);
}

.social-circle-btn.btn-youtube:hover {
  box-shadow: 0 4px 25px rgba(255, 0, 0, 0.7);
}

.social-circle-btn.btn-discord {
  background: #5865F2;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.45);
}

.social-circle-btn.btn-discord:hover {
  box-shadow: 0 4px 25px rgba(88, 101, 242, 0.7);
}

.social-circle-btn.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.social-circle-btn.btn-whatsapp:hover {
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
}

.social-circle-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   Giriş Sponsoru Pop-up Modalı (1:1 React EntrySponsorModal Birebir Tasarım)
   ========================================================================== */
.entry-sponsor-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: modalOverlayFadeIn 0.25s ease-out;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.entry-sponsor-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.entry-sponsor-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  border-radius: 24px;
  background: #0a0d14;
  border: 2px solid rgba(245, 158, 11, 0.85);
  box-shadow: 0 0 80px rgba(245, 158, 11, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* Modal Ambient Top Glow */
.modal-top-glow {
  position: absolute;
  top: 0;
  right: 25%;
  width: 380px;
  height: 110px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

/* Modal Header Bar */
.modal-header-bar {
  padding: 12px 18px;
  border-bottom: 1px solid #1b2332;
  background: #0c101a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
  flex-shrink: 0;
}

/* Media Switcher Tabs (Video vs Görsel) */
.media-tabs-group {
  display: inline-flex;
  background: #141a27;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  gap: 4px;
}

.media-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 800;
  color: #94a3b8;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.media-tab-btn:hover {
  color: #ffffff;
}

.media-tab-btn.active-video {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.media-tab-btn.active-image {
  background: #f59e0b;
  color: #020617;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Modal Close Button */
.modal-close-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.6);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-close-icon-btn:hover {
  background: #1e293b;
  color: #ffffff;
  transform: scale(1.08);
}

/* 16:9 Aspect Ratio Media Viewport */
.modal-media-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid #1b2332;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-image-wrap {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  position: relative;
}

.modal-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.modal-image-wrap:hover .modal-banner-img {
  transform: scale(1.02);
}

/* Modal Footer Bar */
.modal-footer-bar {
  padding: 16px 22px;
  background: #090c13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.modal-server-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.modal-footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-modal-skip {
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-skip:hover {
  background: #334155;
  color: #ffffff;
}

.btn-modal-promote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  color: #020617;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-promote:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.6);
}

/* ==========================================================================
   Server Cards & Grid (Haftanın Öne Çıkanları & Alt Bölümler)
   ========================================================================== */
.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.server-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.server-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.card-banner {
  height: 140px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s;
}

.server-card:hover .card-banner img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-partner {
  background: var(--color-gold);
  color: #000;
}

.card-body {
  padding: 24px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.countdown-box {
  background: #121622;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #18202d;
  padding-top: 12px;
}

.btn-inspect {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-inspect:hover {
  background: var(--color-gold);
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid #181f2c;
  padding: 40px 0 24px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

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

.footer-brand p {
  color: #94a3b8;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fbbf24;
}

.discord-widget-banner {
  background: #0d111a;
  border: 1px solid #1b2332;
  border-radius: 14px;
  padding: 16px;
}

.discord-widget-banner h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.discord-widget-banner p {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 12px;
}

.btn-gold {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid #141924;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #64748b;
  font-size: 12px;
}

/* ==========================================================================
   Server Logo & Banner Dynamic Styles
   ========================================================================== */
.server-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.server-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a2234 0%, #080a0f 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  font-size: 22px;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  user-select: none;
}

.server-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   PVP Haftası - Alt Sayfalar Stilleri (1:1 React Piksel Uyumlu Tasarım)
   ========================================================================== */

.page-content-wrap {
  padding: 36px 0 60px;
  min-height: calc(100vh - 350px);
}

.page-title-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill-badge-red {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.pill-badge-amber {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.pill-badge-pink {
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #f472b6;
}

.page-main-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-sub-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Filter Strip & Toolbar */
.filter-strip-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.search-input-box {
  position: relative;
  width: 300px;
  max-width: 100%;
}

.search-input-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.search-input-box input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: #141924;
  border: 1px solid #1f293d;
  border-radius: 12px;
  color: #ffffff;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input-box input:focus {
  border-color: #f59e0b;
}

.platform-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.tab-btn-pill {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  background: #141924;
  border: 1px solid #1b2332;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn-pill:hover {
  color: #ffffff;
  background: #182030;
}

.tab-btn-pill.active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #000000;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.btn-add-channel {
  margin-left: auto;
  padding: 10px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  transition: transform 0.2s, filter 0.2s;
}

.btn-add-channel:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Category Pills (PVP Serverler) */
.category-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cat-pill {
  padding: 8px 16px;
  border-radius: 12px;
  background: #0c0f16;
  border: 1px solid #1b2332;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-pill:hover {
  color: #fff;
  border-color: #334155;
}

.cat-pill.active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #000;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
}

.custom-form-input {
  width: 100%;
  padding: 10px 14px;
  background: #141924;
  border: 1px solid #1f293d;
  border-radius: 12px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.custom-form-input:focus {
  border-color: #f59e0b;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.view-toggle-btn {
  background: none;
  border: none;
  color: #64748b;
  font-size: 15px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.view-toggle-btn.active {
  background: #f59e0b;
  color: #000;
}

/* ==========================================================================
   1. STREAMERS (PVP VİDEOLAR) GRID
   ========================================================================== */
.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.streamer-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 24px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.streamer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
}

.streamer-plat-top {
  margin-bottom: 16px;
}

.plat-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plat-youtube {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.plat-twitch {
  background: rgba(145, 70, 255, 0.15);
  border: 1px solid rgba(145, 70, 255, 0.4);
  color: #bf94ff;
}

.plat-kick {
  background: rgba(83, 252, 24, 0.12);
  border: 1px solid rgba(83, 252, 24, 0.35);
  color: #53fc18;
}

.streamer-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  position: relative;
  margin-bottom: 16px;
  transition: transform 0.25s;
}

.streamer-card:hover .streamer-avatar-wrap {
  transform: scale(1.06);
}

.border-youtube {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
}

.border-twitch {
  background: linear-gradient(135deg, #9146ff, #bf94ff);
}

.border-kick {
  background: linear-gradient(135deg, #53fc18, #10b981);
}

.streamer-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0d111a;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-youtube { color: #f87171; }
.icon-twitch { color: #bf94ff; }
.icon-kick { color: #53fc18; }

.streamer-avatar-hover {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
}

.streamer-card:hover .streamer-avatar-hover {
  opacity: 1;
}

.streamer-meta {
  margin-top: 4px;
}

.streamer-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  transition: color 0.2s;
}

.streamer-card:hover .streamer-name {
  color: #fbbf24;
}

.streamer-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ==========================================================================
   2. CALENDAR (AÇILIŞ TAKVİMİ) GRID
   ========================================================================== */
.calendar-servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .calendar-servers-grid {
    grid-template-columns: 1fr;
  }
}

.calendar-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}

.calendar-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: #111520;
}

.calendar-card.is-sponsor {
  background: linear-gradient(135deg, #171207 0%, #0c0f16 100%);
  border: 2px solid rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
}

.cal-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cal-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cal-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #141924;
  border: 1px solid #1f293d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cal-server-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.cal-server-name a {
  color: inherit;
}

.cal-server-name a:hover {
  color: #fbbf24;
}

.badge-partner-gold {
  background: #f59e0b;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.cal-server-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.cal-time-pill {
  font-family: monospace;
  font-size: 13px;
  font-weight: 900;
  color: #fbbf24;
  background: #141924;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
}

.cal-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #181f2c;
  gap: 10px;
}

.cal-countdown-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 700;
}

.btn-cal-reminder {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #141924;
  border: 1px solid #1f293d;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cal-reminder:hover, .btn-cal-reminder.active {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #000;
}

.btn-cal-inspect {
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.btn-cal-inspect:hover {
  background: #fbbf24;
}

/* ==========================================================================
   3. RANKING (SIRALAMA) PODIUM
   ========================================================================== */
.podium-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-top: 20px;
}

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

.podium-card {
  background: #0c0f16;
  border-radius: 24px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s, border-color 0.25s;
}

.podium-card:hover {
  transform: translateY(-4px);
}

.podium-rank-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.badge-silver {
  width: 32px;
  height: 32px;
  background: #cbd5e1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.badge-gold {
  padding: 6px 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  border: 1px solid #fde047;
  white-space: nowrap;
}

.badge-bronze {
  width: 32px;
  height: 32px;
  background: #b45309;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f59e0b;
}

.podium-silver {
  border: 2px solid rgba(148, 163, 184, 0.4);
}

.podium-gold {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #1c1407 0%, #0d0a04 100%);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
  padding: 32px 20px;
}

.podium-bronze {
  border: 2px solid rgba(180, 83, 9, 0.4);
}

.podium-logo-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin: 12px auto 14px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-gold {
  width: 84px;
  height: 84px;
  border: 3px solid #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.logo-silver { border: 2px solid #cbd5e1; }
.logo-bronze { border: 2px solid #b45309; }

.podium-weekly-winner {
  color: #fbbf24;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.podium-server-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.gold-title {
  font-size: 24px;
  color: #fff;
}

.podium-meta-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  background: #141924;
  border: 1px solid #1f293d;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.gold-pill {
  background: #1a1407;
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.podium-votes-box {
  background: #080a0f;
  border: 1px solid #1b2332;
  border-radius: 12px;
  padding: 10px;
}

.gold-votes {
  border-color: rgba(245, 158, 11, 0.4);
}

.podium-votes-label {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  font-weight: 700;
}

.podium-votes-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.gold-txt { color: #fbbf24; font-size: 24px; }
.silver-txt { color: #e2e8f0; }
.bronze-txt { color: #d97706; }

/* Ranking Full Table */
.ranking-full-table-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ranking-table-header-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #181f2c;
}

.ranking-rows-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ranking-row-item {
  background: #111520;
  border: 1px solid #181f2c;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  transition: border-color 0.2s;
}

.ranking-row-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.ranking-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}

.ranking-row-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #94a3b8;
  width: 28px;
  text-align: center;
}

.ranking-row-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a2233;
  border: 1px solid #28354d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ranking-row-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.ranking-row-title:hover {
  color: #fbbf24;
}

.ranking-row-type-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.ranking-row-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ranking-row-votes-badge {
  background: #080a0f;
  border: 1px solid #181f2c;
  padding: 5px 12px;
  border-radius: 8px;
  text-align: right;
}

/* ==========================================================================
   4. GIVEAWAYS (ÇEKİLİŞLER) GRID
   ========================================================================== */
.giveaways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 20px;
}

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

.giveaway-card {
  background: #0c0f16;
  border: 2px solid #1b2332;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s;
}

.giveaway-card:hover {
  border-color: rgba(236, 72, 153, 0.5);
  transform: translateY(-3px);
}

.gw-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gw-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.15);
  border: 2px solid rgba(236, 72, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.gw-server-badge {
  font-size: 11px;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
}

.gw-status-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

.gw-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
}

.gw-prize-box {
  background: #141824;
  border: 1px solid #1f2738;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.gw-prize-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.gw-winners-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
}

.gw-prize-text {
  font-size: 16px;
  font-weight: 900;
  color: #fbbf24;
}

.gw-req-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #1e293b;
  font-size: 12px;
  margin-bottom: 16px;
}

.gw-info-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.btn-gw-join {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s, filter 0.2s;
}

.btn-gw-join:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ==========================================================================
   5. SERVERS (PVP SERVERLER) CARDS GRID
   ========================================================================== */
.servers-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.servers-list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-item-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.25s;
}

.server-item-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-3px);
}

.server-item-card.is-partner-card {
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.12);
}

.server-card-top-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.server-card-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #141924;
  border: 1px solid #1f293d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.server-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.server-card-name a {
  color: inherit;
}

.server-card-name a:hover {
  color: #fbbf24;
}

.server-card-pills {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.card-pill-level { color: #e2e8f0; font-weight: 700; }
.card-pill-type { color: #fbbf24; font-weight: 700; }

.server-card-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 14px;
}

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

.server-tag-item {
  background: #141924;
  border: 1px solid #1f293d;
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.server-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #181f2c;
}

/* ==========================================================================
   6. PROMOTE PACKAGES (SERVERİNİ TANIT)
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.package-card {
  background: #0c0f16;
  border: 1px solid #1b2332;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.package-featured {
  border: 2px solid rgba(239, 68, 68, 0.5);
  background: linear-gradient(180deg, #181216 0%, #0c0f16 100%);
}

.package-vip {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #201708 0%, #0c0f16 100%);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.25);
}

.package-top-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.gold-ribbon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
}

.package-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #181f2c;
  font-size: 12px;
  color: #cbd5e1;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-row span:first-child {
  color: #10b981;
  font-weight: 900;
}

.btn-pkg-action {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-pkg-action:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   7. MODAL OVERLAY & CARD
   ========================================================================== */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.custom-modal-card {
  width: 100%;
  max-width: 540px;
  background: #0c0f16;
  border: 2px solid #f59e0b;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.35);
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #1b2332;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #141924;
  border: 1px solid #1f293d;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.modal-close-x {
  background: #141924;
  border: 1px solid #1f293d;
  color: #94a3b8;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
}

.modal-close-x:hover {
  color: #fff;
  border-color: #f59e0b;
}

.modal-card-footer {
  padding: 16px 20px;
  border-top: 1px solid #1b2332;
  background: #0e121a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-modal-cancel {
  padding: 10px 18px;
  border-radius: 12px;
  background: #141924;
  border: 1px solid #1f293d;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-modal-action {
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* ==========================================================================
   Weekly Vote Row Styles (Bu Hafta Açılan Serverler Oy Sıralaması)
   ========================================================================== */
.home-vote-row {
  background: #0c0f16;
  border: 1px solid #181f2c;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.home-vote-row:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: #10141f;
}

.home-vote-row.is-top1-row {
  border: 2px solid rgba(245, 158, 11, 0.7);
  background: linear-gradient(90deg, #181206 0%, #0c0f16 100%);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
}

.home-vote-row.is-partner-row {
  border: 2px solid rgba(245, 158, 11, 0.9);
  background: linear-gradient(90deg, #1f1708 0%, #0d1017 100%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.home-vote-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.home-rank-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.rank-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  border: 1px solid #fde047;
  font-size: 18px;
}

.rank-silver {
  background: #475569;
  color: #fff;
  border: 1px solid #94a3b8;
}

.rank-bronze {
  background: #78350f;
  color: #fbbf24;
  border: 1px solid #b45309;
}

.rank-normal {
  background: #141924;
  color: #64748b;
  border: 1px solid #1f293d;
}

.home-server-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  background: #141924;
  border: 1px solid #243044;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.home-logo-status-pill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #dc2626;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  padding: 1px 0;
}

.home-vote-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.home-vote-title:hover {
  color: #fbbf24;
}

.home-type-pill {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
}

.home-meta-line {
  color: #94a3b8;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.home-vote-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-vote-box {
  background: #000;
  border: 1px solid #1f293d;
  padding: 6px 14px;
  border-radius: 10px;
  text-align: right;
  min-width: 80px;
}

.home-vote-count-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fbbf24;
  display: block;
}

.btn-home-vote {
  padding: 9px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s, filter 0.2s;
}

.btn-home-vote:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.btn-home-inspect {
  padding: 9px 16px;
  border-radius: 12px;
  background: #141924;
  border: 1px solid #1f293d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-home-inspect:hover {
  background: #1e2638;
}

/* Ensure 2-column split collapses on tablets */
@media (max-width: 840px) {
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
