/* ==========================================================================
   NYXARWARE — CORE STYLES & MASTER CYBER-BLUE THEME
   Elevated Modern Gaming Client • Midnight Noir & Electric Blue Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   LENIS SMOOTH SCROLL
   -------------------------------------------------------------------------- */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   DESIGN TOKENS & SYSTEM VARIABLES (USER'S SIGNATURE BLUE PALETTE)
   -------------------------------------------------------------------------- */
:root {
  color-scheme: dark;
  --gv-void: #060912;
  --gv-ink: #0a0f1d;
  --gv-deck: #0e1526;
  --gv-panel: #131c30;
  --gv-lift: #1c2740;
  --gv-white: #f5f7fc;
  --gv-text: #dce4f2;
  --gv-muted: #94a3b8;
  --gv-dim: #64748b;
  --gv-route: #3b82f6;
  --gv-route-glow: rgba(59, 130, 246, 0.4);
  --gv-ice: #93c5fd;
  --gv-pulse: #f97316;
  --gv-online: #10b981;
  --gv-danger: #ef4444;
  --gv-line: rgba(255, 255, 255, 0.08);
  --gv-line-hot: rgba(59, 130, 246, 0.35);
  --gv-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --gv-cut: 16px;
  --gv-font: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --gv-display: "Space Grotesk", sans-serif;
  --gv-mono: "JetBrains Mono", Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 26px;
  --radius-full: 9999px;

  --ease-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: 0.2s ease-out;
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--gv-void);
  scrollbar-color: rgba(117, 163, 255, 0.35) transparent;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--gv-text);
  background: radial-gradient(circle at 10% 8%, rgba(59, 130, 246, 0.12), transparent 30rem),
              radial-gradient(circle at 86% 88%, rgba(27, 63, 122, 0.1), transparent 28rem),
              var(--gv-void);
  font-family: var(--gv-font);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gv-void); }
::-webkit-scrollbar-thumb { background: var(--gv-route); border-radius: 12px; }

::selection {
  color: var(--gv-white);
  background: rgba(78, 131, 255, 0.45);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   NOISE TEXTURE & AMBIENT BLUE GLOW ORBS
   -------------------------------------------------------------------------- */
.noise-bg {
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZmlsdGVyIGlkPSJlIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNlKSIgb3BhY2l0eT0iLjA0IiAvPjwvc3ZnPg==');
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 60vw;
  height: 60vw;
  background: #0f2b5c;
  top: -20%;
  right: -10%;
}

.orb-2 {
  width: 55vw;
  height: 55vw;
  background: #1b3f7a;
  bottom: -10%;
  left: -15%;
  animation-duration: 25s;
}

.orb-3 {
  width: 45vw;
  height: 45vw;
  background: rgba(59, 130, 246, 0.2);
  top: 45%;
  right: -15%;
  animation-duration: 28s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -25px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   GPU ACCELERATED CUSTOM CURSOR (USER'S EXACT CURSOR)
   -------------------------------------------------------------------------- */
.custom-cursor {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gv-route);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  z-index: 99999;
  background: rgba(28, 78, 162, 0.15);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 25px rgba(30, 76, 140, 0.4);
}

.custom-cursor.hover {
  width: 46px;
  height: 46px;
  background: rgba(40, 100, 200, 0.28);
  border-color: var(--gv-ice);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
}

/* --------------------------------------------------------------------------
   FIXED LANGUAGE SWITCHER & DRAWER (USER'S EXACT MULTI-LANG)
   -------------------------------------------------------------------------- */
.fixed-lang-btn {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1050;
  background: rgba(12, 24, 48, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid #1d3f70;
  color: #bbd6ff;
  padding: 8px 18px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--ease-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.fixed-lang-btn:hover {
  background: #142d55;
  border-color: var(--gv-route);
  color: #fff;
  transform: translateY(-2px);
}

.lang-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
}
.lang-drawer-overlay.active { display: block; }

.lang-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  background: #0d1a30;
  border-left: 1px solid #1e3f70;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 30px 24px;
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
}
.lang-drawer.open { transform: translateX(0); }

.lang-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}
.lang-drawer-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #b0d0ff;
}
.close-lang-btn {
  color: #8ab0f0;
  font-size: 1.8rem;
  transition: color 0.2s;
}
.close-lang-btn:hover { color: #fff; }

.lang-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-option {
  border: 1px solid #254a7a;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  color: #c5ddff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  text-align: left;
}

.lang-option.active {
  background: #1a3a6a;
  border-color: var(--gv-route);
  color: white;
  box-shadow: 0 0 20px rgba(26, 76, 154, 0.5);
}
.lang-option:hover {
  background: #1b3460;
  border-color: var(--gv-ice);
}

/* --------------------------------------------------------------------------
   NAVIGATION HEADER
   -------------------------------------------------------------------------- */
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 12, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gv-line);
  transition: 0.3s;
}

