/* ============================================
   Birlikte Oyna Rehberi — Cyberpunk / Retro Arcade + Warm Neon
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a12;
  --bg-secondary: #12121f;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --text-primary: #e8e6e3;
  --text-secondary: #a9a6b3;
  --text-muted: #6e6b7b;
  --neon-cyan: #00e5ff;
  --neon-magenta: #ff2d95;
  --neon-amber: #ffab40;
  --neon-green: #39ff14;
  --neon-purple: #b388ff;
  --neon-cyan-glow: 0 0 8px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.15);
  --neon-magenta-glow: 0 0 8px rgba(255, 45, 149, 0.4), 0 0 20px rgba(255, 45, 149, 0.15);
  --neon-amber-glow: 0 0 8px rgba(255, 171, 64, 0.4), 0 0 20px rgba(255, 171, 64, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-neon: rgba(0, 229, 255, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-body: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Consolas', 'Courier New', monospace;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Cyberpunk grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--neon-cyan);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

a:focus:not(:focus-visible) {
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
  color: var(--neon-magenta);
  text-shadow: var(--neon-magenta-glow);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

/* --- Neon divider --- */
.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), transparent);
  border: none;
  margin: 0;
  opacity: 0.6;
}

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-neon);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 229, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--neon-cyan);
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

/* Desktop nav — visible above 1024px */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.06);
  text-shadow: none;
}

/* Hamburger button — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  z-index: 1001;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}

.menu-toggle:hover {
  border-color: var(--neon-cyan);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile nav dropdown ---- */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-neon);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  }

  .main-nav a:hover {
    background: rgba(0, 229, 255, 0.04);
    border-left-color: var(--neon-cyan);
  }

  .main-nav a.active {
    background: rgba(0, 229, 255, 0.06);
    border-left-color: var(--neon-cyan);
    color: var(--neon-cyan);
  }
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: var(--neon-cyan);
  top: -100px;
  right: -100px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: var(--neon-magenta);
  bottom: -100px;
  left: -100px;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 100px;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .neon-text {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.25);
  color: var(--bg-primary);
  text-shadow: none;
}

/* =====================
   METHODOLOGY / HOW WE REVIEW
   ===================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.method-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: var(--neon-cyan-glow);
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.08);
}

.method-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--neon-cyan);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.method-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Card color variants */
.method-card.magenta .method-icon {
  background: rgba(255, 45, 149, 0.08);
}

.method-card.magenta .method-icon svg {
  stroke: var(--neon-magenta);
}

.method-card.magenta:hover {
  border-color: rgba(255, 45, 149, 0.25);
  box-shadow: var(--neon-magenta-glow);
}

.method-card.amber .method-icon {
  background: rgba(255, 171, 64, 0.08);
}

.method-card.amber .method-icon svg {
  stroke: var(--neon-amber);
}

.method-card.amber:hover {
  border-color: rgba(255, 171, 64, 0.25);
  box-shadow: var(--neon-amber-glow);
}

.method-card.green .method-icon {
  background: rgba(57, 255, 20, 0.08);
}

.method-card.green .method-icon svg {
  stroke: var(--neon-green);
}

.method-card.green:hover {
  border-color: rgba(57, 255, 20, 0.25);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4), 0 0 20px rgba(57, 255, 20, 0.15);
}

/* =====================
   CULTURE / COMMUNICATION
   ===================== */
.culture-content {
  max-width: 820px;
  margin: 0 auto;
}

.culture-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 3px solid var(--neon-cyan);
  transition: border-color var(--transition-base);
}

.culture-block:nth-child(2) {
  border-left-color: var(--neon-magenta);
}

.culture-block:nth-child(3) {
  border-left-color: var(--neon-amber);
}

.culture-block:nth-child(4) {
  border-left-color: var(--neon-green);
}

.culture-block h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.culture-block p {
  line-height: 1.8;
  font-size: 1rem;
}

/* =====================
   PLATFORM COMPATIBILITY
   ===================== */
.platform-content {
  max-width: 820px;
  margin: 0 auto;
}

