/* ============================================================
   GEBEŞ KAPLUMBAĞLAR - NEXT-GEN GAMING PORTAL STYLESHEET
   Referans: Görseldeki HS.HS Next-Gen Gaming UI standardı
   ============================================================ */

:root {
  --bg-darkest: #050609;
  --bg-primary: #080a0f;
  --bg-surface: rgba(13, 16, 25, 0.75);
  --bg-card: rgba(18, 22, 36, 0.75);
  --bg-card-hover: rgba(25, 32, 52, 0.9);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-neon: rgba(0, 212, 255, 0.4);
  --border-glow: 0 0 25px rgba(0, 212, 255, 0.2);

  --neon-cyan: #00d4ff;
  --neon-blue: #3b82f6;
  --neon-purple: #8b5cf6;
  --neon-pink: #ec4899;
  --neon-green: #10b981;
  --neon-amber: #f59e0b;
  --neon-red: #ef4444;

  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-display: 'Orbitron', -apple-system, sans-serif;
  --font-heading: 'Rajdhani', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --bg-opacity: 0.65;
  --bg-brightness: 0.95;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Modern Minimal Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: rgba(5, 6, 9, 0.9);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.35);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* Karartma ve Ambiyans Katmanı */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 50% 15%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.72) 0%, rgba(5, 6, 9, 0.88) 60%, rgba(5, 6, 9, 0.96) 100%);
  pointer-events: none;
}

/* ============================================================
   FLOATING GAME POSTER MOSAIC (ARKA PLAN HAREKETLİ OYUNLAR)
   ============================================================ */
#floatingBg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--bg-opacity, 0.65);
  transition: opacity 0.15s ease;
  display: flex;
}

.floating-col {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
  flex-shrink: 0;
}

.floating-col.col-up {
  animation: floatScrollUp linear infinite;
}

.floating-col.col-down {
  animation: floatScrollDown linear infinite;
}

@keyframes floatScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes floatScrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.floating-game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0f1422;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
}

.floating-game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) brightness(var(--bg-brightness, 0.95));
  transition: filter 0.15s ease;
}