header#main-header.scrolled {
  background: rgba(6, 12, 24, 0.9);
  border-bottom-color: var(--gv-line-hot);
}

.nav-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--gv-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gv-white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--gv-route);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  transition: 0.3s;
}

.brand-link:hover .nav-logo {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
}

.brand-text {
  transition: background 0.4s ease;
}

.brand-link:hover .brand-text {
  background: linear-gradient(135deg, #0a1628, #00d4ff, #0a1628);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gv-muted);
  letter-spacing: 0.05em;
  transition: color var(--ease-fast);
  position: relative;
  padding: 6px 0;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gv-route);
  transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: 90px; /* space for fixed lang button */
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--gv-online);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gv-online);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gv-online);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  transition: all var(--ease-smooth);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: rgba(19, 28, 48, 0.7);
  color: #dce4f2;
  border: 1px solid var(--gv-line-hot);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: rgba(28, 39, 64, 0.9);
  color: #fff;
  border-color: var(--gv-ice);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--gv-line);
}
.btn-glass:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--gv-route);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   SECTION HEADERS & REVEAL
   -------------------------------------------------------------------------- */
section {
  position: relative;
  z-index: 1;
}

.section-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--gv-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--gv-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gv-muted);
}

.kit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gv-ice);
  margin-bottom: 1rem;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gv-line-hot);
}

.kit-headline {
  font-family: var(--gv-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 750;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.kit-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 15%, #93c5fd 60%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kit-intro {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gv-muted);
  max-width: 820px;
  line-height: 1.65;
  margin: 0 auto;
}

.surface-card {
  background: rgba(14, 21, 38, 0.72);
  border: 1px solid var(--gv-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all var(--ease-smooth);
}

.surface-card:hover {
  border-color: var(--gv-line-hot);
  background: rgba(19, 28, 48, 0.85);
}

/* --------------------------------------------------------------------------
   1. ORİJİNAL HERO (3D TILT EFFECT & NYXAR BRAND ROTATING FONT)
   -------------------------------------------------------------------------- */
.hero {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 130px 2rem 5rem;
  max-width: 1560px;
  margin: 0 auto;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(14, 21, 38, 0.75);
  border: 1px solid var(--gv-line-hot);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gv-ice);
  margin-bottom: 1.8rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--gv-route);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gv-route);
  animation: pulseDot 2s infinite ease-in-out;
}

.hero-title-wrapper {
  font-family: var(--gv-display);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  align-items: baseline;
}

.hero-title-fixed {
  color: var(--gv-white);
  transition: font-family 0.25s ease, color 0.25s ease;
  display: inline-block;
}

.text-accent {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--gv-muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-mini-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--gv-dim);
}

.hero-mini-badges span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-mini-badges i {
  color: var(--gv-route);
}

/* 3D Tilt Logo Frame — Grand 440px Size & Interactive 3D Perspective */
.hero-visual-area {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.main-logo-frame {
  position: relative;
  width: 440px;
  height: 440px;
  max-width: min(440px, 88vw);
  max-height: min(440px, 88vw);
  border-radius: 20%;
  overflow: hidden;
  background: transparent;
  border: 1.5px solid rgba(59, 130, 246, 0.45);
  box-shadow: 0 25px 65px -10px rgba(0, 0, 0, 0.9), 0 0 70px rgba(59, 130, 246, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(12deg) rotateY(-12deg) scale3d(1, 1, 1);
  transition: transform 0.12s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.main-logo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20%;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(59, 130, 246, 0.4) 0%, rgba(96, 165, 250, 0.18) 35%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-logo-frame:hover::after {
  opacity: 1;
}

.main-logo-frame:hover {
  border-color: rgba(96, 165, 250, 0.95);
  box-shadow: 0 35px 95px -10px rgba(0, 0, 0, 0.98), 0 0 100px rgba(59, 130, 246, 0.65), inset 0 0 35px rgba(59, 130, 246, 0.3);
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20%;
  display: block;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.main-logo-frame:hover .hero-logo-img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   2. ORİJİNAL METRİKLER & ÖZELLİKLER (#metrics)
   -------------------------------------------------------------------------- */
#metrics {
  padding: 6rem 2rem 8rem;
  max-width: 1560px;
  margin: 0 auto;
}

.columns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-value {
  font-family: var(--gv-display);
  font-size: 2.8rem;
  font-weight: 750;
  color: var(--gv-white);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--gv-route);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gv-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--gv-white);
  line-height: 1.4;
}

.bypass-info {
  text-align: center;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(14, 21, 38, 0.6);
  border: 1px solid var(--gv-line-hot);
  color: var(--gv-ice);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

/* --------------------------------------------------------------------------
   3. KAYAN OYUN VİTRİNİ (#covers)
   -------------------------------------------------------------------------- */
.covers {
  padding: 7rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 14, 26, 0.7) 50%, transparent 100%);
}

.covers__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.covers__marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.6rem 0;
}

