/* ============================================
   GAMING MACRO - PRO STYLE
   Agresif kırmızı + koyu tema
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  background: #0a0a0c;
  color: #d4d4d8;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* === DESIGN TOKENS === */
:root {
  --bg-0: #050507;
  --bg-1: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #18181d;
  --bg-4: #22222a;

  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);

  --text-0: #ffffff;
  --text-1: #e4e4e7;
  --text-2: #a1a1aa;
  --text-3: #71717a;

  --red: #e10600;
  --red-bright: #ff1f1f;
  --red-glow: rgba(225, 6, 0, 0.5);
  --red-soft: rgba(225, 6, 0, 0.12);
  --red-dark: #8b0000;

  --green: #00ff88;
  --amber: #ffb800;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --container-narrow: 760px;

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* === SELECTION === */
::selection { background: var(--red); color: #fff; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* === BACKGROUND EFFECTS === */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.9), transparent 70%);
}
.bg-scanlines {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(225, 6, 0, 0.015) 2px,
    rgba(225, 6, 0, 0.015) 3px
  );
  pointer-events: none;
  z-index: -1;
}
.bg-glow {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: -2;
  pointer-events: none;
}
.bg-glow-1 {
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.bg-glow-2 {
  background: radial-gradient(circle, var(--red-dark) 0%, transparent 70%);
  bottom: -300px; left: -200px;
  opacity: 0.25;
}

/* === CONTAINERS === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
body.nav-open { overflow: hidden; }
body.support-bot-open { overflow: hidden; }

/* === SUPPORT BOT (yan panel) === */
.support-bot {
  position: fixed;
  z-index: 200;
  bottom: max(20px, env(safe-area-inset-bottom, 0));
  right: max(16px, env(safe-area-inset-right, 0));
  font-family: var(--font-body);
}
html[dir="rtl"] .support-bot {
  right: auto;
  left: max(16px, env(safe-area-inset-left, 0));
}
.support-bot-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(225, 6, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-bot-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5), 0 0 28px rgba(225, 6, 0, 0.35);
}
.support-bot-fab-icon {
  width: 28px;
  height: 28px;
}
.support-bot-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0.5;
  animation: botPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes botPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}
.support-bot-panel[hidden] { display: none !important; }
.support-bot-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100dvh - 120px));
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
html[dir="rtl"] .support-bot-panel {
  right: auto;
  left: 0;
}
.support-bot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.12), transparent);
  border-bottom: 1px solid var(--line);
}
.support-bot-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text-0);
}
.support-bot-head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-2);
}
.support-bot-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px var(--green);
  vertical-align: middle;
}
.support-bot-close {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.support-bot-close:hover { color: var(--text-0); }
.support-bot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  max-height: 280px;
}
.support-bot-msg { display: flex; }
.support-bot-msg-bot { justify-content: flex-start; }
.support-bot-msg-user { justify-content: flex-end; }
.support-bot-bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-1);
}
.support-bot-msg-bot .support-bot-bubble {
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.support-bot-msg-user .support-bot-bubble {
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: var(--text-0);
}
.support-bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.support-bot-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.support-bot-link:hover {
  background: rgba(225, 6, 0, 0.12);
}
.support-bot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px 10px;
  border-top: 1px solid var(--line);
}
.support-bot-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text-1);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.support-bot-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.support-bot-form {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.support-bot-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  color: var(--text-0);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.support-bot-form .btn-sm {
  padding: 10px 14px;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .support-bot-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    max-height: 85dvh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .support-bot-fab {
    width: 52px;
    height: 52px;
  }
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--red);
  transition: transform 0.2s;
}
.logo:hover { transform: scale(1.03); }
.logo-mark {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 10px var(--red-glow));
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  display: flex;
  gap: 2px;
}
.logo-text-1 { color: var(--text-0); }
.logo-text-2 { color: var(--red); }

/* === NAV === */
.nav { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--text-2);
  text-decoration: none;
  padding: 10px 18px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--text-0); }
.nav-link.active::before, .nav-link:hover::before { transform: scaleX(1); }

/* === NAV TOGGLE (mobile) === */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text-0);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 24px var(--red-soft), inset 0 -2px 0 rgba(0,0,0,0.25);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 32px var(--red-glow), inset 0 -2px 0 rgba(0,0,0,0.25);
  transform: translateY(-1px);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-ghost {
  background: transparent;
  color: var(--text-0);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}
.btn-block { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 16px; }

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-1);
  background: var(--red-soft);
  border: 1px solid rgba(225, 6, 0, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text-0);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title-line:nth-child(2) { animation-delay: 0.15s; }