.floating-game-card .fgc-meta-top {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-game-card .fgc-studio {
  color: var(--neon-cyan);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.floating-game-card .fgc-rating {
  color: #fbbf24;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
}

.floating-game-card .fgc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 10px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-game-card .fgc-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   ADMIN TOP BAR
   ============================================================ */
.admin-top-bar {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: linear-gradient(90deg, #311042 0%, #1e1b4b 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.admin-bar-content {
  max-width: 1540px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #e9d5ff;
}
.admin-bar-btns {
  display: flex;
  gap: 8px;
}
.btn-top-admin, .btn-top-logout {
  border: none;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-top-admin {
  background: var(--neon-cyan);
  color: #000;
}
.btn-top-logout {
  background: var(--neon-red);
  color: #fff;
}

/* ============================================================
   NAVBAR WRAPPER & GLASS NAVIGATION
   ============================================================ */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar {
  max-width: 1680px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
  gap: 0.4rem;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.logo-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(139, 92, 246, 0.35));
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
  transition: var(--transition);
}
.nav-logo:hover .logo-icon-badge {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-tld {
  color: var(--neon-cyan);
  font-size: 0.78rem;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
  flex-shrink: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-ico {
  font-size: 0.82rem;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.dev-link {
  color: #c084fc;
}
.dev-link:hover {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.15);
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}
.dd-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.2s;
}
.dropdown:hover .dd-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(13, 16, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu li a i {
  width: 20px;
  color: var(--neon-cyan);
}

.dropdown-menu li a:hover {
  color: #fff;
  background: rgba(0, 212, 255, 0.08);
  padding-left: 22px;
}

.dd-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 6px 0;
}

.badge-count {
  background: rgba(0, 212, 255, 0.2);
  color: var(--neon-cyan);
  padding: 1px 7px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
}

/* NAV RIGHT CONTROLS */
.nav-right {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* PARLAKLIK KONTROL SLIDER'I (Görseldeki Güneş Ayarı) */
.nav-brightness-control {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-brightness-control:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.06);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}
.brightness-icon {
  color: #fbbf24;
  font-size: 0.82rem;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
}

.nav-brightness-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 45px;
  height: 4px;
  background: linear-gradient(90deg, #374151, #fbbf24);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}
.nav-brightness-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fbbf24;
  border: 2px solid #000;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
  cursor: pointer;
}

.brightness-val-badge {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  color: #fbbf24;
  min-width: 25px;
  text-align: right;
}

/* MÜZİK BUTONU */
.nav-btn-music {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-btn-music:hover {
  border-color: var(--neon-cyan);
  color: #fff;
  background: rgba(0, 212, 255, 0.08);
}
.nav-btn-music.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

/* SEARCH BOX */
.nav-search-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.search-lens {
  position: absolute;
  left: 9px;
  color: var(--text-dim);
  font-size: 0.72rem;
  pointer-events: none;
}
.nav-search-box input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px 8px 4px 25px;
  color: #fff;
  font-size: 0.75rem;
  outline: none;
  width: 90px;
  transition: var(--transition);
}
.nav-search-box input:focus {
  width: 135px;
  border-color: var(--neon-cyan);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: rgba(13, 16, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  z-index: 1005;
}

/* AUTH BUTTONS */
.auth-btn-group {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.btn-nav-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-nav-login:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.08);
}
.btn-nav-register {
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  border: none;
  color: #000;
  border-radius: var(--radius-full);
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.user-info-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 8px 3px 4px;
  max-width: 150px;
  flex-shrink: 0;
}
.user-badge-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.user-badge-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-user-logout {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px;
}
.btn-user-logout:hover {
  color: var(--neon-red);
}

/* PAYLAŞ BUTONU */
.btn-nav-share {
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  border: none;
  color: #fff;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-nav-share:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============================================================
   HERO STAGE (REFERANS GÖRSELDEKİ ORTA ALAN)
   ============================================================ */
.hero-stage {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CANLI EVREN ROZETİ */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 1.6rem;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulseLight 1.5s infinite;
}
@keyframes pulseLight {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}
.badge-txt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--neon-cyan);
}

/* DEV MANŞET BAŞLIK */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.headline-gradient {
  background: linear-gradient(90deg, #00d4ff 0%, #38bdf8 40%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.35));
}

.hero-lead {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: #cbd5e1;
  max-width: 740px;
  line-height: 1.65;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* CTA BUTTONS */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  border: none;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 45px rgba(0, 212, 255, 0.6);
}

.btn-hero-secondary {
  background: rgba(18, 22, 36, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  border-color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

/* 4'LÜ CAM İSTATİSTİK KARTI (GÖRSELDEKİ BİREBİR) */
.hero-stats-glass {
  background: rgba(12, 16, 28, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 820px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: -0.5px;
}

.stat-num.highlight-star {
  color: #fbbf24;
}

.stat-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
}

/* HAFTANIN BAŞYAPITI BANNERI (GÖRSELDEKİ ALT KART) */
.featured-spotlight-bar {
  background: rgba(10, 14, 24, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 820px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.featured-spotlight-bar:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
}

.spotlight-thumb-wrap {
  width: 85px;
  height: 55px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.spotlight-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-info {
  flex: 1;
  text-align: left;
}

.spotlight-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 3px;
}

.spotlight-badge-red {
  background: #dc2626;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.spotlight-badge-meta {
  background: #15803d;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.spotlight-badge-fix {
  background: rgba(0, 212, 255, 0.15);
  color: var(--neon-cyan);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.spotlight-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 480px;
}

.btn-spotlight-action {
  background: linear-gradient(135deg, var(--neon-cyan), #2563eb);
  border: none;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-spotlight-action:hover {
  filter: brightness(1.15);
}

/* ============================================================
   SHOWCASE SECTION & GAME CARDS GRID
   5 DİKEY x 6 YATAY STANDARDI
   ============================================================ */
.showcase-section {
  position: relative;
  z-index: 2;
  max-width: 1640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.showcase-header {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-sub-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff5500;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 2px 0 4px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 600px;
}

.showcase-quick-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--neon-cyan);
  color: #000;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* 6 SÜTUNLU MODERN OYUN GRIDI */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

@media (max-width: 1450px) { .games-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1180px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px)  { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .games-grid { grid-template-columns: 1fr; } }

/* OYUN KARTI (PORTRAIT POSTER) */
.game-card {
  position: relative;
  background: rgba(14, 18, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  aspect-ratio: 3 / 4.4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
  z-index: 5;
}

.game-card-thumb {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
  background: #080c14;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card-thumb img {
  transform: scale(1.08);
}

/* KART HOVER ÖNİZLEME (Hata 153'ü Engelleyen Modern Play Rozeti) */
.game-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(5, 7, 14, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
  pointer-events: none;
}
.game-card:hover .game-card-hover-overlay {
  opacity: 1;
}

.btn-card-play-preview {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
  transform: scale(0.85);
  transition: transform 0.25s ease;
}
.game-card:hover .btn-card-play-preview {
  transform: scale(1.05);
}

.card-play-txt {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* DETAY SAYFASI SİNEMATİK OYNATICI */
.detail-player-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.detail-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.4s ease;
}
.detail-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.btn-hero-play-trailer-yt {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border: none;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.7);
  transition: var(--transition);
}
.btn-hero-play-trailer-yt:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
  box-shadow: 0 0 55px rgba(239, 68, 68, 0.95);
  color: #fff !important;
}
.btn-hero-play-trailer-yt i {
  font-size: 1.4rem;
}

.btn-trailer-yt-direct {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-trailer-yt-direct:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.game-card-fix-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 185, 129, 0.85);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-full);
  z-index: 3;
}

.game-card-info {
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(14, 18, 30, 0.95) 0%, rgba(8, 10, 18, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.game-card-category-tag {
  color: var(--text-muted);
  text-transform: capitalize;
}

.game-card-star {
  color: #fbbf24;
  font-weight: 700;
}

/* ============================================================
   GENEL SAYFA VE DETAY DÜZENİ
   ============================================================ */
.page {
  display: none;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  z-index: 2;
}
.page.active {
  display: block;
}

.container-subpage {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.subpage-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.subpage-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}
.subpage-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.btn-back-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-back-link:hover {
  color: #fff;
  border-color: var(--neon-cyan);
}

/* ============================================================
   OYUN DETAY SAYFASI
   ============================================================ */
.detail-hero-frame {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  background: #000;
}
.detail-hero-frame iframe, .detail-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 2rem;
}
@media (max-width: 960px) { .detail-layout-grid { grid-template-columns: 1fr; } }

.glass-box-card {
  background: rgba(14, 18, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}

.glass-box-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.6rem;
}

/* KURULUM ADIMLARI */
.install-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.install-step-list li {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--neon-cyan);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.password-box-modern {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  font-family: monospace;
}
.password-box-modern strong {
  color: #fbbf24;
  font-size: 1.1rem;
}
.btn-copy-pwd {
  background: #fbbf24;
  border: none;
  color: #000;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-copy-pwd:hover {
  filter: brightness(1.15);
}

/* İNDİRME BUTONLARI */
.download-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-download-link {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 95, 70, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.btn-download-link:hover {
  background: rgba(16, 185, 129, 0.35);
  border-color: #34d399;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* SİSTEM GEREKSİNİMLERİ TABLOSU */
.sysreq-table-clean {
  width: 100%;
  border-collapse: collapse;
}
.sysreq-table-clean th, .sysreq-table-clean td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  text-align: left;
}
.sysreq-table-clean th {
  color: var(--text-dim);
  font-weight: 700;
  width: 30%;
}
.sysreq-table-clean .min-val {
  color: var(--neon-cyan);
}
.sysreq-table-clean .rec-val {
  color: #fbbf24;
}

/* ============================================================
   YORUMLAR BÖLÜMÜ
   ============================================================ */
.comment-input-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 1.5rem;
}
.comment-input-box textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
}
.comment-input-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.btn-comment-send {
  background: var(--neon-cyan);
  border: none;
  color: #000;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.comment-card-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
}
.comment-user-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.comment-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.comment-author-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}
.comment-date-tag {
  color: var(--text-dim);
  font-size: 0.7rem;
  margin-left: auto;
}
.comment-text-body {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.comment-reply-bar {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.btn-reply-action {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.74rem;
  cursor: pointer;
}
.btn-reply-action:hover {
  color: var(--neon-cyan);
}

/* ============================================================
   GEREKLİ PROGRAMLAR KARTLARI
   ============================================================ */
.programs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.program-glass-card {
  background: rgba(14, 18, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.program-glass-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}
.prog-icon-wrap {
  font-size: 2.2rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}
.prog-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.program-glass-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.program-glass-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex: 1;
}
.prog-meta {
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.btn-prog-download {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-prog-download:hover {
  background: var(--neon-cyan);
  color: #000;
  border-color: var(--neon-cyan);
}

/* ============================================================
   AUTH PAGES (GİRİŞ & KAYIT)
   ============================================================ */
.auth-center-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-box-glass {
  background: rgba(14, 18, 30, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.auth-logo-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.auth-box-glass h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.auth-desc {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 1.8rem;
}

.form-group-custom {
  margin-bottom: 1.2rem;
  text-align: left;
}
.form-group-custom label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group-custom input, .form-group-custom textarea, .form-group-custom select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.form-group-custom input:focus, .form-group-custom textarea:focus, .form-group-custom select:focus {
  border-color: var(--neon-cyan);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-auth-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  border: none;
  color: #000;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 0.8rem;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transition: var(--transition);
}
.btn-auth-submit:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.auth-footer-text {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.auth-footer-text a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 700;
}

.admin-hint-box {
  margin-top: 1.2rem;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
}

.alert-box {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.alert-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--neon-red);
  color: #fca5a5;
}
.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--neon-green);
  color: #6ee7b7;
}

/* ============================================================
   ADMIN DASHBOARD
   ============================================================ */
.admin-dashboard-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 85vh;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}
@media (max-width: 900px) {
  .admin-dashboard-container { grid-template-columns: 1fr; }
}

.admin-sidebar {
  background: rgba(10, 14, 24, 0.95);
  border-right: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: #c084fc;
  font-size: 1.4rem;
}
.admin-sidebar-header h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
}

.admin-menu {
  list-style: none;
  padding: 1rem 0;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.06);
  border-left-color: var(--neon-cyan);
}

.admin-main-area {
  padding: 2rem;
  background: rgba(6, 8, 14, 0.8);
  overflow-y: auto;
}

/* ADMIN KPI CARDS */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 2rem;
}
@media (max-width: 1100px) { .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .admin-kpi-grid { grid-template-columns: 1fr; } }

.kpi-card {
  background: rgba(18, 24, 38, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.kpi-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.kpi-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
}
.kpi-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 2px;
}

.pane-header {
  margin-bottom: 2rem;
}
.pane-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.pane-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 650px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ÇOKLU ETİKET SEÇİCİ STİLLERİ (Admin & Edit) */
.tag-selector-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tag-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.tag-pill-btn:hover {
  border-color: var(--neon-cyan);
  color: #fff;
}
.tag-pill-btn.selected {
  background: linear-gradient(135deg, var(--neon-cyan), #3b82f6);
  border-color: var(--neon-cyan);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.tag-custom-input-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.tag-custom-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
}
.btn-tag-add {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-tag-add:hover {
  background: var(--neon-cyan);
  color: #000;
}

.form-section-title {
  font-family: var(--font-heading);
  color: var(--neon-cyan);
  margin: 1.8rem 0 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.4rem;
}

.btn-admin-action {
  background: linear-gradient(135deg, var(--neon-purple), #6366f1);
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-admin-action:hover {
  filter: brightness(1.15);
}

.btn-cancel-action {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

.admin-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-card-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.admin-card-title h5 {
  font-size: 0.95rem;
  color: #fff;
}
.admin-card-title span {
  font-size: 0.74rem;
  color: var(--text-dim);
}
.admin-card-btn-group {
  display: flex;
  gap: 8px;
}
.btn-sm-edit {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}
.btn-sm-del {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--neon-red);
  color: var(--neon-red);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}
.btn-sm-ban {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--neon-amber);
  color: var(--neon-amber);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}

/* ============================================================
   CANLI CHAT WIDGET & FLOATING BUBBLE (GÖRSELDEKİ SAĞ ALT BUBBLE)
   ============================================================ */
.chat-floating-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #000;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transition: var(--transition);
}
.chat-floating-bubble:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 45px rgba(0, 212, 255, 0.8);
}

.chat-badge-pulse {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #000;
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  height: 480px;
  background: rgba(12, 16, 28, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  transition: var(--transition);
}
.chat-widget.chat-collapsed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.chat-header {
  background: linear-gradient(90deg, #1e1b4b, #0f172a);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}
.chat-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.chat-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
}

.chat-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.chat-info-alert {
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.06);
  font-size: 0.68rem;
  color: var(--neon-cyan);
  border-bottom: 1px solid var(--border-subtle);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  position: relative;
}
.chat-msg-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.chat-msg-author {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--neon-cyan);
}
.chat-msg-time {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: auto;
}
.chat-msg-text {
  font-size: 0.8rem;
  color: #e2e8f0;
  word-break: break-word;
}
.chat-msg-pic {
  max-width: 100%;
  max-height: 140px;
  border-radius: 6px;
  margin-top: 6px;
  cursor: pointer;
}
.chat-btn-del {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  color: var(--neon-red);
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.chat-msg-row:hover .chat-btn-del {
  opacity: 1;
}

.chat-input-area {
  padding: 10px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.4);
}

.chat-guest-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  margin-bottom: 6px;
}
.chat-guest-bar i {
  color: var(--neon-cyan);
  font-size: 0.75rem;
}
.chat-guest-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.76rem;
  outline: none;
}
.chat-login-prompt {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-align: center;
}
.chat-login-prompt a {
  color: var(--neon-cyan);
}

.chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-img-btn {
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}
.chat-img-btn:hover {
  color: var(--neon-cyan);
}
.chat-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
}
.chat-send-btn {
  background: var(--neon-cyan);
  border: none;
  color: #000;
  border-radius: var(--radius-sm);
  width: 34px;
  height: 34px;
  cursor: pointer;
}

/* ============================================================
   MODALS (RESİM, DEVELOPER)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-card-glass {
  background: rgba(14, 18, 30, 0.95);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.modal-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.dev-feature-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.dev-feature-list i {
  color: var(--neon-cyan);
  margin-right: 6px;
}

.modal-img-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-img-container img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-neon);
}
.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neon-red);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* MOBİL MENÜ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}
.drawer-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.drawer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hidden {
  display: none !important;
}

/* RESPONSIVE NAVBAR & PORTAL */
@media (max-width: 1400px) {
  .nav-music-text { display: none; }
  .nav-share-text { display: none; }
  .btn-nav-share { padding: 4px 8px; }
  .nav-btn-music { padding: 4px 8px; }
}

@media (max-width: 1260px) {
  .nav-brightness-control { display: none; }
  .nav-search-box input { width: 75px; }
  .nav-search-box input:focus { width: 120px; }
}

@media (max-width: 1140px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-stats-glass { padding: 1rem; }
  .stat-num { font-size: 1.25rem; }
}

/* ============================================================
   ÇOKLU ETİKET YÖNETİMİ & SEÇİCİ STİLLERİ (MULTI-TAG UI)
   ============================================================ */
.tag-selector-container {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.tag-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.tag-pill-btn:hover {
  border-color: rgba(6, 182, 212, 0.5);
  color: #fff;
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-1px);
}

.tag-pill-btn.selected {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(59, 130, 246, 0.25));
  border-color: var(--neon-cyan);
  color: #38bdf8;
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.4);
  font-weight: 800;
}

