/* ═══════════════════════════════════════════════════════════════════
   VeexCraft — Global Theme v4
   Desteklenen: Chrome 90+, Firefox 88+, Safari 14+, Edge 90+
   Mobil · Tablet · Masaüstü · TV
   Reklam engelleyici uyumlu: dış kaynak / izleme kodu yok
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Rich, Vibrant Core Colors */
  --vc-gold:         #FFB800; /* Richer, deeper gold */
  --vc-gold-bright:  #FFDE4D;
  --vc-gold-dim:     #CC9300;
  --vc-gold-glow:    rgba(255, 184, 0, 0.45);
  --vc-gold-subtle:  rgba(255, 184, 0, 0.12);
  --vc-gold-border:  rgba(255, 184, 0, 0.25);

  /* Gradients */
  --vc-gradient-gold: linear-gradient(135deg, #FFDE4D 0%, #FFB800 100%);
  --vc-gradient-bg:   linear-gradient(135deg, #09090c 0%, #121217 100%);
  --vc-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);

  /* Backgrounds - Deep Void Style */
  --vc-bg:           #070709;  /* Super dark sleek background */
  --vc-bg-2:         #0C0C10;
  --vc-bg-3:         #13131A;
  --vc-bg-4:         #1A1A24;
  --vc-bg-card:      rgba(15, 15, 20, 0.6);

  /* Glassmorphism Elements */
  --vc-surface:      rgba(255, 255, 255, 0.05);
  --vc-surface-2:    rgba(255, 255, 255, 0.09);
  --vc-border:       rgba(255, 255, 255, 0.08);
  --vc-border-glow:  rgba(255, 255, 255, 0.15);

  /* Typography */
  --vc-text:         #FFFFFF;
  --vc-text-2:       #D1D5DB;
  --vc-text-3:       #9CA3AF;
  --vc-text-4:       #6B7280;
  --vc-text-5:       #374151;

  /* Accents */
  --vc-green:  #34D399; /* Modern pastel green */
  --vc-red:    #F87171; /* Modern pastel red */
  --vc-blue:   #60A5FA;
  --vc-purple: #A78BFA; /* Added for richer accents */
  --vc-discord:#5865F2;

  /* Font */
  --vc-font:      'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --vc-font-mono: 'Courier New', 'Consolas', monospace;

  /* Border Radius - Softer & Modern */
  --vc-r-sm: 8px;
  --vc-r:    14px;
  --vc-r-lg: 20px;
  --vc-r-xl: 32px;

  /* Transitions */
  --vc-ease:   cubic-bezier(0.25, 1, 0.5, 1);
  --vc-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --vc-t:      0.3s var(--vc-ease);

  /* Shadows - Layered dynamic shadows */
  --vc-shadow:       0 8px 30px rgba(0, 0, 0, 0.4);
  --vc-shadow-lg:    0 15px 40px rgba(0, 0, 0, 0.6);
  --vc-glow-gold:    0 0 20px var(--vc-gold-glow);
  --vc-glow-primary: inset 0 0 0 1px var(--vc-gold-border), 0 0 24px rgba(255,184,0,0.25);

  /* Sizes */
  --vc-max:       1200px;
  --vc-header-h:  72px; /* Slightly taller for elegance */
  --vc-banner-h:  36px;
  --vc-tabbar-h:  64px;
}

/* ─── 2. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vc-font);
  background: var(--vc-bg);
  color: var(--vc-text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--vc-font); }

::selection { background: rgba(255,215,0,.25); color: #fff; }

:focus-visible {
  outline: 2px solid var(--vc-gold);
  outline-offset: 3px;
  border-radius: var(--vc-r-sm);
}

/* ─── 3. SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--vc-bg); border-left: 1px solid var(--vc-border); }
::-webkit-scrollbar-thumb { background: var(--vc-surface-2); border-radius: 99px; border: 2px solid var(--vc-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--vc-gold-subtle); border-color: var(--vc-gold-border); }

/* ─── 4. ANIMASYONLAR ──────────────────────────────────────────── */
@keyframes vc-marquee { 
  0% { transform: translate3d(100vw, 0, 0); } 
  100% { transform: translate3d(-100%, 0, 0); } 
}
@keyframes vc-pulse   { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.85); } }
@keyframes vc-skel    { 0%,100% { opacity:.25; } 50% { opacity:.6; } }
@keyframes vc-float   { 0%,100% { transform:translate3d(0, 0, 0); } 50% { transform:translate3d(0, -8px, 0); } }
@keyframes vc-spin    { to { transform:rotate(360deg); } }
@keyframes vc-fade-up { from { opacity:0; transform:translate3d(0, 15px, 0); filter: blur(4px); } to { opacity:1; transform:translate3d(0, 0, 0); filter: blur(0); } }
@keyframes vc-bgMove  { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes vc-glow-pulse { 0%,100% { box-shadow: 0 0 20px rgba(255, 184, 0, 0.2); } 50% { box-shadow: 0 0 35px rgba(255, 184, 0, 0.4); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── 5. TOP BANNER ────────────────────────────────────────────── */
.top-banner:not(#_vcBanner) {
  display: none !important;
}
.top-banner {
  background: var(--vc-gold);
  color: #000;
  height: var(--vc-banner-h);
  line-height: var(--vc-banner-h);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 600;
  letter-spacing: .3px;
}

.top-banner span {
  display: inline-block;
  padding-left: 0;
  transform: translateX(100%);
  animation: vc-marquee 28s linear infinite;
  will-change: transform;
}

/* ─── 6. HEADER & NAV ──────────────────────────────────────────── */
header {
  position: sticky;
  top: 12px;
  z-index: 500;
  height: var(--vc-header-h);
  padding: 0 24px;
  margin: 0 auto;
  max-width: var(--vc-max);
  background: rgba(10, 10, 14, 0.45);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: visible;
  transition: padding var(--vc-t), background var(--vc-t);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  overflow: visible;
  flex-shrink: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px;
}

.logo a { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--vc-gold-bright);
  text-shadow: none; /* Glow/Neon kaldırıldı */
  letter-spacing: .5px;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  overflow: visible;
  flex-shrink: 1;
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vc-text-3);
  padding: 6px 10px;
  border-radius: var(--vc-r-sm);
  transition: background var(--vc-t), color var(--vc-t);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}

.nav a i { font-size: 12px; color: var(--vc-gold-dim); opacity: .9; }
.nav a.active i, .nav a:hover i { color: var(--vc-gold); opacity: 1; }

.nav a:hover { color: var(--vc-gold); background: var(--vc-gold-subtle); }

.nav a.active {
  color: var(--vc-gold);
  background: rgba(255,215,0,.07);
  font-weight: 600;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--vc-gold);
  border-radius: 99px;
  box-shadow: 0 0 6px var(--vc-gold);
}