.hero-title-line:nth-child(3) { animation-delay: 0.3s; }
@keyframes titleIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-title .accent {
  color: var(--red);
  position: relative;
  text-shadow: 0 0 40px var(--red-glow);
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 6px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes underline { to { transform: scaleX(0.4); } }

.hero-sub {
  font-size: 19px;
  max-width: 600px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
  max-width: 800px;
}
.stat {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1;
}
.stat:nth-child(2) .stat-num::after { content: ' PC'; color: var(--red); font-size: 24px; }
.stat:nth-child(3) .stat-num::after { content: '%'; color: var(--red); }
.stat:nth-child(4) .stat-num::after { content: '/7'; color: var(--red); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

/* === HERO VISUAL (Crosshair) === */
.hero-visual {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.hero-crosshair {
  width: 100%; height: 100%;
  position: relative;
  animation: rotate 60s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.ch-line {
  position: absolute;
  background: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}
.ch-top, .ch-bottom { left: 50%; width: 2px; height: 100px; transform: translateX(-50%); }
.ch-left, .ch-right { top: 50%; height: 2px; width: 100px; transform: translateY(-50%); }
.ch-top { top: 100px; }
.ch-bottom { bottom: 100px; }
.ch-left { left: 100px; }
.ch-right { right: 100px; }
.ch-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--red);
}
.ch-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0.4;
  border-style: dashed;
}
.ch-ring-2 {
  width: 450px; height: 450px;
  opacity: 0.2;
  animation: rotate 30s linear infinite reverse;
}

/* === SECTION HEAD === */
.section-head { margin-bottom: 56px; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  letter-spacing: 2px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  color: var(--text-0);
  text-transform: uppercase;
  line-height: 1;
}
.accent { color: var(--red); }

/* === FEATURES === */
.features { padding: 80px 24px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover {
  border-color: rgba(225, 6, 0, 0.3);
  transform: translateY(-3px);
  background: var(--bg-3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-0);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.feature-card p {
  color: var(--text-2);
  font-size: 15px;
}

/* === SHOWCASE === */
.showcase { padding: 60px 24px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.product-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(225, 6, 0, 0.15);
}
.product-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
}
.product-icon { font-size: 36px; margin-bottom: 16px; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-0);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.product-card > p {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.product-meta {
  list-style: none;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.product-meta li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
}
.product-meta li span:first-child { color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; }
.product-meta li span:last-child { color: var(--text-1); font-weight: 500; }
.product-card:hover { transform: translateY(-3px); border-color: rgba(225, 6, 0, 0.4); }

/* === TESTIMONIALS === */
.testimonials { padding: 80px 24px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--red);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testimonial:hover {
  border-color: rgba(225, 6, 0, 0.3);
  transform: translateY(-3px);
  background: var(--bg-3);
}
.testimonial-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}
.testimonial-text {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}
.testimonial-text b { color: var(--red); font-weight: 600; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-0);
  font-weight: 600;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* === AD SLOT === */
.ad-slot {
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  margin: 40px 0;
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ad-slot-banner { min-height: 100px; }
.ad-slot-rect { min-height: 280px; }
.ad-slot-sky {
  min-height: 250px;
  margin: 0;
  width: 100%;
  max-width: 160px;
}
.ad-sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === SITE LAYOUT (yan reklamlar) === */
.site-layout {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) minmax(120px, 160px);
  gap: 20px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 16px 40px;
  align-items: start;
}
.site-center {
  min-width: 0;
}
.ad-sidebar {
  position: sticky;
  top: 86px;
  z-index: 1;
  pointer-events: none;
}
.ad-sidebar .ad-slot {
  pointer-events: auto;
}
.ad-sidebar-left { padding-top: 24px; }
.ad-sidebar-right { padding-top: 24px; }

@media (max-width: 1280px) {
  .site-layout {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 160px);
  }
  .ad-sidebar-left { display: none; }
}
@media (max-width: 1024px) {
  .site-layout {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
  .ad-sidebar-right { display: none; }
}

/* === ACCOUNT / AUTH === */
.account-wrap { max-width: 520px; margin: 0 auto; }
.account-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.account-tab {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.account-tab:hover { color: var(--text-0); border-color: var(--text-3); }
.account-tab.active {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-soft);
}
.account-panel[hidden] { display: none !important; }
.account-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.account-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.account-user-bar strong { color: var(--text-0); font-size: 18px; }
.account-licenses { margin-top: 32px; }
.account-licenses h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.license-key-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.license-key-row code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green);
}
.license-key-row span.meta {
  font-size: 13px;
  color: var(--text-3);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.plan-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.plan-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-soft);
}
.plan-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-0);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--red-bright);
  margin: 12px 0;
}
.plan-card p { font-size: 13px; color: var(--text-2); margin-bottom: 16px; }
.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}
.trial-card {
  border-color: rgba(0, 255, 136, 0.35);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(0, 255, 136, 0.06) 100%);
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.trial-card-head { margin-bottom: 20px; }
.trial-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: rgba(0, 255, 136, 0.15);
  color: var(--green);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.trial-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-0);
  margin-bottom: 8px;
}
.trial-result {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.trial-key-out {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--green);
  margin: 12px 0;
  word-break: break-all;
}
.trial-expiry { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }

