/* ===== NIGHTMARE PROTOCOL - Korku teması ===== */
:root {
  --bg: #000000;
  --bg-panel: #0d0d0d;
  --bg-faq: #080808;
  --bg-dots: #0a0a0a;
  --text: #f0f0f0;
  --text-dim: #a0a8b0;
  --glitch-cyan: #00e5ff;
  --glitch-magenta: #ff0066;
  --btn-windows-start: #1a1a1a;
  --btn-windows-end: #0f0f0f;
  --btn-macos-start: #141414;
  --btn-macos-end: #0a0a0a;
  --accent-dim: #4a6b7a;
  --font-display: 'Orbitron', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-mono);
  color: var(--text);
  background: #000000;
  position: relative;
  overflow-x: hidden;
}

/* ===== Siyah-beyaz TV static (arka plan glitch) ===== */
.tv-static {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 98;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: tvStatic 0.15s steps(4) infinite;
}

@keyframes tvStatic {
  0% { transform: translate(0, 0); opacity: 0.12; }
  25% { transform: translate(-1%, -2%); opacity: 0.16; }
  50% { transform: translate(2%, 1%); opacity: 0.14; }
  75% { transform: translate(-2%, 1%); opacity: 0.18; }
  100% { transform: translate(0, 0); opacity: 0.12; }
}

/* ===== Gürültü katmanı (chromatic glitch hissi) ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  animation: noise 0.3s steps(8) infinite;
}

@keyframes noise {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3%, -2%); }
  20% { transform: translate(2%, 3%); }
  30% { transform: translate(-2%, 1%); }
  40% { transform: translate(3%, -3%); }
  50% { transform: translate(-1%, 2%); }
  60% { transform: translate(2%, -1%); }
  70% { transform: translate(-3%, -2%); }
  80% { transform: translate(1%, 3%); }
  90% { transform: translate(-2%, 1%); }
}

/* ===== CRT scanline ===== */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.25) 2px,
    rgba(0, 0, 0, 0.25) 4px
  );
  pointer-events: none;
  z-index: 99;
  animation: scanline 6s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* ===== Protocol overlay (Start protocol) ===== */
body.protocol-open {
  overflow: hidden;
}

.protocol-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: protocolFadeIn 0.4s ease;
}

.protocol-overlay[hidden] {
  display: none;
}

@keyframes protocolFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.protocol-overlay-inner {
  text-align: center;
  max-width: 360px;
}

.protocol-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.protocol-overlay-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
}

.protocol-overlay-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.protocol-overlay-progress {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent-dim);
  border-radius: 2px;
}

.protocol-overlay-close {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.protocol-overlay-close:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

/* ===== Layout ===== */
.header,
.main {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  padding-top: 2rem;
  text-align: center;
}

.figures-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  min-height: 56px;
}

.figure {
  height: 52px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.2) brightness(0.95);
  opacity: 0.9;
  animation: figureGlitch 4s ease-in-out infinite;
}

.figure-2 { animation-delay: 0.5s; }
.figure-3 { animation-delay: 1s; }
.figure-4 { animation-delay: 1.5s; }

@keyframes figureGlitch {
  0%, 90%, 100% { filter: contrast(1.2) brightness(0.95); transform: translate(0, 0); }
  92% { filter: contrast(1.5) brightness(1.1); transform: translate(-2px, 1px); }
  94% { filter: contrast(1.2) brightness(0.9); transform: translate(2px, -1px); }
  96% { filter: contrast(1.4) brightness(1); transform: translate(-1px, 2px); }
  98% { filter: contrast(1.2) brightness(0.95); transform: translate(0, 0); }
}

/* ===== Ana başlık - Glitch ===== */
.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.9),
    2px 0 var(--glitch-cyan),
    -2px 0 var(--glitch-magenta),
    0 0 24px rgba(0, 0, 0, 1);
}

.tagline {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font: inherit;
  letter-spacing: inherit;
}

.glitch::before {
  color: var(--glitch-cyan);
  animation: glitchBefore 2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, 0);
}

.glitch::after {
  color: var(--glitch-magenta);
  animation: glitchAfter 2.5s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
}

@keyframes glitchBefore {
  0%, 85%, 100% { transform: translate(-2px, 0); opacity: 0.8; }
  10% { transform: translate(2px, -1px); opacity: 1; }
  20% { transform: translate(-1px, 1px); opacity: 0.9; }
  30% { transform: translate(1px, 0); opacity: 1; }
  40% { transform: translate(-2px, -1px); opacity: 0.8; }
  50% { transform: translate(2px, 1px); opacity: 1; }
  60% { transform: translate(-1px, 0); opacity: 0.9; }
  70% { transform: translate(1px, -1px); opacity: 1; }
  80% { transform: translate(-2px, 1px); opacity: 0.8; }
}

@keyframes glitchAfter {
  0%, 85%, 100% { transform: translate(2px, 0); opacity: 0.8; }
  10% { transform: translate(-2px, 1px); opacity: 1; }
  20% { transform: translate(1px, -1px); opacity: 0.9; }
  30% { transform: translate(-1px, 0); opacity: 1; }
  40% { transform: translate(2px, 1px); opacity: 0.8; }
  50% { transform: translate(-2px, -1px); opacity: 1; }
  60% { transform: translate(1px, -1px); opacity: 0.9; }
  70% { transform: translate(-1px, 1px); opacity: 1; }
  80% { transform: translate(2px, -1px); opacity: 0.8; }
}