.platform-term {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.platform-term::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
}

.platform-term h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--neon-cyan);
}

.platform-term p {
  line-height: 1.75;
}

.platform-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255, 171, 64, 0.06);
  border: 1px solid rgba(255, 171, 64, 0.2);
  border-radius: var(--radius-md);
  color: var(--neon-amber);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================
   REVIEWS / GAME CARDS
   ===================== */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--border-neon);
  color: var(--neon-cyan);
}

.filter-btn.active {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--neon-cyan-glow);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: var(--neon-cyan-glow);
}

.game-card[hidden] {
  display: none;
}

/* Placeholder art via CSS — split-screen / controller lines */
.card-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 229, 255, 0.05) 100%);
}

.card-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.card-tag {
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-tag.online {
  background: rgba(0, 229, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.card-tag.local {
  background: rgba(255, 45, 149, 0.1);
  color: var(--neon-magenta);
  border: 1px solid rgba(255, 45, 149, 0.2);
}

.card-tag.family {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.card-tag.short {
  background: rgba(255, 171, 64, 0.1);
  color: var(--neon-amber);
  border: 1px solid rgba(255, 171, 64, 0.2);
}

.card-tag.long {
  background: rgba(179, 136, 255, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(179, 136, 255, 0.2);
}

.card-review {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 16px;
}

.card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.card-meta strong {
  color: var(--text-secondary);
}

.card-turkey-note {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(255, 171, 64, 0.05);
  border: 1px solid rgba(255, 171, 64, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--neon-amber);
  line-height: 1.6;
}

/* =====================
   FAQ / SSS
   ===================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-neon);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--neon-cyan);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 24px;
  position: relative;
  z-index: 1;
}

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

.footer-about h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--neon-cyan);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 380px;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-neon);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  border-color: var(--neon-cyan);
}

.cookie-btn.accept:hover {
  box-shadow: var(--neon-cyan-glow);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.cookie-btn.reject:hover {
  border-color: var(--neon-magenta);
  color: var(--neon-magenta);
}

.cookie-btn.settings {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.cookie-btn.settings:hover {
  border-color: var(--neon-amber);
  color: var(--neon-amber);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-settings-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.cookie-option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  top: 2px;
  left: 2px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--neon-cyan);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--neon-cyan);
}

.toggle-switch input:disabled + .toggle-slider {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-save {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: var(--neon-cyan);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: box-shadow var(--transition-fast);
}

.cookie-modal-save:hover {
  box-shadow: var(--neon-cyan-glow);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-info-block h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--neon-cyan);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-item-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Standalone form (iletisim page) */
.contact-info-section {
  margin-bottom: 20px;
}

.contact-info-section h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--neon-cyan);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-info-row .contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 0;
}

.contact-form-standalone {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form-block h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group label .required {
  color: var(--neon-magenta);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--neon-cyan);
  flex-shrink: 0;
}

.form-checkbox-group label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.2);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-result {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
}

.form-result.success {
  display: block;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--neon-green);
}

.form-result.error {
  display: block;
  background: rgba(255, 45, 149, 0.08);
  border: 1px solid rgba(255, 45, 149, 0.2);
  color: var(--neon-magenta);
}

/* Honeypot */
.ht-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* =====================
   LEGAL / TECH PAGES
   ===================== */
.page-header {
  padding: calc(var(--header-height) + 48px) 0 48px;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.page-body {
  padding: 60px 0 80px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.page-content p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  margin: 12px 0 20px 24px;
  color: var(--text-secondary);
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sitemap page */
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sitemap-list a {
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-list a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   RESPONSIVE
   ===================== */
/* =====================
   INLINE IMAGES
   ===================== */
.content-with-image {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 28px 0;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-with-image .content-text {
  flex: 1;
}

.content-with-image .content-image {
  flex: 0 0 280px;
  max-width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.content-with-image .content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

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

  .content-with-image {
    flex-direction: column;
  }

  .content-with-image.reverse {
    flex-direction: column;
  }

  .content-with-image .content-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
  }

  .section {
    padding: 50px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 11px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .filters-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