/* ─── 7. BUTONLAR ──────────────────────────────────────────────── */
.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--vc-gold-border);
  border-radius: var(--vc-r);
  font-family: var(--vc-font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--vc-t);
  background: var(--vc-surface);
  color: var(--vc-gold);
  min-height: 40px;
  backdrop-filter: blur(8px);
}

.hbtn:hover { 
  background: var(--vc-gold-subtle); 
  transform: translateY(-2px); 
  border-color: var(--vc-gold);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.15); 
}
.hbtn:active { transform: translateY(0); }
.hbtn.outline { background: transparent; color: var(--vc-gold); border: 1px solid rgba(255, 184, 0, 0.3); }
.hbtn.outline:hover { background: rgba(255, 184, 0, 0.05); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--vc-gradient-gold);
  color: #000;
  border: none;
  border-radius: var(--vc-r-lg);
  font-family: var(--vc-font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--vc-t);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.5s ease;
  skewX: -20deg;
}

.btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.45); 
}
.btn-primary:hover::before {
  left: 150%;
}
.btn-primary:active { transform: translateY(-1px); }

.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: #fff;
  border: none;
  border-radius: var(--vc-r-lg);
  font-family: var(--vc-font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--vc-t);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
  text-decoration: none;
}

.btn-discord:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.45); 
  background: linear-gradient(135deg, #6974f3 0%, #5865F2 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--vc-surface);
  color: var(--vc-text);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-lg);
  font-family: var(--vc-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vc-t);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.btn-outline:hover { 
  border-color: var(--vc-gold); 
  color: var(--vc-gold); 
  background: var(--vc-gold-subtle); 
  box-shadow: 0 8px 20px rgba(255,184,0,0.15);
  transform: translateY(-2px);
}

/* Performant but göze hoş gelen buton hareketleri */
.btn-primary, .btn-discord, .hbtn, .btn-outline {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.btn-primary:focus-visible, .btn-discord:focus-visible, .hbtn:focus-visible, .btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--vc-bg), 0 0 0 8px var(--vc-gold);
}

/* ─── 8. PROFİL ALANI ──────────────────────────────────────────── */
.profile-area {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 8px;
  border-radius: var(--vc-r);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--vc-t), border-color var(--vc-t);
}

.profile-area:hover { background: var(--vc-surface-2); border-color: var(--vc-gold-border); }

.profile-area img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid rgba(255,215,0,.4);
  flex-shrink: 0;
}

.pa-info, .pa-user-info { display: flex; flex-direction: column; min-width: 0; }

.pa-name, .pa-name-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--vc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  line-height: 1.2;
}

.pa-email {
  font-size: 10px;
  color: var(--vc-text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  line-height: 1.2;
}

.pa-credit {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--vc-gold);
  background: var(--vc-gold-subtle);
  border: 1px solid rgba(255,215,0,.22);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ─── 9. MOBİL MENÜ BUTONU ─────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--vc-gold);
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  flex-shrink: 0;
  border-radius: var(--vc-r-sm);
  transition: background var(--vc-t);
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ─── HERO / LANDING STYLES ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--vc-header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--vc-bg);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,184,0,0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(167,139,250,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(52,211,153,0.1) 0%, transparent 50%);
  filter: blur(80px);
  animation: vc-bgMove 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background-position;
}
.hero-bg::after {
  background: radial-gradient(circle at 80% 80%, rgba(96,165,250,0.1) 0%, transparent 40%),
              radial-gradient(circle at 20% 20%, rgba(255,184,0,0.15) 0%, transparent 50%);
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}
.hero .hero-content { position: relative; z-index: 2; max-width: var(--vc-max); width: 100%; }
.hero-tag { display:inline-block; background: rgba(255,215,0,0.06); color: var(--vc-gold); padding:6px 12px; border-radius:999px; font-weight:700; margin-bottom:12px; }
.hero h1 { font-size: clamp(36px, 6vw, 72px); color: var(--vc-gold-bright); margin: 8px 0 6px; letter-spacing: .6px; line-height: .95; }
.hero h1 span { color: #fff; font-weight:600; }
.hero-sub { color: var(--vc-text-2); font-weight:600; margin-bottom:18px; }
.hero-btns { display:flex; gap:12px; justify-content:center; margin-top:18px; flex-wrap:wrap; }

.countdown { display:flex; gap:8px; justify-content:center; margin-top:20px; align-items:center; }
.cd-box { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.04); padding:8px 12px; border-radius:10px; min-width:64px; }
.cd-val { font-weight:800; font-size:20px; color:var(--vc-gold); }
.cd-lbl { font-size:11px; color:var(--vc-text-3); margin-top:4px; display:block; }
.cd-sep { color:var(--vc-text-3); font-weight:800; }

