/* ============================================================
   Oyun Inceleme Atolyesi — Neon Arcade / Cyber UI Tema
   ============================================================ */

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

:root {
  --bg-primary: #0d0f14;
  --bg-secondary: #141720;
  --bg-card: #1a1d28;
  --bg-card-hover: #1f2333;
  --border-color: #2a2e3d;
  --border-glow: #3b82f6;
  --text-primary: #e4e6ed;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-pink: #ec4899;
  --accent-orange: #f59e0b;
  --neon-glow: 0 0 8px rgba(59,130,246,0.3);
  --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* scanline overlay — very subtle */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}

a { color: var(--accent-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-blue); }

img { max-width: 100%; height: auto; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent-blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 8px;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,15,20,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo .logo-icon {
  width: 32px;
  height: 32px;
}
.site-logo:hover { color: var(--accent-cyan); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  border-radius: 1px;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--text-secondary);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--accent-cyan);
  background: rgba(6,182,212,0.08);
}
.nav-menu a.active {
  color: var(--accent-cyan);
  background: rgba(6,182,212,0.1);
  border-bottom: 2px solid var(--accent-cyan);
}

/* --- Content with image --- */
.content-with-image {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.content-with-image .text-block {
  flex: 1;
}
.content-with-image .image-block {
  flex: 0 0 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.content-with-image .image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column;
  }
  .content-with-image .image-block {
    flex: none;
    width: 100%;
    max-width: 340px;
  }
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.hero-cta:hover {
  background: #2563eb;
  box-shadow: var(--neon-glow);
  color: #fff;
}

/* grid background pattern */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--accent-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-blue) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
  position: relative;
}
.section:nth-child(even) {
  background: var(--bg-secondary);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 48px;
}

/* --- Neon divider --- */
.neon-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 2px;
  margin: 16px 0 0;
}

/* ============================================================
   INFO GRID (method, performance, etc.)
   ============================================================ */
.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-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}
.info-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(59,130,246,0.1);
}
.info-card .card-icon svg {
  width: 24px;
  height: 24px;
}
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   REVIEW CARDS & FILTERS
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-group {
  margin-bottom: 20px;
}
.filter-group-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}
.filter-btn, .platform-btn, .mode-btn {
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.88rem;
  font-family: inherit;
  transition: all var(--transition);
}
.filter-btn:hover, .platform-btn:hover, .mode-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.filter-btn.active, .platform-btn.active, .mode-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.sort-bar label {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.sort-bar select {
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

#review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.1);
}

/* Placeholder gorsel */
.card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-visual .pixel-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(var(--accent-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-blue) 1px, transparent 1px);
  background-size: 12px 12px;
}
.card-visual .neon-lines {
  position: relative;
  z-index: 1;
}