.nav-user {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-inner { flex-wrap: wrap; gap: 12px; }

.ad-label {
  position: absolute;
  top: 8px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
}

/* === CTA SECTION === */
.cta-section { padding: 80px 24px 120px; }
.cta-box {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(225, 6, 0, 0.08) 100%);
  border: 1px solid rgba(225, 6, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 70%);
  filter: blur(60px);
}
.cta-content { position: relative; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-0);
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.cta-content p { color: var(--text-2); font-size: 17px; }

/* === PAGES === */
.page { animation: pageIn 0.4s ease-out; padding: 60px 0 80px; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-head { margin-bottom: 48px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
}
.page-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 700px;
}

/* === DOWNLOADS === */
.download-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.download-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 80px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all 0.2s;
}
.download-item:hover {
  border-color: rgba(225, 6, 0, 0.4);
  background: var(--bg-3);
}
.dl-rank {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.5;
}
.dl-icon {
  font-size: 48px;
  text-align: center;
}
.dl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.dl-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-0);
  letter-spacing: 0.5px;
}
.dl-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
}
.dl-badge-new { background: var(--red); color: #fff; }
.dl-badge-stable { background: rgba(0, 255, 136, 0.15); color: var(--green); border: 1px solid rgba(0, 255, 136, 0.3); }
.dl-badge-beta { background: rgba(255, 184, 0, 0.15); color: var(--amber); border: 1px solid rgba(255, 184, 0, 0.3); }
.dl-body p {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 10px;
}
.dl-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.dl-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dl-meta b { color: var(--red); }
.dl-hash {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  word-break: break-all;
  padding: 4px 0;
  opacity: 0.7;
}
.dl-features {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px 16px;
}
.dl-features li {
  font-size: 13px;
  color: var(--text-1);
  padding: 4px 0;
  letter-spacing: 0.2px;
}
.dl-features li::first-letter { color: var(--green); font-weight: 700; }

/* === NOTICE === */
.notice {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-1);
  font-size: 14px;
}
.notice svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.notice a { color: var(--red); text-decoration: underline; }
.notice-coming-soon {
  margin-bottom: 24px;
  background: rgba(225, 6, 0, 0.06);
  border-color: rgba(225, 6, 0, 0.22);
  border-left-color: var(--red);
}
.notice-coming-soon svg { color: var(--red); }
.notice-coming-soon strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-0);
  margin-bottom: 6px;
}
.notice-coming-soon p {
  margin: 0;
  line-height: 1.55;
  color: var(--text-1);
}

/* === LICENSE === */
.license-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.license-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-soft) 0%, transparent 60%);
  pointer-events: none;
}
.license-form { position: relative; }
.license-form label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-2);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.license-input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
#licenseKey {
  flex: 1;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  color: var(--text-0);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: var(--radius);
  outline: none;
  transition: all 0.2s;
  text-transform: uppercase;
}
#licenseKey:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
#licenseKey::placeholder { color: var(--text-3); letter-spacing: 1.5px; }
.license-hint, .license-demo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 8px;
}
.license-hint svg { width: 14px; height: 14px; }
.license-demo code, .license-hint code {
  font-family: var(--font-mono);
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--red);
  font-size: 12px;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: all 0.15s;
}
.license-demo .demo-key:hover { background: var(--red-soft); border-color: var(--red); }