/* Server info */
.server-info { display:flex; justify-content:center; margin-top:18px; }
.server-ip { display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:12px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.03); cursor:pointer; transition:transform var(--vc-t), box-shadow var(--vc-t); }
.server-ip:hover { transform:translateY(-3px); box-shadow:var(--vc-shadow); }
.server-ip i { color:var(--vc-gold); }

/* Oyun kartları - Glassmorphism */
.game-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:20px; margin-top:24px; }
.game-card { 
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  padding: 24px; 
  border-radius: var(--vc-r-lg); 
  text-align: left; 
  cursor: pointer; 
  transition: all var(--vc-t); 
  border: 1px solid var(--vc-border); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--vc-gold-subtle), transparent);
  opacity: 0;
  transition: opacity var(--vc-t);
}
.game-card:hover { 
  transform: translateY(-6px); 
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(255, 184, 0, 0.4); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,184,0,0.1);
}
.game-card:hover::before { opacity: 1; }
.game-card .gc-icon { 
  font-size:32px; 
  display:inline-block; 
  width:60px; height:60px; 
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r); 
  display:flex; align-items:center; justify-content:center; 
  margin-bottom:12px; 
  transition: transform var(--vc-t);
}
.game-card:hover .gc-icon { transform: scale(1.1) rotate(5deg); border-color: rgba(255,184,0,0.3); }
.game-card .gc-name { font-weight:800; font-size: 18px; margin-top:8px; color:var(--vc-text); }
.game-card .gc-desc { color:var(--vc-text-3); font-size:14px; margin-top:8px; line-height: 1.5; }

@media (max-width:720px) {
  .hero { padding: 36px 14px; }
  .hero h1 { font-size: clamp(28px, 10vw, 48px); }
  .cd-box { min-width:48px; padding:6px 8px; }
}

/* Banner loader */
.top-banner { display:flex; align-items:center; justify-content:flex-start; padding-left:8px; }
.top-banner ._vc-banner-loader { width:100%; display:flex; align-items:center; height:var(--vc-banner-h); }
.top-banner .vc-bar { height:8px; width:36%; background: linear-gradient(90deg, rgba(255,215,0,0.9), rgba(255,215,0,0.5)); border-radius:999px; box-shadow: 0 6px 22px rgba(255,215,0,0.06); transform-origin:left center; animation: vc-loader 1.6s linear infinite; margin-left:8px; }
@keyframes vc-loader { 0%{transform:scaleX(0.2);opacity:.6}50%{transform:scaleX(1);opacity:1}100%{transform:scaleX(0.2);opacity:.6} }

/* Hide banner text by default (text will be set by vcauth when ready) */
.top-banner span { display: inline-block; padding-left: 20px; }

/* Responsive banner tweaks */
@media (max-width: 900px) {
  :root { --vc-banner-h: 30px; }
  .top-banner { font-size: 12px; }
  .top-banner span { font-size: 12px; }
}
@media (max-width: 480px) {
  :root { --vc-banner-h: 26px; }
  .top-banner { font-size: 11px; padding-left:6px; }
  .top-banner span { font-size: 11px; }
}

.mobile-menu-btn:hover { background: var(--vc-gold-subtle); }

/* ─── 9b. VCAUTH — Mobil çekmece, alt sekme çubuğu, hesap sidebar ─ */
.vc-mob-overlay#_vcMobOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .68);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--vc-ease), visibility .28s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.vc-mob-overlay#_vcMobOverlay.open {
  opacity: 1;
  visibility: visible;
}

#_vcMobileNav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--vc-bg-2);
  border-left: 1px solid var(--vc-border);
  z-index: 1002;
  transform: translateX(102%);
  transition: transform .32s var(--vc-spring);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0, 0, 0, .55);
  padding-top: env(safe-area-inset-top, 0);
}

#_vcMobileNav.open { transform: translateX(0); }

.vcmn-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--vc-border);
  flex-shrink: 0;
}

.vcmn-logo {
  font-weight: 800;
  color: var(--vc-gold);
  font-size: 16px;
  letter-spacing: .3px;
}

.vcmn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r);
  color: var(--vc-text-2);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background var(--vc-t), color var(--vc-t);
}

.vcmn-close:hover { background: var(--vc-surface-2); color: var(--vc-text); }

.vcmn-links {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 10px calc(20px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#_vcMobileNav .vcmn-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--vc-r);
  color: var(--vc-text-2);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--vc-t), color var(--vc-t);
  text-decoration: none;
}