.tag-custom-input-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.tag-custom-input-row input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 0.85rem;
}

.tag-custom-input-row input:focus {
  border-color: var(--neon-cyan);
  outline: none;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.btn-tag-add {
  background: var(--neon-cyan);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-tag-add:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 12px var(--neon-cyan);
}

/* KART HOVER VİDEO ÖNİZLEME */
.game-card-video-slot {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
}
.game-card-video-slot.active {
  opacity: 1;
}
.game-card-video-slot iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ============================================================
   NAVBAR SOSYAL MEDYA BUTONLARI
   ============================================================ */
.nav-social-item {
  display: flex;
  align-items: center;
}

.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  flex-shrink: 0;
  padding: 0;
}

.nav-social-btn i {
  font-size: 0.92rem;
}

/* Discord */
.nav-social-discord {
  background: rgba(88, 101, 242, 0.12);
  color: #7289da;
  border-color: rgba(88, 101, 242, 0.35);
}
.nav-social-discord:hover {
  background: #5865f2;
  color: #fff;
  border-color: #5865f2;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.6);
  transform: translateY(-1px);
}

/* YouTube */
.nav-social-youtube {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.35);
}
.nav-social-youtube:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.6);
  transform: translateY(-1px);
}

/* Instagram */
.nav-social-instagram {
  background: rgba(225, 48, 108, 0.12);
  color: #f472b6;
  border-color: rgba(225, 48, 108, 0.35);
}
.nav-social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(225, 48, 108, 0.6);
  transform: translateY(-1px);
}