.btn-loader svg { animation: spin 1s linear infinite; width: 16px; height: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === LICENSE RESULT === */
.license-result {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  animation: pageIn 0.4s ease-out;
}
.lr-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.lr-status-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lr-status-icon svg { width: 24px; height: 24px; }
.lr-title { font-family: var(--font-display); font-size: 22px; color: var(--text-0); letter-spacing: 0.5px; }
.lr-subtitle { font-family: var(--font-mono); font-size: 12px; color: var(--text-2); letter-spacing: 1px; text-transform: uppercase; }
.lr-body { padding: 24px; }
.lr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.lr-field { background: var(--bg-1); padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.lr-field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.lr-field-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-0);
  font-weight: 500;
}
.lr-field-value.mono { font-family: var(--font-mono); font-size: 14px; }

/* Result variants */
.license-result.success { background: rgba(0, 255, 136, 0.05); border: 1px solid rgba(0, 255, 136, 0.25); }
.license-result.success .lr-status-icon { background: rgba(0, 255, 136, 0.15); color: var(--green); }
.license-result.success .lr-title { color: var(--green); }

.license-result.warning { background: rgba(255, 184, 0, 0.05); border: 1px solid rgba(255, 184, 0, 0.25); }
.license-result.warning .lr-status-icon { background: rgba(255, 184, 0, 0.15); color: var(--amber); }
.license-result.warning .lr-title { color: var(--amber); }

.license-result.error { background: rgba(225, 6, 0, 0.05); border: 1px solid rgba(225, 6, 0, 0.3); }
.license-result.error .lr-status-icon { background: var(--red-soft); color: var(--red); }
.license-result.error .lr-title { color: var(--red); }

/* === HOW IT WORKS === */
.how-it-works {
  margin-top: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.how-it-works h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-0);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.how-it-works ol {
  padding-left: 20px;
  color: var(--text-2);
}
.how-it-works li { padding: 6px 0; font-size: 15px; }
.how-it-works b { color: var(--text-0); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  color: var(--text-1);
  transition: all 0.25s;
  position: relative;
}
.contact-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-2px);
  background: var(--bg-3);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-discord .contact-icon { background: rgba(88, 101, 242, 0.15); color: #5865f2; }
.contact-telegram .contact-icon { background: rgba(38, 166, 230, 0.15); color: #26a6e6; }
.contact-youtube .contact-icon { background: rgba(255, 0, 0, 0.15); color: #ff0033; }
.contact-instagram .contact-icon {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.18), rgba(253, 187, 45, 0.18));
  color: #e1306c;
}
.contact-email .contact-icon { background: var(--red-soft); color: var(--red); }
.contact-body { flex: 1; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-0);
  margin-bottom: 6px;
}
.contact-card p { font-size: 14px; color: var(--text-2); }
.contact-arrow {
  width: 20px; height: 20px;
  color: var(--text-3);
  align-self: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.contact-card:hover .contact-arrow {
  color: var(--red);
  transform: translateX(4px);
}

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-0);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.form-msg.success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--green);
}
.form-msg.error {
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: var(--red-bright);
}
.btn-block { width: 100%; justify-content: center; }

/* === FOOTER === */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 60px 0 0;
  position: relative;
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text-0); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}
.footer-warn { max-width: 600px; }
.footer-compact { margin-top: 0; padding-top: 24px; }

/* === LANG SWITCH === */
.lang-switch {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-left: 12px;
}
.lang-flag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 42px;
  padding: 5px 6px 4px;
  border: 2px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s, background 0.15s;
  line-height: 1;
}
.lang-flag:hover {
  border-color: var(--text-3);
  background: var(--bg-3);
  transform: translateY(-1px);
}
.lang-flag.active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.4);
  background: rgba(225, 6, 0, 0.1);
}
.lang-flag-img {
  display: block;
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.lang-flag-code {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--text-1);
  pointer-events: none;
}
.lang-flag.active .lang-flag-code {
  color: var(--red);
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.lang-btn:hover { color: var(--text-0); border-color: var(--text-3); }
.lang-btn.active {
  color: var(--red);
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.08);
}
html[dir="rtl"] .header-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav { flex-direction: row-reverse; }
html[dir="rtl"] .lang-switch { flex-direction: row-reverse; margin-left: 0; margin-right: 12px; }
@media (max-width: 900px) {
  html[dir="rtl"] .header-inner {
    grid-template-areas: "logo lang menu";
  }
  html[dir="rtl"] .lang-switch { justify-content: flex-start; }
}
@media (max-width: 600px) {
  html[dir="rtl"] .header-inner {
    grid-template-areas: "logo menu" "lang lang";
  }
}
html[dir="rtl"] .license-input-row { flex-direction: row-reverse; }
html[dir="rtl"] .hero-cta { flex-direction: row-reverse; }