#_vcMobileNav .vcmn-links a i {
  width: 22px;
  text-align: center;
  color: var(--vc-gold);
  flex-shrink: 0;
}

#_vcMobileNav .vcmn-links a:hover,
#_vcMobileNav .vcmn-links a:focus-visible {
  background: var(--vc-gold-subtle);
  color: var(--vc-text);
}

#_vcTabBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 899;
  background: rgba(8, 8, 8, .94);
  border-top: 1px solid var(--vc-gold-border);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .45);
}

@media (max-width: 860px) {
  #_vcTabBar { display: flex !important; }
}

#_vcTabBar .vct-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px 1px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--vc-text-3);
  border-radius: var(--vc-r-sm);
  text-decoration: none;
  transition: color var(--vc-t), background var(--vc-t);
}

#_vcTabBar .vct-item i { font-size: 17px; margin-bottom: 1px; }

#_vcTabBar .vct-item:hover,
#_vcTabBar .vct-item:focus-visible { color: var(--vc-text-2); background: var(--vc-surface); }

#_vcTabBar .vct-item.active {
  color: var(--vc-gold);
  background: rgba(255, 215, 0, .08);
}

.vc-sidebar-overlay#_vcSbOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--vc-ease), visibility .28s;
}

.vc-sidebar-overlay#_vcSbOverlay.open {
  opacity: 1;
  visibility: visible;
}

#_vcSidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  height: 100dvh;
  z-index: 1041;
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
  border-left: 1px solid var(--vc-border);
  transform: translateX(102%);
  transition: transform .32s var(--vc-spring);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -16px 0 56px rgba(0, 0, 0, .6);
  padding-top: env(safe-area-inset-top, 0);
}

#_vcSidebar.open { transform: translateX(0); }

#_vcSidebar .sb-inner { padding: 18px 16px calc(22px + env(safe-area-inset-bottom, 0px)); }

#_vcSidebar .sb-panel { min-height: 100%; }

#_vcSidebar .sb-profile-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  margin-bottom: 16px;
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--vc-t), box-shadow var(--vc-t);
}

#_vcSidebar .sb-profile-btn:hover { border-color: var(--vc-gold-border); box-shadow: 0 0 0 1px rgba(255, 215, 0, .12); }

#_vcSidebar .sb-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, .35);
  flex-shrink: 0;
}

#_vcSidebar .sb-uname {
  font-size: 15px;
  font-weight: 800;
  color: var(--vc-text);
  line-height: 1.25;
}

#_vcSidebar .sb-uemail {
  font-size: 11px;
  color: var(--vc-text-3);
  margin-top: 2px;
  word-break: break-all;
}

#_vcSidebar .sb-credit-card {
  text-align: center;
  padding: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, .12), rgba(255, 215, 0, .03));
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: var(--vc-r-lg);
}

#_vcSidebar .sb-credit-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--vc-gold);
  line-height: 1;
}

#_vcSidebar .sb-credit-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--vc-text-3);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 6px;
}

#_vcSidebar .sb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  margin: 0;
  border: none;
  border-radius: var(--vc-r);
  background: transparent;
  color: var(--vc-text-2);
  font-family: var(--vc-font);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--vc-t), color var(--vc-t);
  box-sizing: border-box;
}

#_vcSidebar .sb-row i { width: 20px; text-align: center; color: var(--vc-gold); flex-shrink: 0; }

#_vcSidebar .sb-row:hover { background: var(--vc-surface); color: var(--vc-text); }

#_vcSidebar button.sb-row { justify-content: flex-start; }

/* ─── 10. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 840px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px,10vw,120px) 20px clamp(60px,8vw,100px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 215, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 180, 0, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
    linear-gradient(165deg, #0a0a0a 0%, #12100a 35%, #080808 70%, #050505 100%);
  background-size: 100% 100%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 215, 0, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 78% 62%, rgba(255, 200, 80, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 45%);
  animation: vc-heroGlow 22s ease-in-out infinite;
  pointer-events: none;
}

@keyframes vc-heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(2%, -1%) scale(1.03); opacity: 0.92; }
  66% { transform: translate(-1.5%, 1.5%) scale(0.98); opacity: 1; }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  animation: vc-gridShift 40s linear infinite;
}

@keyframes vc-gridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 48px 48px, 48px 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before,
  .hero-bg::after { animation: none !important; }
}

.hero > * { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vc-gold-bright);
  background: var(--vc-surface-2);
  border: 1px solid var(--vc-gold-border);
  border-radius: 99px;
  padding: 8px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.15);
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  background: var(--vc-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  filter: drop-shadow(0 4px 20px rgba(255, 184, 0, 0.2));
}

.hero h1 span { 
  color: #fff; 
  font-weight: 300; 
  -webkit-text-fill-color: #fff; 
  text-shadow: 0 0 20px rgba(255,255,255,0.4); 
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--vc-text-2);
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ─── 11. COUNTDOWN ────────────────────────────────────────────── */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cd-box {
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vc-gold-border);
  border-radius: var(--vc-r);
  padding: clamp(10px,2vw,16px) clamp(14px,3vw,22px);
  text-align: center;
  min-width: clamp(64px,12vw,88px);
  transition: border-color var(--vc-t), box-shadow var(--vc-t);
}