/* Ek glitch tetiklemesi (script ile glitch-active verildiğinde) */
.glitch.glitch-active::before {
  animation: glitchBefore 0.15s steps(2) infinite;
  opacity: 1;
}
.glitch.glitch-active::after {
  animation: glitchAfter 0.18s steps(2) infinite;
  opacity: 1;
}

/* ===== Ana içerik ===== */
.main {
  padding-bottom: 3rem;
}

.face-container {
  text-align: center;
  margin: 2rem 0;
  min-height: 180px;
}

.face-img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  max-height: 220px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.15) brightness(0.9);
  animation: faceGlitch 5s ease-in-out infinite;
}

.face-placeholder {
  width: 260px;
  min-height: 180px;
  margin: 0 auto;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.face-placeholder.is-visible {
  display: flex;
}

.face-placeholder-text {
  font-size: 1rem;
  color: var(--text-dim);
}

.face-placeholder-path {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-dim);
  letter-spacing: 0.05em;
}

.face-placeholder-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

@keyframes faceGlitch {
  0%, 88%, 100% { filter: contrast(1.15) brightness(0.9); opacity: 1; }
  90% { filter: contrast(1.4) brightness(1.1); opacity: 0.95; }
  92% { filter: contrast(0.9) brightness(0.85); opacity: 1; }
  94% { filter: contrast(1.2) brightness(1); opacity: 0.98; }
  96% { filter: contrast(1.15) brightness(0.9); opacity: 1; }
}

/* ===== Run assessment butonu ===== */
.actions {
  text-align: center;
  margin: 2rem 0;
}

.btn-run {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-run:hover {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.btn-run-icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.btn-run-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border: 6px solid transparent;
  border-left-color: currentColor;
  margin-left: 2px;
}

.link-download {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.link-download:hover {
  color: var(--text);
}

/* ===== İndir bölümü - Glitch başlık ===== */
.download-section {
  margin-top: 3rem;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--text);
}

.download-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 2rem;
}

/* ===== Download butonları (Windows / macOS stili) ===== */
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  min-width: 200px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.download-btn:active {
  transform: translateY(0);
}

/* Windows - koyu mor tema */
.download-windows {
  background: linear-gradient(90deg, var(--btn-windows-start) 0%, var(--btn-windows-end) 100%);
  color: #e8e4ec;
}

.download-windows:hover {
  filter: brightness(1.1);
}

.download-btn-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.download-btn-icon-windows {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 5.5L10.5 4v7.5L3 11V5.5zm0 13L10.5 20v-7.5L3 13v5.5zM11 4l10-1.5V11L11 12.5V4zm0 8.5L21 11v7.5L11 20v-7.5z'/%3E%3C/svg%3E");
}

.download-btn-icon-apple {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b0a8b8'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E");
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.download-btn-label {
  font-size: 0.75rem;
  opacity: 0.95;
}

.download-btn-platform {
  font-size: 1.1rem;
  font-weight: 700;
}

/* macOS - daha koyu mor tema */
.download-macos {
  background: linear-gradient(90deg, var(--btn-macos-start) 0%, var(--btn-macos-end) 100%);
  color: #b0a8b8;
}

.download-macos:hover {
  filter: brightness(1.15);
}

.download-macos .download-btn-icon-apple {
  filter: brightness(1.1);
}

/* ===== Features ===== */
.features-section {
  margin-top: 3.5rem;
  padding: 2.5rem 0;
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-faq);
  border-radius: 16px;
  z-index: -1;
}

.features-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  border-radius: 16px;
  z-index: 0;
}

.features-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.features-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 2rem;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.feature-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 2px solid var(--text-dim);
  border-radius: 2px;
  box-shadow: 2px 2px 0 var(--text-dim);
}

.feature-heading {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Gallery ===== */
.gallery-section {
  margin-top: 3.5rem;
  padding: 2.5rem 0;
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-faq);
  border-radius: 16px;
  z-index: -1;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gallery-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  text-align: center;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gallery-thumb:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: none;
}

.gallery-thumb:has(img[style*="display: none"]) .gallery-placeholder,
.gallery-thumb:not(:has(img)) .gallery-placeholder {
  display: none;
}

.gallery-item-title {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq-section {
  margin-top: 3.5rem;
  padding: 2.5rem 0;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-faq);
  border-radius: 16px;
  z-index: -1;
}

/* Parçacık efekti (floating particles) */
.faq-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15), transparent),
    radial-gradient(2px 2px at 80% 70%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.12), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.1), transparent);
  background-size: 200% 200%;
  pointer-events: none;
  border-radius: 16px;
  z-index: 0;
  animation: faqParticles 15s ease-in-out infinite;
}

@keyframes faqParticles {
  0%, 100% { opacity: 1; background-position: 0% 0%; }
  50% { opacity: 0.9; background-position: 100% 100%; }
}

.faq-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.faq-question[aria-expanded="true"] {
  background: rgba(255,255,255,0.04);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--text-dim);
  transition: background 0.2s;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  margin: -6px 0 0 -1px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq-answer {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Glitch buton */
.glitch-btn {
  position: relative;
}

/* Mavi glitch yazısı kaldırıldı */

/* Responsive */
@media (max-width: 600px) {
  .download-buttons {
    flex-direction: column;
  }
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  .faq-section {
    padding: 1.5rem 0;
  }
  .faq-question {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
}
