/* ============================================================
   Rekabet Rehberi TR — Cyberpunk Arena Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #07070d;
  --bg-secondary: #0c0c18;
  --bg-card: #10101f;
  --bg-card-hover: #161630;
  --surface: #1a1a2e;
  --surface-alt: #12121f;
  --border-grid: rgba(0, 240, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.25);
  --border-accent: rgba(255, 0, 170, 0.3);
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00aa;
  --neon-green: #39ff14;
  --neon-amber: #ffb800;
  --neon-violet: #b347ff;
  --text-primary: #e8e8f0;
  --text-secondary: #9a9ab0;
  --text-muted: #5a5a70;
  --energy-bar: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  --energy-bar-green: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  --font-body: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 20px rgba(0, 240, 255, 0.15);
  --shadow-glow-magenta: 0 0 20px rgba(255, 0, 170, 0.15);
  --transition-fast: 0.2s ease;
  --transition-mid: 0.35s ease;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

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

/* Grid background overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body > *:not(.cookie-banner):not(.site-header) {
  position: relative;
  z-index: 1;
}

/* --- 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: 8px;
}

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

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

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

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

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li { margin-bottom: 0.35rem; }

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

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Energy Bar Divider --- */
.energy-bar {
  height: 2px;
  background: var(--energy-bar);
  border: none;
  margin: 0;
  opacity: 0.7;
}

.energy-bar--green {
  background: var(--energy-bar-green);
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-height);
  background: rgba(7, 7, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-grid);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo .logo-icon {
  width: 32px;
  height: 32px;
}

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

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

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

.nav-main a:hover,
.nav-main a:focus-visible {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.06);
}

/* Hamburger / X toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--neon-cyan);
  padding: 10px 9px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon-cyan);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle-icon { top: 50%; margin-top: -1px; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ''; left: 0; transform: none; }
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-main a.active {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border-bottom: 2px solid var(--neon-cyan);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-main {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(7, 7, 13, 0.97);
    border-bottom: 1px solid var(--border-grid);
    padding: 0 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.4,0,0.2,1), padding 0.25s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-main.open {
    max-height: 600px;
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-main a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* --- Hero Section --- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 .text-glow {
  background: var(--energy-bar);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-mid);
}

.hero-cta:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--shadow-glow-cyan);
  color: var(--neon-cyan);
}

/* --- Sections --- */
.section {
  padding: 64px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--energy-bar);
  margin: 10px auto 0;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Method / Info Cards (grid) --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--energy-bar);
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.info-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--neon-cyan);
  font-size: 1.2rem;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Game Review Cards --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border-grid);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.06);
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
}

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

.game-card-visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-visual svg {
  width: 100%;
  height: 100%;
}

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

.game-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.game-card-genre {
  font-size: 0.75rem;
  color: var(--neon-magenta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.game-card-body > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 14px;
}

.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  font-weight: 500;
}

.meta-tag--magenta {
  background: rgba(255, 0, 170, 0.06);
  border-color: rgba(255, 0, 170, 0.15);
  color: var(--neon-magenta);
}

.meta-tag--green {
  background: rgba(57, 255, 20, 0.06);
  border-color: rgba(57, 255, 20, 0.15);
  color: var(--neon-green);
}

.meta-tag--amber {
  background: rgba(255, 184, 0, 0.06);
  border-color: rgba(255, 184, 0, 0.15);
  color: var(--neon-amber);
}

.game-card-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-grid);
  padding-top: 12px;
}

.game-card-detail dt {
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 8px;
}

.game-card-detail dt:first-child {
  margin-top: 0;
}

.game-card-detail dd {
  margin-left: 0;
  color: var(--text-muted);
  margin-top: 2px;
}

.game-card-turkiye {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 184, 0, 0.04);
  border: 1px solid rgba(255, 184, 0, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.game-card-turkiye strong {
  color: var(--neon-amber);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Fair Play Section --- */
.fairplay-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.fairplay-list li {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-left: 3px solid var(--neon-green);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--neon-cyan);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: max-height 0.25s cubic-bezier(0.4,0,0.2,1), padding 0.25s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 20px 18px;
}

/* --- Contact Section (mini in index) --- */
.contact-mini {
  text-align: center;
}

.contact-mini p {
  color: var(--text-secondary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-cyan);
  color: var(--bg-primary);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition-mid);
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: #33f5ff;
  box-shadow: var(--shadow-glow-cyan);
  color: var(--bg-primary);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-grid);
  padding: 48px 0 24px;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.84rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-grid);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Page: Content Pages (about, privacy, etc.) --- */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-grid);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.page-content {
  padding: 48px 0 64px;
}

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

.page-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.page-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.page-content p,
.page-content li {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

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

/* --- Contact Form (iletisim.html) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block h3 {
  margin-bottom: 16px;
}

.contact-detail {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-detail-icon {
  color: var(--neon-cyan);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

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

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

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

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

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

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--neon-cyan);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-top: 16px;
  display: none;
}

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

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

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

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

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

.sitemap-list a {
  font-size: 0.95rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 24, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-glow);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-glow);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

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

.cookie-btn--accept:hover {
  background: #33f5ff;
}

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

.cookie-btn--reject:hover {
  border-color: var(--text-primary);
}

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

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

.cookie-settings-panel {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 16px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: max-height 0.25s cubic-bezier(0.4,0,0.2,1), padding 0.25s cubic-bezier(0.4,0,0.2,1), margin-top 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.25s cubic-bezier(0.4,0,0.2,1);
}

.cookie-settings-panel.open {
  max-height: 400px;
  margin-top: 14px;
  padding: 16px;
  border-color: var(--border-grid);
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-grid);
  font-size: 0.85rem;
}

.cookie-setting-row:last-child {
  border-bottom: none;
}

.cookie-setting-label {
  color: var(--text-secondary);
}

.cookie-setting-label span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--bg-primary);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--neon-cyan);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

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

.cookie-save-btn {
  margin-top: 12px;
}

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

/* --- Responsive --- */
@media (max-width: 600px) {
  .hero { padding: 48px 0 36px; }
  .section { padding: 40px 0; }
  .games-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Arena SVG Card Visuals --- */
.arena-visual {
  width: 100%;
  height: 100%;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- Content Images --- */
.text-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}

.text-with-image--reverse {
  direction: rtl;
}

.text-with-image--reverse > * {
  direction: ltr;
}

.content-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-grid);
  display: block;
}

@media (max-width: 768px) {
  .text-with-image {
    grid-template-columns: 1fr;
  }
  .text-with-image--reverse {
    direction: ltr;
  }
  .content-img {
    max-width: 100%;
  }
}

/* --- Standalone Form Section --- */
.form-section {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--energy-bar);
}

.form-section h2 {
  margin-bottom: 8px;
}

.form-section > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .form-section {
    padding: 24px 18px;
  }
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-grid);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.contact-info-card .ci-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-info-card .ci-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