.cd-box:hover { border-color: rgba(255,215,0,.4); box-shadow: var(--vc-glow-gold); }

.cd-val {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-lbl {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--vc-gold);
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

.cd-sep {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  color: rgba(255,215,0,.35);
  align-self: center;
  padding-bottom: 18px;
  line-height: 1;
}

/* ─── 12. SUNUCU IP ────────────────────────────────────────────── */
.server-info { background: var(--vc-bg-2); padding: 32px 20px; text-align: center; }

.server-ip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--vc-bg);
  border: 1px solid var(--vc-gold-border);
  border-radius: var(--vc-r);
  padding: 14px 28px;
  cursor: pointer;
  transition: border-color var(--vc-t), box-shadow var(--vc-t), transform var(--vc-t);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.server-ip:hover { border-color: var(--vc-gold); box-shadow: var(--vc-glow-gold); transform: translateY(-2px); }

.server-ip span { font-size: 18px; font-weight: 700; color: var(--vc-text); letter-spacing: 1px; font-family: var(--vc-font-mono); }
.server-ip small { font-size: 11px; color: var(--vc-text-3); display: block; text-align: left; font-family: var(--vc-font); }
.server-ip .fa-server { color: var(--vc-gold) !important; font-size: 20px; }
.server-ip .fa-copy { color: var(--vc-text-4) !important; font-size: 14px; transition: color var(--vc-t); }
.server-ip:hover .fa-copy { color: var(--vc-gold) !important; }

.copy-hint { font-size: 11px; color: var(--vc-text-4); margin-top: 10px; transition: color var(--vc-t); }

/* ─── 13. BÖLÜM BAŞLIKLARI ─────────────────────────────────────── */
.sec-title { font-size: clamp(20px, 4vw, 30px); font-weight: 700; color: var(--vc-gold); letter-spacing: .5px; margin-bottom: 8px; }
.sec-sub   { font-size: 13px; color: var(--vc-text-3); margin-bottom: 36px; line-height: 1.6; }

/* ─── 14. OYUNLAR ──────────────────────────────────────────────── */
.games-sec { background: var(--vc-bg-2); padding: clamp(50px,8vw,80px) 20px; text-align: center; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: var(--vc-max);
  margin: 0 auto;
}

.game-card {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--vc-t);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,184,0,0.1), transparent);
  opacity: 0;
  transition: opacity var(--vc-t);
  z-index: 0;
}

.game-card > * { position: relative; z-index: 1; }

.game-card:hover, .game-card:focus-visible { 
  transform: translateY(-8px); 
  border-color: rgba(255,184,0,0.4); 
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 24px rgba(255,184,0,0.15); 
  background: var(--vc-surface-2); 
}
.game-card:hover::before, .game-card:focus-visible::before { opacity: 1; }

.gc-icon { 
  font-size: 44px; 
  display: block; 
  margin-bottom: 16px; 
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); 
  transition: transform var(--vc-t), filter var(--vc-t); 
}
.game-card:hover .gc-icon { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 8px 16px rgba(255,184,0,0.3)); }
.gc-name { font-size: 18px; font-weight: 800; color: var(--vc-text); letter-spacing: 1px; margin-bottom: 8px; }
.game-card:hover .gc-name { background: var(--vc-gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gc-desc { font-size: 13px; color: var(--vc-text-3); line-height: 1.6; }

/* ─── 15. RANKLAR ──────────────────────────────────────────────── */
.ranks-sec { background: var(--vc-bg); padding: clamp(50px,8vw,80px) 20px; text-align: center; }

.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  max-width: var(--vc-max);
  margin: 0 auto 32px;
}

.rank-card {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--vc-t);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.rank-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vc-gradient-gold);
  opacity: 0.5;
  transition: opacity var(--vc-t), height var(--vc-t);
}

.rank-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 30px rgba(255,184,0,0.15); 
  border-color: rgba(255,184,0,0.3); 
  background: var(--vc-surface-2);
}
.rank-card:hover::before { opacity: 1; height: 5px; }

.rank-card h3 { 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--vc-text); 
  margin-bottom: 12px; 
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rank-card:hover h3 {
  background: var(--vc-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rank-card p  { font-size: 14px; color: var(--vc-text-3); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }

.rank-price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--vc-surface-2);
  color: var(--vc-gold-bright);
  padding: 10px 24px;
  border-radius: var(--vc-r-lg);
  font-weight: 800;
  font-size: 18px;
  border: 1px solid var(--vc-gold-border);
  box-shadow: inset 0 0 20px rgba(255,184,0,0.05);
  transition: all var(--vc-t);
}
.rank-card:hover .rank-price-tag {
  background: var(--vc-gradient-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(255,184,0,0.3);
}

/* ─── 16. ÖZELLİKLER ───────────────────────────────────────────── */
.features-sec { background: var(--vc-bg-2); padding: clamp(50px,8vw,80px) 20px; text-align: center; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.feat-card {
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all var(--vc-t);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at right top, rgba(255,255,255,0.05), transparent 60%);
  opacity: 0;
  transition: opacity var(--vc-t);
}

.feat-card:hover { 
  border-color: rgba(255,255,255,0.15); 
  transform: translateY(-5px); 
  box-shadow: 0 16px 40px rgba(0,0,0,0.5); 
  background: var(--vc-surface-2);
}
.feat-card:hover::before { opacity: 1; }
.feat-card > * { position: relative; z-index: 1; }

.feat-icon { 
  font-size: 36px; 
  display: flex; 
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px; 
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r);
  transition: all var(--vc-t);
}
.feat-card:hover .feat-icon {
  background: rgba(255,255,255,0.08);
  transform: scale(1.1);
}