.covers__marquee-wrap::before,
.covers__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14vw;
  z-index: 2;
  pointer-events: none;
}
.covers__marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--gv-void) 0%, transparent 100%);
}
.covers__marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--gv-void) 0%, transparent 100%);
}

.covers__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.covers__track--left {
  animation: marqueeLeft 34s linear infinite;
}

.covers__track--right {
  animation: marqueeRight 36s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.cover-card {
  position: relative;
  flex: 0 0 310px;
  width: 310px;
  height: 175px;
  margin-right: 1.4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #090e1b;
  border: 1px solid var(--gv-line-hot);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.cover-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--gv-ice);
  box-shadow: 0 16px 40px -5px rgba(0, 0, 0, 0.8), 0 0 30px rgba(59, 130, 246, 0.35);
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 18, 0.95) 0%, rgba(6, 9, 18, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
}

.badge-4k {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(59, 130, 246, 0.2);
  color: var(--gv-ice);
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.4rem;
}

.cover-card__overlay h4 {
  font-size: 0.98rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.15rem;
}

.game-tag {
  font-size: 0.72rem;
  color: var(--gv-muted);
}

/* --------------------------------------------------------------------------
   4. İSTEMCİ ODALARI (#rooms) — ZERO-SHIFT ACCORDION & SEAMLESS CROSSFADE
   -------------------------------------------------------------------------- */
.rooms {
  position: relative;
  min-height: 220vh;
  padding: 0;
  background: radial-gradient(circle at 75% 50%, rgba(59, 130, 246, 0.08), transparent 60%);
}

.rooms__sticky-container {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 3.5rem;
  max-width: 1560px;
  margin: 0 auto;
  overflow: visible; /* ARROW BUTONLARININ KESİLMESİNİ ENGELLER */
}

.rooms__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.rooms__header .kit-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.rooms__inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

/* Sol Taraf: Ortalanmış Oklar ve Sabit Hizalı Liste */
.rooms__left-side {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: 0.5rem;
}

/* Dikey Ok Butonları — DİKEYDE TAM ORTADA, KESİNTİSİZ */
.rooms__nav-arrows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-self: center;
  flex-shrink: 0;
}

.room-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 22, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.room-nav-btn:hover {
  background: rgba(59, 130, 246, 0.35);
  border-color: #60a5fa;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.room-nav-btn:active {
  transform: scale(0.95);
}

/* Anizium Dikey Menü */
.anizium-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* Her bir öğe — SABİT PADDING (Zıplamayı ve kaymayı 100% önler) */
.anizium-item {
  padding: 14px 20px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  transform: none !important;
}

.anizium-item:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.04);
}

.anizium-item:hover:not(.is-active) .anizium-item__title {
  color: #fff;
}

/* Aktif Kart — Kayma Yok, Sadece Temiz Arka Plan & Çerçeve */
.anizium-item.is-active {
  background: rgba(14, 22, 42, 0.88);
  border: 1px solid var(--gv-line-hot);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.18);
}

/* Başlık Satırı */
.anizium-item__header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

/* Konsantrik Daire (Her zaman aynı X ekseninde sabit hizalı) */
.anizium-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.anizium-circle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.anizium-item.is-active .anizium-circle {
  border-color: var(--gv-route);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.65);
}

.anizium-item.is-active .anizium-circle-dot {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px #fff;
}

/* Başlık */
.anizium-item__title {
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--gv-muted);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.anizium-item.is-active .anizium-item__title {
  color: #fff;
  font-weight: 750;
}

/* Açılan Açıklama Metni — Pürüzsüz Grid Açılışı */
.anizium-item__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin-top 0.25s ease;
  margin-top: 0;
  padding-left: calc(26px + 1.15rem);
}

.anizium-item.is-active .anizium-item__body {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}

.anizium-item__body-inner {
  overflow: hidden;
}

.anizium-item__body-inner p {
  font-size: 0.92rem;
  color: var(--gv-muted);
  line-height: 1.6;
}