.card-body {
  padding: 20px;
}
.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.card-tag {
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(59,130,246,0.1);
  color: var(--accent-blue);
  font-weight: 500;
}
.card-tag.platform { background: rgba(139,92,246,0.1); color: var(--accent-purple); }
.card-tag.mode { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.card-tag.hours { background: rgba(245,158,11,0.1); color: var(--accent-orange); }

.card-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.card-details {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.card-details strong {
  color: var(--text-secondary);
}

.no-result {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   GLOSSARY
   ============================================================ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.glossary-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.glossary-item dt {
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.glossary-item dd {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-cyan); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-blue);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  content: '\2212';
}
.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.footer-col ul {
  list-style: none;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--accent-cyan);
}
.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(13,15,20,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
}
#cookie-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-accept {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #2563eb;
}
.cookie-btn-reject {
  background: var(--bg-card);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.cookie-btn-reject:hover {
  background: rgba(59,130,246,0.1);
}
.cookie-btn-settings {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-secondary);
}
.cookie-btn-settings:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Settings panel */
#cookie-settings-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9500;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#cookie-settings-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.cookie-category {
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: var(--radius);
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 26px;
  line-height: 1.5;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-blue);
}
#cookie-settings-panel .cookie-buttons {
  margin-top: 20px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-detail strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group label .required {
  color: var(--accent-pink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-blue);
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.btn-submit {
  padding: 12px 32px;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: #2563eb;
  box-shadow: var(--neon-glow);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-result {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}
.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* honeypot */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ============================================================
   TECH PAGES
   ============================================================ */
.page-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: var(--bg-secondary);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 80px;
}
.page-content .container {
  max-width: 860px;
}
.prose h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--text-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.prose h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--text-primary);
}
.prose p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.prose ul, .prose ol {
  margin: 0 0 16px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.prose li {
  margin-bottom: 6px;
}
.prose strong {
  color: var(--text-primary);
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* sitemap page */
.sitemap-list {
  list-style: none;
  padding: 0;
}
.sitemap-list li {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.sitemap-list a {
  font-weight: 600;
  font-size: 1.05rem;
}
.sitemap-list p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PLACEHOLDER VISUALS (SVG-based)
   ============================================================ */
.placeholder-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.placeholder-visual svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Color variants for cards */
.card-visual.v1 { background: linear-gradient(135deg, #0f172a, #1e293b); }
.card-visual.v2 { background: linear-gradient(135deg, #1a0f2e, #2d1b69); }
.card-visual.v3 { background: linear-gradient(135deg, #0f1a2e, #1b3a69); }
.card-visual.v4 { background: linear-gradient(135deg, #0f2e1a, #1b6939); }
.card-visual.v5 { background: linear-gradient(135deg, #2e0f1a, #691b3a); }
.card-visual.v6 { background: linear-gradient(135deg, #2e2a0f, #69601b); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(13,15,20,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.nav-open {
    max-height: 500px;
    padding: 12px;
  }

  .hero { padding: 120px 0 60px; }

  #review-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 480px) {
  .filter-bar {
    gap: 6px;
  }
  .filter-btn, .platform-btn, .mode-btn {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* ============================================================
   BUTTONS (reusable)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn--primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}
.btn--primary:hover {
  background: #2563eb;
  box-shadow: var(--neon-glow);
}
.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--secondary {
  background: transparent;
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.btn--secondary:hover {
  background: rgba(6,182,212,0.1);
  box-shadow: 0 0 12px rgba(6,182,212,0.2);
}

/* ============================================================
   STYLED TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.cookie-table,
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}
.cookie-table thead,
.styled-table thead {
  background: rgba(59,130,246,0.08);
}
.cookie-table th,
.styled-table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}
.cookie-table td,
.styled-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  line-height: 1.6;
}
.cookie-table tbody tr:last-child td,
.styled-table tbody tr:last-child td {
  border-bottom: none;
}
.cookie-table tbody tr:hover,
.styled-table tbody tr:hover {
  background: rgba(59,130,246,0.04);
}
.cookie-table code,
.styled-table code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-purple);
  background: rgba(139,92,246,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Cookie prefs action */
.cookie-prefs-action {
  margin: 24px 0 32px;
}

/* ============================================================
   CONTACT PAGE — restyle
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
/* Contact info column */
.contact-info-col {}
.contact-col-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-col-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* --- Contact cards (individual tiles) --- */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  transition: width 0.3s ease;
}
.contact-card--cyan::before  { background: var(--accent-cyan); }
.contact-card--blue::before  { background: var(--accent-blue); }
.contact-card--purple::before { background: var(--accent-purple); }
.contact-card--green::before { background: var(--accent-green); }

.contact-card:hover {
  transform: translateX(4px);
}
.contact-card--cyan:hover  { border-color: var(--accent-cyan);   box-shadow: 0 0 20px rgba(6,182,212,0.12); }
.contact-card--blue:hover  { border-color: var(--accent-blue);   box-shadow: 0 0 20px rgba(59,130,246,0.12); }
.contact-card--purple:hover { border-color: var(--accent-purple); box-shadow: 0 0 20px rgba(139,92,246,0.12); }
.contact-card--green:hover { border-color: var(--accent-green);  box-shadow: 0 0 20px rgba(16,185,129,0.12); }

.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card--cyan  .contact-card__icon { background: rgba(6,182,212,0.1);   color: var(--accent-cyan); }
.contact-card--blue  .contact-card__icon { background: rgba(59,130,246,0.1);  color: var(--accent-blue); }
.contact-card--purple .contact-card__icon { background: rgba(139,92,246,0.1); color: var(--accent-purple); }
.contact-card--green .contact-card__icon { background: rgba(16,185,129,0.1);  color: var(--accent-green); }

.contact-card__body {
  flex: 1;
  min-width: 0;
}
.contact-card__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-card__value {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.4;
  word-break: break-word;
}
a.contact-card__value:hover {
  color: var(--accent-cyan);
}

/* Contact note */
.contact-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(59,130,246,0.04);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-note p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* Form card */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
}
.contact-form-wrapper h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.contact-form-wrapper > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.field-optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}
.field-required {
  color: var(--accent-pink);
  font-weight: 700;
}
.form-group--checkbox {
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-blue);
  flex-shrink: 0;
}
.form-actions {
  margin-top: 4px;
}

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

/* ============================================================
   prefers-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; }
  .reveal { opacity: 1; transform: none; }
}
