<style>
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #0b0f17;
      color: #e5e7eb;
      -webkit-font-smoothing: antialiased;
    }


/* ==== Age Gate Base ==== */
#age-gate[hidden] { display: none; }

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Karanlık perde + hafif arka plan blur */
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(2px);
}

/* Modal kart */
#age-gate .age-card {
  width: min(520px, 92vw);
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#age-gate .age-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
}

#age-gate .age-card p {
  margin: 0 0 18px;
  opacity: .9;
  line-height: 1.45;
}

#age-gate .age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

/* === AGE GATE BUTTONS === */
#btn-age-yes,
#btn-age-no {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 0 10px;
  color: #fff;
}

#btn-age-yes {
  background-color: #22c55e;
}

#btn-age-no {
  background-color: #ef4444;
}

#btn-age-yes:hover,
#btn-age-no:hover {
  transform: scale(1.05);
  opacity: 0.9;
}




/* ==== Blur/Freeze State ==== */
/* Kapı açıkken sayfa içeriğini bulanıklaştır ve etkileşimi kapat */
.gate-open #page-root {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.hero {
  position: relative;
  width: 900px;          
  height: 360px;         
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}


.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* --- Mobil uyum --- */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    height: auto;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

    .game-info {
      max-width: 900px;
      margin: 20px auto 40px auto;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 10px;
    }

    .game-icon img {
      width: 90px;
      height: 90px;
      border-radius: 18%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,0.2);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    }

    .game-title {
      font-size: 36px;
      font-weight: 800;
    }

    .game-subtitle {
      font-size: 14px;
      color: #9ca3af;
      margin-top: 4px;
    }

    .info-section {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      margin: 30px auto;
      max-width: 900px;
      text-align: center;
    }

    .info-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .info-box strong {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
    }

    .info-box strong .star {
      color: gold;
    }

    .info-box small {
      color: #9ca3af;
      font-size: 15px;
    }

    .download-btn {
      display: block;
      width: 250px;
      margin: 0 auto 30px auto;
      padding: 15px;
      background: #2563eb;
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
    }

    .gallery {
      position: relative;
      width: 720px;
      height: 360px;
      margin: 60px auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.5);
      background: #0f172a;
    }

    .gallery-track {
      display: flex;
      transition: transform 0.4s ease;
    }

    .gallery img {
      width: 720px;
      height: 360px;
      object-fit: cover;
      flex-shrink: 0;
      user-select: none;
    }

/* === Mobil Uyumluluk (Ana Galeri) === */
@media (max-width: 768px) {
  .gallery {
    width: 100%;
    height: auto;
    margin: 30px auto;
  }

  .gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .nav-button {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}


    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: 2px solid #fff;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-button:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-50%) scale(1.1);
    }

    .nav-button.left { left: 25px; }
    .nav-button.right { right: 25px; }

    .character-section {
      max-width: 900px;
      margin: 60px auto;
      text-align: center;
    }

    .character-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ff1e48;
  text-shadow: 0 0 12px rgba(255,30,72,0.55);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.character-section .subtext {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 25px;
}

.character-section .underline-glow {
  width: 80px;
  height: 4px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, #ff1e48, #ff6b81);
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(255,30,72,0.65);
}


    .character-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      justify-items: center;
    }

    .character-grid img {
      width: 210px;
      height: auto;
      border-radius: 10px;
      transition: transform 0.3s ease;
      box-shadow: none
    }

    .character-grid img:hover {
      transform: scale(1.05);
    }

    .scene-section, .about-section {
      max-width: 900px;
      margin: 60px auto;
      text-align: center;
    }

    .scene-section h2 {
      font-size: 30px;
      color: #ff6b81;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .scene-section p {
      color: #cbd5e1;
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .scene-section img.main-gif {
      width: 900px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.5);
      margin-bottom: 40px;
    }

    .gif-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 20px;
    }

    .gif-row img {
      width: 440px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    }

    .divider {
      width: 100%;
      height: 2px;
      background: rgba(255,255,255,0.08);
      margin: 80px 0;
    }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0b0f17;
    color: #e5e7eb;
  }

  

  .game-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    margin-top: 10px;
    color: #d1d5db;
  }

  .game-meta span strong { color: #93c5fd; }

  .about-section {
    max-width: 950px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .about-section h2 {
    color: #93c5fd;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
  }

  .about-section p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 16px;
  }

  .characters {
    max-width: 1100px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }

  .character {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  }

  .character img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .character h3 {
    text-align: center;
    padding: 12px 0;
    color: #93c5fd;
    font-weight: 700;
  }

  .gallery-button-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .view-gallery-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(96,165,250,0.5);
    transition: all 0.3s ease;
  }

  .view-gallery-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(96,165,250,0.8);
  }

   /* === GALLERY PREVIEW SECTION (FINAL STABLE VERSION) === */