.feat-card h4 { font-size: 18px; font-weight: 800; color: var(--vc-text); margin-bottom: 12px; }
.feat-card p  { font-size: 14px; color: var(--vc-text-3); line-height: 1.7; flex: 1; }

/* ─── 17. FORM ELEMANLARI ──────────────────────────────────────── */
.auth-box {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  padding: 32px 28px;
  width: 100%;
  max-width: 440px;
}

.auth-box label { display: block; font-size: 12px; color: var(--vc-text-3); margin-bottom: 5px; font-weight: 600; }

.auth-box input[type=text],
.auth-box input[type=email],
.auth-box input[type=password] {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 14px;
  border: 1px solid #222;
  border-radius: var(--vc-r);
  background: var(--vc-bg-3);
  color: var(--vc-text);
  font-size: 14px;
  font-family: var(--vc-font);
  outline: none;
  transition: border-color var(--vc-t), box-shadow var(--vc-t);
  -webkit-appearance: none;
  appearance: none;
}

.auth-box input:focus { border-color: rgba(255,215,0,.45); box-shadow: 0 0 0 3px rgba(255,215,0,.08); }

.auth-submit {
  width: 100%;
  padding: 13px;
  background: var(--vc-gold);
  border: none;
  border-radius: var(--vc-r);
  color: #000;
  font-size: 15px;
  font-family: var(--vc-font);
  font-weight: 800;
  cursor: pointer;
  transition: background var(--vc-t), transform var(--vc-t), box-shadow var(--vc-t);
  margin-top: 4px;
}

.auth-submit:hover { background: #e6c200; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,215,0,.35); }

.auth-err {
  font-size: 12px;
  color: var(--vc-red);
  background: rgba(255,107,107,.07);
  border: 1px solid rgba(255,107,107,.2);
  border-radius: var(--vc-r-sm);
  padding: 8px 12px;
  margin-bottom: 14px;
  display: none;
  line-height: 1.5;
}

.auth-switch { text-align: center; margin-top: 18px; font-size: 13px; color: var(--vc-text-3); }
.auth-switch a { color: var(--vc-gold); font-weight: 600; }
.auth-switch a:hover { color: var(--vc-gold-bright); }

/* ─── 18. MODAL ────────────────────────────────────────────────── */
.vc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vc-modal.open { display: flex; }

.modal-box {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-gold-border);
  border-radius: var(--vc-r-xl);
  padding: 28px 24px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--vc-shadow-lg), 0 0 60px rgba(255,215,0,.08);
  animation: vc-fade-up .3s var(--vc-spring) both;
}

.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--vc-text-3); font-size: 20px; cursor: pointer; line-height: 1; transition: color var(--vc-t); padding: 4px; border-radius: 4px; }
.modal-close:hover { color: var(--vc-text); }
.modal-box h3 { font-size: 17px; font-weight: 800; color: var(--vc-gold); margin-bottom: 18px; }
.modal-box label { display: block; font-size: 11px; color: var(--vc-text-3); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }

.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 10px 13px;
  margin-bottom: 12px;
  border: 1px solid #222;
  border-radius: var(--vc-r);
  background: var(--vc-bg-3);
  color: var(--vc-text);
  font-size: 13px;
  font-family: var(--vc-font);
  outline: none;
  transition: border-color var(--vc-t), box-shadow var(--vc-t);
  resize: vertical;
}

.modal-box input:focus, .modal-box textarea:focus { border-color: rgba(255,215,0,.35); box-shadow: 0 0 0 3px rgba(255,215,0,.07); }

.modal-msg { font-size: 12px; padding: 8px 12px; border-radius: var(--vc-r-sm); margin-bottom: 8px; display: none; line-height: 1.5; }
.modal-msg.ok  { background: rgba(74,222,128,.08); color: var(--vc-green); border: 1px solid rgba(74,222,128,.2); display: block; }
.modal-msg.err { background: rgba(255,107,107,.08); color: var(--vc-red); border: 1px solid rgba(255,107,107,.2); display: block; }

.mbtn { width: 100%; padding: 12px; background: var(--vc-gold); border: none; border-radius: var(--vc-r); color: #000; font-size: 14px; font-family: var(--vc-font); font-weight: 800; cursor: pointer; transition: background var(--vc-t), transform var(--vc-t); display: flex; align-items: center; justify-content: center; gap: 7px; }
.mbtn:hover { background: #e6c200; transform: translateY(-1px); }
.mbtn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ─── 19. FOOTER ───────────────────────────────────────────────── */
.vc-footer {
  background: var(--vc-bg-2);
  border-top: 1px solid var(--vc-border);
  padding: clamp(60px, 8vw, 80px) clamp(20px, 4vw, 40px) 30px;
  font-family: var(--vc-font);
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.vc-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.3), transparent);
}

.footer-grid,
.vc-footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--vc-max);
  margin: 0 auto clamp(40px, 6vw, 60px);
}