/* Sağ Taraf: TV Vitrini — SIFIR SİYAH PARLAMA SEAMLESS CROSSFADE */
.rooms__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rooms__tv-wrap {
  position: relative;
  width: 100%;
}

.rooms__tv {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.65;
  max-height: 72vh;
  background: #090e1c;
  border: 1px solid var(--gv-line-hot);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: 0 35px 110px -15px rgba(0, 0, 0, 0.95), 0 0 85px rgba(59, 130, 246, 0.28);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.rooms__tv:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 120px -15px rgba(0, 0, 0, 0.98), 0 0 100px rgba(59, 130, 246, 0.38);
}

.tv-camera-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  z-index: 10;
}

.rooms__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #04070f;
}

.rooms__media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.rooms__media.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 3;
}

.rooms__media.is-prev {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  transition: opacity 0.45s ease;
}

.rooms__screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rooms__media-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8, 13, 25, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gv-line-hot);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 650;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.65);
  z-index: 5;
}

.rooms__ambient {
  position: absolute;
  inset: -25px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), rgba(27, 63, 122, 0.25), transparent 70%);
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   5. CANLI İNTERAKTİF SANDBOX KONSOLU (#sandbox)
   -------------------------------------------------------------------------- */
.player-demo {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 14, 26, 0.7) 50%, transparent 100%);
}

.player-demo__inner {
  max-width: 1520px;
  margin: 0 auto;
  text-align: center;
}

.player-demo__head {
  max-width: 900px;
  margin: 0 auto 4.5rem;
}

.demo-console {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 520px;
  background: rgba(10, 15, 28, 0.9);
  border: 1px solid var(--gv-line-hot);
  border-radius: var(--radius-2xl);
  box-shadow: 0 35px 100px -20px rgba(0, 0, 0, 0.95), 0 0 75px rgba(59, 130, 246, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(20px);
}

.dc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  background: rgba(14, 21, 38, 0.95);
  border-bottom: 1px solid var(--gv-line);
}

.dc-controls {
  display: flex;
  gap: 0.5rem;
}

.dc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dc-dot.red { background: #ef4444; }
.dc-dot.yellow { background: #f59e0b; }
.dc-dot.green { background: #10b981; }

.dc-title {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--gv-ice);
  font-family: var(--gv-mono);
}

.dc-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gv-online);
  font-weight: 600;
}

.dc-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  flex: 1;
}

.dc-sidebar {
  background: rgba(12, 18, 34, 0.7);
  border-right: 1px solid var(--gv-line);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.dc-side-title {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-dim);
  margin-bottom: 0.6rem;
}

.dc-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(16, 25, 46, 0.55);
  border: 1px solid var(--gv-line);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--gv-text);
  transition: all 0.2s;
}

.dc-toggle:hover {
  background: rgba(20, 32, 58, 0.85);
  border-color: var(--gv-line-hot);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.12);
  transition: 0.3s;
  border-radius: 24px;
  border: 1px solid var(--gv-line);
}

.slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--gv-route);
  border-color: var(--gv-ice);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

input:checked + .slider::before {
  transform: translateX(20px);
}

.dc-action-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.12);
  color: var(--gv-ice);
  border: 1px solid var(--gv-line-hot);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s;
}

.dc-action-btn:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: var(--gv-ice);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.dc-main {
  display: flex;
  flex-direction: column;
  background: #04070f;
}

.dc-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.4rem 2rem;
  background: rgba(12, 18, 34, 0.4);
  border-bottom: 1px solid var(--gv-line);
  gap: 1.5rem;
}

.dcs-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dcs-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gv-dim);
}

.dcs-value {
  font-size: 1.35rem;
  font-weight: 750;
  color: #fff;
  font-family: var(--gv-mono);
}
.dcs-value.good { color: var(--gv-online); }
.dcs-value.accent { color: var(--gv-ice); }

.dc-terminal {
  flex: 1;
  padding: 1.8rem 2rem;
  font-family: var(--gv-mono);
  font-size: 0.86rem;
  line-height: 1.8;
  color: #93c5fd;
  overflow-y: auto;
  max-height: 340px;
}