.gallery-preview {
  position: relative;
  max-width: 900px;
  margin: 30px auto 60px auto;
  background: linear-gradient(180deg, rgba(15,20,30,0.95) 0%, rgba(10,14,25,0.95) 100%);
  /* sabit koyu arka plan */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(37,99,235,0.25);
  overflow: hidden;
  z-index: 1;
}

.gallery-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,15,23,0.6); /* hafif opaklık katmanı */
  z-index: 0;
}

.gallery-preview .preview-header {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.gallery-preview .preview-header h2 {
  color: #93c5fd;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.gallery-preview .preview-header p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0;
}

.preview-track {
  display: flex;
  gap: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.preview-track img {
  height: 145px;
  width: auto;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.preview-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(147,197,253,0.5);
}

/* scrollbar tamamen gizle */
.preview-track::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #0b0f17 !important;
  background-image: none !important;
  background-attachment: fixed;
}

/* === LEGAL MODALS - Bottom Bar Version === */

.legal-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: transparent;
  display: none; /* 🔹 Başta gizli olacak */
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
}

.legal-modal {
  background: rgba(17, 17, 17, 0.97);
  color: #fff;
  padding: 25px 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 900px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  pointer-events: all;
  animation: slideUp 0.35s ease forwards;
}

.legal-modal h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fbbf24;
}

.legal-modal p {
  font-size: 15px;
  line-height: 1.5;
  color: #d1d5db;
}

.close-legal {
  display: inline-block;
  margin-top: 12px;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.close-legal:hover {
  opacity: 0.8;
}

/* Arka plan normal kalacak */
body.legal-open #page-root {
  filter: none;
  pointer-events: all;
  user-select: auto;
}

/* === Animasyon === */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes modalFade {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}

.download-area {
  text-align: center;
  margin-bottom: 35px;
}

.download-hint {
  margin-top: 6px;
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.4;
}

.main-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff; /* beyaz */
  margin: 40px 0 30px 0;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25); /* yumuşak beyaz parıltı */
  letter-spacing: 0.4px;
}

body.legal-open #legal-overlay {
  display: flex;
}

/* === Visually hidden (DOM'da kalsın, kullanıcı görmesin) === */
.sr-only-legal {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 768px) {
    .gallery-preview img {
      width: 170px;
      height: 110px;
    }
    .gallery-preview .preview-header h2 {
      font-size: 1.3rem;
    }
  }

/* ================================
   GameVaultX — Responsive Styles
   Version: 1.0 (Nov 2025)
   ================================ */

/* === Genel Ayarlar === */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* === Ana Konteyner === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* === Kart / Bölüm Yapısı === */
.card {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

/* === Görseller === */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* === Başlıklar === */
h1, h2, h3 {
  text-align: center;
  line-height: 1.4;
  margin: 15px 0;
}

h1 {
  font-size: 2rem;
  color: #e91e63;
}

/* === Butonlar === */
.download-btn, .dl-trigger {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 10px auto;
  padding: 12px 0;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.download-btn:hover {
  opacity: 0.85;
}

/* === Footer ve Menü === */
footer {
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  color: #aaa;
  background-color: #0a0a0a;
}

/* === Age Verification Popup === */
#age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-align: center;
  padding: 20px;
}

#age-verification h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

#age-verification button {
  background-color: #e91e63;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

/* === Galeri Düzeni === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-grid img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* ===============================
   === Responsive Breakpoints ===
   =============================== */

/* Tablet (max 992px) */
@media (max-width: 992px) {
  h1 {
    font-size: 1.8rem;
  }
  .card {
    max-width: 320px;
  }
}

/* Mobil (max 768px) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 400px;
  }

  .download-btn {
    font-size: 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* Küçük Ekran (max 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }

  .container {
    width: 95%;
  }

  .card {
    width: 100%;
  }

  .download-btn {
    font-size: 14px;
    padding: 10px 0;
  }

  #age-verification h2 {
    font-size: 18px;
  }

  #age-verification button {
    font-size: 14px;
    width: 80%;
  }

  footer {
    font-size: 12px;
    padding: 15px 0;
  }
}

footer a {
  color: #ffffff !important;
}



/* === SEO Hidden Heading === */
.hidden-seo{
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}




</style>