.license-ad-row {
  margin: 24px 0;
}
.license-ad-row .ad-slot {
  min-height: 90px;
}
.license-ad-mid .ad-slot-rect {
  min-height: 250px;
}
.license-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  margin: 32px 0 16px;
  color: var(--text-0);
}
.page-license .trial-card {
  margin-bottom: 8px;
}
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: auto;
}

/* === STATIC / LEGAL / GUIDES PAGES === */
.static-page {
  padding: 48px 24px 80px;
  max-width: 800px;
}
.static-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.static-page h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--red);
  margin: 32px 0 12px;
  letter-spacing: 0.5px;
}
.static-page h3 { font-size: 16px; margin: 20px 0 8px; color: var(--text-0); }
.static-page p, .static-page li {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.static-page ul, .static-page ol { padding-left: 24px; margin-bottom: 16px; }
.static-page a { color: var(--red-bright); }
.static-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.static-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.static-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
}
.static-links a:hover { color: var(--red); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  color: var(--text-2);
}
.legal-table th { color: var(--red); font-family: var(--font-display); }
.nav-static { display: flex; gap: 20px; }
.nav-static a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-static a.active, .nav-static a:hover { color: var(--text-0); }

.guides-hero { margin-bottom: 48px; }
.guides-lead { font-size: 17px; color: var(--text-2); max-width: 720px; line-height: 1.7; }
.guide-article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.guide-article h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-0);
  margin-bottom: 16px;
}
.faq-block { margin-top: 40px; }
.faq-block > h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  padding: 4px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-0);
  padding: 14px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 14px; margin: 0; }
.guides-cta { margin-top: 32px; color: var(--text-2); }
.guides-preview {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.guide-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-0);
}
.guide-card p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.guide-more {
  margin-top: 24px;
  text-align: center;
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-3);
  border: 1px solid var(--red);
  border-left: 4px solid var(--red);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-0);
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  animation: toastIn 0.3s ease-out;
}
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .container,
  .container-narrow { padding-left: 16px; padding-right: 16px; }

  .header {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "logo lang menu";
    align-items: center;
    gap: 8px 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo { grid-area: logo; min-width: 0; }
  .logo-text { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; }
  .nav-toggle { display: flex; grid-area: menu; flex-shrink: 0; }
  .lang-switch {
    grid-area: lang;
    margin: 0;
    max-width: min(58vw, 280px);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-end;
    padding-bottom: 2px;
  }
  .lang-switch::-webkit-scrollbar { display: none; }
  .lang-flag {
    flex-shrink: 0;
    min-width: 40px;
    min-height: 44px;
    padding: 6px 5px 4px;
  }

  .nav {
    position: fixed;
    top: var(--header-h, 64px);
    left: 0;
    right: 0;
    background: var(--bg-1);
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    padding-left: max(16px, env(safe-area-inset-left, 0));
    padding-right: max(16px, env(safe-area-inset-right, 0));
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.25s;
    z-index: 99;
    max-height: calc(100dvh - var(--header-h, 64px));
    overflow-y: auto;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-link:last-child { border-bottom: none; }

  input,
  select,
  textarea,
  .license-input-row input {
    font-size: 16px !important;
  }

  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat { padding: 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }

  .download-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dl-rank { display: none; }
  .dl-icon { text-align: left; font-size: 32px; }

  .cta-box { flex-direction: column; text-align: center; padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .license-input-row { flex-direction: column; }
  .license-input-row .btn { width: 100%; min-height: 48px; }
  .license-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .trial-card .btn-large { width: 100%; min-height: 48px; }
  .license-ad-row .ad-slot { min-height: 60px; }
  .page-head .page-title { font-size: clamp(28px, 8vw, 40px); }
  .showcase-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo menu"
      "lang lang";
  }
  .lang-switch {
    max-width: 100%;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 4px;
  }
  .logo-text-1 { display: none; }
  .logo-text { font-size: 20px; }
  .logo-text-2::before { content: "GAMING "; color: var(--text-0); }
}

@media (max-width: 500px) {
  .hero { padding: 48px 0 32px; }
  .hero-title { font-size: clamp(36px, 11vw, 48px); }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; min-height: 48px; }
  .btn { padding: 12px 20px; font-size: 13px; min-height: 44px; }
  .btn-large { padding: 14px 24px; font-size: 14px; min-height: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .toast {
    left: 16px;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0));
  }
  .lang-flag { min-width: 44px; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }
}

@media (max-width: 380px) {
  .lang-flag-code { display: none; }
  .lang-flag { min-width: 40px; padding: 6px 4px; }
}