.t-line {
  margin-bottom: 0.4rem;
  word-break: break-all;
}
.t-line.info { color: #60a5fa; }
.t-line.success { color: #34d399; }
.t-line.dim { color: #64748b; }

/* --------------------------------------------------------------------------
   6. TOPLULUK & SOSYAL KANALLAR (#community)
   -------------------------------------------------------------------------- */
.community {
  padding: 8rem 2rem;
  max-width: 1560px;
  margin: 0 auto;
}

.community__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.community__card {
  background: rgba(14, 21, 38, 0.72);
  border: 1px solid var(--gv-line);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  transition: all var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.community__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}

.community__card:hover {
  transform: translateY(-6px);
  border-color: var(--gv-line-hot);
  background: rgba(19, 28, 50, 0.9);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
}

.community__card--discord:hover::before { background: #5865F2; }
.community__card--youtube:hover::before { background: #FF0000; }

.community__card--discord:hover { box-shadow: 0 25px 60px -15px rgba(88, 101, 242, 0.3); }
.community__card--youtube:hover { box-shadow: 0 25px 60px -15px rgba(255, 0, 0, 0.3); }

.cc-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}

.cc-icon.discord { background: rgba(88, 101, 242, 0.15); color: #5865F2; }
.cc-icon.youtube { background: rgba(255, 0, 0, 0.15); color: #FF0000; }

.community__card h3 {
  font-size: 1.55rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.6rem;
}

.community__card p {
  color: var(--gv-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cc-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gv-line);
}

.cc-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--gv-mono);
}

.cc-sub {
  font-size: 0.88rem;
  color: var(--gv-muted);
}

/* Real-time YouTube Live Subscriber Counter Styles */
.cc-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.cc-header-row .cc-icon {
  margin-bottom: 0;
}

.live-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 750;
  color: #f87171;
  letter-spacing: 0.06em;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.pulse-dot-red {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseDot 1.4s infinite ease-in-out;
}

.sub-counter-pulse {
  animation: subCountPulse 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #93c5fd !important;
  text-shadow: 0 0 25px rgba(96, 165, 250, 0.95), 0 0 50px rgba(59, 130, 246, 0.7);
}

@keyframes subCountPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); filter: brightness(1.5); }
  100% { transform: scale(1); filter: brightness(1); }
}

.sub-plus-one {
  position: absolute;
  right: 1.5rem;
  top: 0.5rem;
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--gv-mono);
  pointer-events: none;
  animation: floatUpFade 1.3s forwards ease-out;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

@keyframes floatUpFade {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  30% { opacity: 1; transform: translateY(-12px) scale(1.2); }
  100% { opacity: 0; transform: translateY(-35px) scale(1); }
}

#ytSubCount {
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  user-select: none;
}

#ytSubCount:hover {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
}

/* --------------------------------------------------------------------------
   7. ORİJİNAL SIKÇA SORULAN SORULAR (#faq)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--gv-line);
  background: rgba(14, 21, 38, 0.65);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--gv-line-hot);
  background: rgba(18, 28, 48, 0.85);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  color: var(--gv-white);
  font-size: 1.1rem;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-icon {
  font-size: 1.6rem;
  color: var(--gv-route);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-icon.open {
  transform: rotate(45deg);
  color: var(--gv-ice);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 1.8rem;
}

.faq-answer.open {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--gv-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   8. ORİJİNAL SİSTEM DURUMU & İNDİRME (#status-download)
   -------------------------------------------------------------------------- */
.split-section {
  padding: 8rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.status-panel, .download-card {
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gv-line);
  padding-bottom: 1.2rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gv-online);
  box-shadow: 0 0 14px var(--gv-online);
}

.panel-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gv-white);
}

.status-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--gv-muted);
}

.status-tag.ok {
  background: rgba(16, 185, 129, 0.12);
  color: var(--gv-online);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: var(--gv-mono);
}

.d-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.d-header h3 {
  font-size: 1.6rem;
  font-weight: 750;
  color: var(--gv-white);
}

.version {
  font-family: var(--gv-mono);
  font-size: 0.9rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--gv-line-hot);
  color: var(--gv-ice);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-md);
  font-weight: 650;
}

.d-body p {
  color: var(--gv-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.d-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   9. ORİJİNAL FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  border-top: 1px solid var(--gv-line);
  background: #04070f;
  padding: 4rem 2rem;
}

.footer-content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--gv-dim);
}

.footer-content .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--gv-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.footer-mini-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--gv-line-hot);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gv-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE & TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .columns-grid, .split-grid {
    grid-template-columns: 1fr;
  }
  .rooms__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rooms__gallery {
    display: none;
  }
  .room {
    max-width: 100%;
    margin-bottom: 3rem;
    opacity: 1;
    transform: none;
  }
  .room__mobile-img {
    display: block;
  }
  .dc-body {
    grid-template-columns: 1fr;
  }
  .dc-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--gv-line);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .nav-right {
    margin-right: 75px;
  }
  .live-pill {
    display: none;
  }
  .hero-title-wrapper {
    font-size: 2.8rem;
  }
  .main-logo-frame {
    width: 280px;
    height: 280px;
  }
  .stats-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  .dc-stats-bar {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