/* ============================================================
   PORTAL FOOTER & SOSYAL MEDYA VİTRİNİ
   ============================================================ */
.portal-footer {
  width: 100%;
  margin-top: 5rem;
  padding: 0 20px 2.5rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-hero-card {
  background: linear-gradient(135deg, rgba(14, 18, 32, 0.95) 0%, rgba(20, 26, 45, 0.92) 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 212, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-hero-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo .logo-txt {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
}

.footer-logo .logo-accent {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.5rem;
}

.f-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.f-badge i {
  color: var(--neon-cyan);
}

.footer-social-showcase {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-card .sc-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-card .sc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.social-card .sc-platform {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.social-card .sc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.social-card .sc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-card .sc-arrow {
  color: var(--text-dim);
  font-size: 1rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* Discord Card Theme */
.sc-discord {
  background: rgba(88, 101, 242, 0.07);
}
.sc-discord .sc-icon-wrap {
  background: rgba(88, 101, 242, 0.18);
  color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}
.sc-discord .sc-platform {
  color: #7289da;
}
.sc-discord:hover {
  background: rgba(88, 101, 242, 0.16);
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.25);
}
.sc-discord:hover .sc-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: #5865f2;
  color: #fff;
}
.sc-discord:hover .sc-arrow {
  color: #5865f2;
  transform: translate(3px, -3px);
}

/* YouTube Card Theme */
.sc-youtube {
  background: rgba(239, 68, 68, 0.07);
}
.sc-youtube .sc-icon-wrap {
  background: rgba(239, 68, 68, 0.18);
  color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
.sc-youtube .sc-platform {
  color: #f87171;
}
.sc-youtube:hover {
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}
.sc-youtube:hover .sc-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: #ef4444;
  color: #fff;
}
.sc-youtube:hover .sc-arrow {
  color: #ef4444;
  transform: translate(3px, -3px);
}

/* Instagram Card Theme */
.sc-instagram {
  background: rgba(225, 48, 108, 0.07);
}
.sc-instagram .sc-icon-wrap {
  background: rgba(225, 48, 108, 0.18);
  color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}
.sc-instagram .sc-platform {
  color: #f472b6;
}
.sc-instagram:hover {
  background: rgba(225, 48, 108, 0.16);
  border-color: rgba(225, 48, 108, 0.5);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.25);
}
.sc-instagram:hover .sc-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.sc-instagram:hover .sc-arrow {
  color: #e1306c;
  transform: translate(3px, -3px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 1.5rem;
  padding: 1.2rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-mini-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-mini-links a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.footer-mini-links a:hover {
  color: var(--neon-cyan);
}

@media (max-width: 960px) {
  .footer-hero-card {
    grid-template-columns: 1fr;
    padding: 1.8rem;
    gap: 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}