@media (max-width: 900px) {
  .footer-grid,
  .vc-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .footer-grid,
  .vc-footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-col h4, .vc-footer-branding h2, .vc-footer-links h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--vc-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col h4::after, .vc-footer-links h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--vc-border), transparent);
}

.vc-footer-branding h2 {
  font-size: 24px;
  background: var(--vc-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a,
.vc-footer-branding p, .vc-footer-links a,
.vc-footer-links ul li a {
  font-size: 14px;
  color: var(--vc-text-3);
  line-height: 1.8;
  display: block;
  transition: all var(--vc-t);
  text-decoration: none;
}

.footer-col a:hover, .vc-footer-links a:hover, .vc-footer-links ul li a:hover { 
  color: var(--vc-gold-bright); 
  transform: translateX(4px); 
}

.vc-footer-links ul { list-style: none; padding: 0; }
.vc-footer-links ul li { margin-bottom: 8px; }

.footer-socials, .vc-footer-socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.footer-socials a, .vc-footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-text-2);
  font-size: 18px;
  transition: all var(--vc-t);
  flex-shrink: 0;
  text-decoration: none;
}

.footer-socials a:hover, .vc-footer-socials a:hover { 
  background: var(--vc-gradient-gold); 
  color: #000; 
  border-color: rgba(255,184,0,0.5); 
  transform: translateY(-4px) rotate(8deg); 
  box-shadow: 0 8px 20px rgba(255,184,0,0.4); 
}

.vc-footer-meta {
  max-width: var(--vc-max);
  margin: 0 auto 32px;
  padding: 24px 32px;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .vc-footer-meta { flex-direction: column; text-align: center; justify-content: center; }
}

.vc-footer-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--vc-text-2);
  font-weight: 600;
}
.vc-footer-meta span i { color: var(--vc-gold); font-size: 16px; }

.vc-footer-bottom {
  max-width: var(--vc-max);
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--vc-border);
  font-size: 12px;
  color: var(--vc-text-4);
  letter-spacing: 0.5px;
}
.vc-footer-bottom b { color: var(--vc-text-2); }

.footer-bottom, .vc-footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,.04); padding-top: 18px; font-size: 11px; color: var(--vc-text-5); line-height: 1.7; }

.vc-footer-meta {
  max-width: var(--vc-max);
  margin: 0 auto 24px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: var(--vc-text-4);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--vc-r-lg);
  background: rgba(255, 215, 0, 0.03);
}

.vc-footer-meta span { display: inline-flex; align-items: center; gap: 8px; }
.vc-footer-meta a { color: var(--vc-gold); text-decoration: none; }
.vc-footer-meta a:hover { text-decoration: underline; }

.vc-footer-guest, .vc-footer-mini {
  font-size: 12px;
  color: var(--vc-text-4);
  line-height: 1.55;
  margin-bottom: 10px;
}

.vc-footer-guest a { color: var(--vc-gold); font-weight: 700; }

.vc-footer-kv {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.vc-footer-kv span:first-child { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vc-text-5); }

.vc-footer-ip {
  cursor: pointer;
  color: var(--vc-gold) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  user-select: none;
}

.vc-footer-ip:hover { text-decoration: underline; }

#_vcToastHost {
  position: fixed;
  bottom: calc(var(--vc-tabbar-h, 56px) + 24px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000040;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  max-width: min(420px, 92vw);
}

@media (min-width: 861px) {
  #_vcToastHost { bottom: 32px; }
}

.vc-toast {
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-toast--in { opacity: 1; transform: translateY(0); }

.vc-toast--ok { background: rgba(20, 40, 28, 0.95); color: var(--vc-green); border-color: rgba(74, 222, 128, 0.35); }
.vc-toast--err { background: rgba(40, 20, 22, 0.95); color: #ff8a8a; border-color: rgba(255, 107, 107, 0.35); }
.vc-toast--info { background: rgba(22, 22, 22, 0.96); color: var(--vc-text-2); border-color: rgba(255, 215, 0, 0.22); }

/* ─── 20. SKELETON ─────────────────────────────────────────────── */
._vcSkel { display: inline-block; border-radius: var(--vc-r-sm); background: rgba(255,215,0,.07); animation: vc-skel 1.2s ease-in-out infinite; }

/* ─── 21. YARDIMCI ─────────────────────────────────────────────── */
.vc-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
}

.vc-badge.gold   { background: rgba(255,215,0,.12);  color: var(--vc-gold);  border: 1px solid rgba(255,215,0,.25); }
.vc-badge.green  { background: rgba(74,222,128,.12); color: var(--vc-green); border: 1px solid rgba(74,222,128,.25); }
.vc-badge.red    { background: rgba(255,107,107,.12);color: var(--vc-red);   border: 1px solid rgba(255,107,107,.25); }
.vc-badge.blue   { background: rgba(96,165,250,.12); color: var(--vc-blue);  border: 1px solid rgba(96,165,250,.25); }
.vc-badge.active { background: rgba(255,71,87,.12);  color: #ff4757;         border: 1px solid rgba(255,71,87,.25); }
.vc-badge.ban    { background: rgba(220,53,69,.12);  color: #ff5e6c;         border: 1px solid rgba(220,53,69,.25); }
.vc-badge.mute   { background: rgba(255,193,7,.12);  color: #ffc107;         border: 1px solid rgba(255,193,7,.25); }
.vc-badge.warn   { background: rgba(255,152,0,.12);  color: #ffa502;         border: 1px solid rgba(255,152,0,.25); }

/* ─── 22. TABLO ─────────────────────────────────────────────────── */
.vc-table-wrap { width: 100%; overflow-x: auto; border-radius: var(--vc-r-lg); background: var(--vc-bg-card); border: 1px solid var(--vc-border); -webkit-overflow-scrolling: touch; }
.vc-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 480px; }
.vc-table th { background: rgba(255,255,255,.03); padding: 13px 18px; text-align: left; color: var(--vc-gold); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--vc-border); white-space: nowrap; }
.vc-table td { padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.04); color: var(--vc-text-2); vertical-align: middle; }
.vc-table tr:last-child td { border-bottom: none; }
.vc-table tbody tr:hover td { background: rgba(255,255,255,.02); }

/* ─── 23. ÜRÜN KARTLARI ─────────────────────────────────────────── */
.vc-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.vc-pkg-card {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-r-xl);
  overflow: hidden;
  transition: transform var(--vc-t), border-color var(--vc-t), box-shadow var(--vc-t);
}

.vc-pkg-card:hover { transform: translateY(-8px); border-color: var(--vc-gold-border); box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 30px rgba(255,215,0,.06); }
.vc-pkg-header { padding: 28px 24px 20px; text-align: center; background: linear-gradient(135deg, rgba(255,215,0,.09), transparent 60%); border-bottom: 1px solid rgba(255,215,0,.08); }
.vc-pkg-header h3 { font-size: 20px; color: var(--vc-gold); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.vc-pkg-price { font-size: 30px; font-weight: 800; color: var(--vc-text); }
.vc-pkg-body { padding: 22px 24px; }
.vc-pkg-features { list-style: none; padding: 0; margin-bottom: 22px; }
.vc-pkg-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--vc-text-2); margin-bottom: 10px; }
.vc-pkg-features li i { color: var(--vc-green); font-size: 11px; flex-shrink: 0; }
.vc-pkg-btn { width: 100%; padding: 12px; border-radius: var(--vc-r); background: transparent; color: var(--vc-gold); border: 1.5px solid var(--vc-gold); font-weight: 700; font-family: var(--vc-font); cursor: pointer; transition: background var(--vc-t), color var(--vc-t), box-shadow var(--vc-t); font-size: 13px; }
.vc-pkg-btn:hover { background: var(--vc-gold); color: #000; box-shadow: 0 0 20px rgba(255,214,0,.35); }
.vc-pkg-card.legendary { background: linear-gradient(160deg, #121212 0%, #1a1400 100%); border-color: rgba(255,215,0,.35); }
.vc-pkg-card.legendary .vc-pkg-header { background: linear-gradient(135deg, rgba(255,215,0,.18), rgba(138,43,226,.12)); }
.vc-pkg-card.legendary .vc-pkg-btn { background: var(--vc-gold); color: #000; }

/* ─── 24. ESKİ ÇEREZ BARINI ZORLA GİZLE ─────────────────────────
   vcauth.js #_vcCkBar id'si ile kendi barını inject eder.
   Sayfada kalan eski statik elementleri yok et.
   ─────────────────────────────────────────────────────────────── */
#cookieBar,
.cookie-bar,
#vcCookieBar,
.vc-cookie-bar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* ─── 25. RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  body { padding-bottom: calc(var(--vc-tabbar-h) + env(safe-area-inset-bottom, 0px)); }
  .rank-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { letter-spacing: -1px; }
}

@media (max-width: 600px) {
  :root { --vc-header-h: 56px; }
  .logo h1 { font-size: 18px; }
  .pa-name, .pa-name-txt, .pa-email { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .rank-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-discord, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .footer-grid, .vc-footer-container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .auth-box, .modal-box { padding: 22px 16px; }
  .cd-sep { display: none; }
}

@media (max-width: 380px) {
  .game-grid { grid-template-columns: 1fr; }
  .footer-grid, .vc-footer-container { grid-template-columns: 1fr; }
  .hbtn { padding: 6px 10px; font-size: 12px; }
}

@media (min-width: 1600px) {
  :root { --vc-max: 1400px; }
}

/* Yatay telefon */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 36px 20px; }
  .hero h1 { font-size: clamp(32px, 8vw, 52px); }
  .hero-btns { margin-bottom: 20px; }
}

/* ─── 26. ERİŞİLEBİLİRLİK ──────────────────────────────────────── */
button, [role="button"], a, input[type="checkbox"], input[type="radio"] { min-height: 36px; }
.nav a, .hbtn, .mbtn, .auth-submit, .btn-primary, .btn-discord { min-height: 40px; }

/* ─── 27. YAZICI ────────────────────────────────────────────────── */
@media print {
  body { background: #fff; color: #000; }
  header, footer, .mobile-menu-btn, #_vcCkBar,
  .top-banner, .hero-bg, #_vcSidebar, #_vcTabBar { display: none !important; }
  a { color: inherit; }
  .hero { min-height: auto; padding: 20px 0; }
}

/* ─── 28. YÜKSEK KONTRAST ───────────────────────────────────────── */
@media (forced-colors: active) {
  .vc-pkg-card, .game-card, .rank-card, .feat-card { border: 2px solid ButtonText; }
  .btn-primary, .btn-discord, .hbtn, .auth-submit { forced-color-adjust: none; }
}
