/* ===============================================
   QUANTAPS • Gaming Free Tools (Brawl / PUBG)
   SVG Sprite odaklı • body.game-tool
   - Tool CSS scope: sadece tool-wrap'in direct child'larına uygular
   - Include (hizmet öneri) etkilenmesin diye wrapper izole eder
=============================================== */

body.game-tool{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,.22), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(168,85,247,.28), transparent 55%),
    #020617;
  color:#e5e7eb;
}

/* Genel wrap */
.game-tool .tool-wrap{
  max-width:880px;
  margin:0 auto;
  padding:40px 16px 52px;
}

/* === SVG ICON SYSTEM (tek kaynak) === */
.game-tool .qt-ic{
  width:1em;
  height:1em;
  display:inline-block;
  vertical-align:-0.125em;
  flex:0 0 auto;
  fill:currentColor;
}
.game-tool .qt-ic.is-spin{
  animation:qt-spin .9s linear infinite;
}
@keyframes qt-spin{to{transform:rotate(360deg)}}

/* ==================================================
   ISOLATION (Include bloğu etkilenmesin)
   HTML’de include’u şu wrapper ile sar:
   <div class="qt-tool-suggest-wrap"><?php include ... ?></div>
================================================== */
.game-tool .qt-tool-suggest-wrap{
  margin-top:22px;
  /* İstersen include’u net/solid göstermek için aç:
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,255,.35);
  border-radius:18px;
  padding:14px;
  box-shadow:0 18px 46px rgba(15,23,42,.75);
  */
}

/* ==================================================
   TOOL UI — SADECE DIRECT CHILD
   (include içinde .ios-card vb varsa cam efekti bulaşmasın)
================================================== */

/* HERO */
.game-tool .tool-wrap > .ios-hero{
  display:flex;
  gap:14px;
  padding:18px 18px;
  border-radius:24px;
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(26px) saturate(180%);
  -webkit-backdrop-filter:blur(26px) saturate(180%);
  border:1px solid rgba(148,163,255,.42);
  box-shadow:0 22px 55px rgba(15,23,42,.85);
  align-items:center;
  margin-bottom:22px;
}
.game-tool .tool-wrap > .ios-hero .h-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:radial-gradient(circle at 20% 0,rgba(248,250,252,.9),transparent 60%);
  border:1px solid rgba(148,163,255,.6);
  box-shadow:0 10px 30px rgba(15,23,42,.8);
  color:#0f172a;
}
.game-tool .tool-wrap > .ios-hero .h-icon .qt-ic{
  width:22px;
  height:22px;
}
.game-tool .tool-wrap > .ios-hero .h-text h1{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.02em;
  color:#f9fafb;
}
.game-tool .tool-wrap > .ios-hero .h-text p{
  margin:4px 0 0;
  font-size:.92rem;
  color:#9ca3af;
}

/* CARD (tool’daki kartlar) */
.game-tool .tool-wrap > .ios-card{
  background:rgba(15,23,42,.96);
  border-radius:22px;
  border:1px solid rgba(148,163,255,.38);
  padding:20px 18px;
  backdrop-filter:blur(22px) saturate(200%);
  -webkit-backdrop-filter:blur(22px) saturate(200%);
  box-shadow:0 20px 50px rgba(15,23,42,.8);
  margin-bottom:22px;
}

/* FORM */
.game-tool .ios-form{
  display:grid;
  gap:14px;
  position:relative;
}
.game-tool .ios-form label{
  font-weight:700;
  font-size:.94rem;
  color:#e5e7eb;
}
.game-tool .ios-form input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(148,163,255,.7);
  padding:11px 12px;
  font-size:.95rem;
  background:#020617;
  color:#e5e7eb;
  transition:border-color .18s, box-shadow .18s, background .18s;
}
.game-tool .ios-form input::placeholder{color:#6b7280;}
.game-tool .ios-form input:focus{
  outline:none;
  border-color:#38bdf8;
  box-shadow:0 0 0 2px rgba(56,189,248,.35);
}

/* Honeypot */
.game-tool .hp{
  position:absolute;
  left:-9999px;
  top:-9999px;
}

/* BUTTONS */
.game-tool .btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 16px;
  border-radius:14px;
  border:none;
  font-weight:800;
  font-size:.95rem;
  background:linear-gradient(135deg,#22c55e,#eab308);
  color:#022c22;
  cursor:pointer;
  width:100%;
  box-shadow:0 14px 40px rgba(22,163,74,.7);
  transition:transform .12s, box-shadow .12s, opacity .12s;
}
.game-tool .btn-primary .qt-ic{width:1.05em;height:1.05em;}
.game-tool .btn-primary:disabled{opacity:.7;box-shadow:none;cursor:default;}
.game-tool .btn-primary:not(:disabled):hover{
  transform:translateY(-1px);
  box-shadow:0 18px 46px rgba(22,163,74,.9);
}

/* VERIFY BOX */
.game-tool .verify-box{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 11px;
  border-radius:14px;
  border:1px solid rgba(148,163,255,.55);
  background:rgba(15,23,42,.9);
  font-size:.9rem;
  color:#e5e7eb;
}
.game-tool .verify-box .qt-ic{opacity:.95;}

/* PROGRESS + DONE */
.game-tool .card-title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:800;
  color:#f9fafb;
}
.game-tool .muted{
  margin:0;
  font-size:.9rem;
  color:#9ca3af;
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.game-tool .muted .qt-ic{
  margin-top:2px;
  opacity:.9;
}

.game-tool .timer{
  margin:12px 0 6px;
  text-align:center;
}
.game-tool .time{
  font-size:1.9rem;
  font-weight:900;
  letter-spacing:.06em;
  color:#e5e7eb;
}
.game-tool .bar-wrap{
  width:100%;
  height:9px;
  border-radius:999px;
  background:#020617;
  overflow:hidden;
  border:1px solid rgba(148,163,255,1);
}
.game-tool .bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#22c55e,#38bdf8);
  transition:width 1s linear;
}

/* Sayaç altı CTA */
.game-tool .progress-cta{
  margin-top:14px;
  padding:10px 14px 12px;
  border-radius:14px;
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,255,.55);
  font-size:.88rem;
}
.game-tool .progress-text{
  font-size:.9rem;
  color:#e5e7eb;
  margin-bottom:8px;
}
.game-tool .progress-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.game-tool .pi-prefix{
  font-size:.9rem;
  font-weight:700;
  color:#f9fafb;
}
.game-tool .pi-code{
  font-family:SFMono-Regular,ui-monospace,Menlo,monospace;
  font-size:.9rem;
  font-weight:800;
  padding:4px 10px;
  border-radius:10px;
  background:#020617;
  color:#f9fafb;
  border:1px solid rgba(148,163,255,.7);
}

.game-tool .pi-copy{
  border:none;
  background:#0f172a;
  border-radius:999px;
  padding:6px 12px;
  font-size:.85rem;
  font-weight:600;
  color:#e5e7eb;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.game-tool .pi-copy .qt-ic{opacity:.95;}
.game-tool .pi-copy.copied{
  background:#16a34a;
  color:#e5f9ed;
}

.game-tool .pi-link{
  text-decoration:none;
  font-size:.85rem;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  background:#22c55e;
  color:#022c22;
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
}
.game-tool .pi-link .qt-ic{width:1.05em;height:1.05em;}

/* Alt kupon banner (tool’un kendi banner’ı) */
.game-tool .tool-wrap > .coupon-banner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:13px 14px;
  border-radius:18px;
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(148,163,255,.5);
}
.game-tool .tool-wrap > .coupon-banner .cb-text{
  font-size:.9rem;
  color:#e5e7eb;
}
.game-tool .tool-wrap > .coupon-banner .cb-text b{font-weight:800;}

.game-tool .tool-wrap > .coupon-banner .cb-code-box{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:12px;
  background:#020617;
  color:#f9fafb;
  font-size:.86rem;
  border:1px solid rgba(148,163,255,.7);
}
.game-tool .tool-wrap > .coupon-banner .cb-code{
  font-family:SFMono-Regular,ui-monospace,Menlo,monospace;
  font-weight:900;
  letter-spacing:.08em;
}

.game-tool .tool-wrap > .coupon-banner .cb-copy{
  border:none;
  background:transparent;
  color:#e5e7eb;
  font-size:.8rem;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.game-tool .tool-wrap > .coupon-banner .cb-copy .qt-ic{opacity:.95;}
.game-tool .tool-wrap > .coupon-banner .cb-copy.copied{color:#4ade80;}

.game-tool .tool-wrap > .coupon-banner .cb-btn{
  margin-left:auto;
  padding:7px 13px;
  border-radius:11px;
  border:none;
  text-decoration:none;
  background:#22c55e;
  color:#022c22;
  font-size:.85rem;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  transition:opacity .15s, transform .12s;
}
.game-tool .tool-wrap > .coupon-banner .cb-btn .qt-ic{width:1.05em;height:1.05em;}
.game-tool .tool-wrap > .coupon-banner .cb-btn:hover{opacity:.9;transform:translateY(-1px);}

/* Mobil */
@media (max-width:640px){
  .game-tool .tool-wrap > .ios-hero{padding:16px 14px;border-radius:20px;}
  .game-tool .tool-wrap > .ios-hero .h-text h1{font-size:1.25rem;}
  .game-tool .tool-wrap > .ios-card{padding:18px 14px;}
  .game-tool .tool-wrap > .coupon-banner{align-items:flex-start;}
  .game-tool .tool-wrap > .coupon-banner .cb-btn{margin-left:0;width:100%;justify-content:center;}
  .game-tool .pi-link{margin-left:0;}
}

/* ==========================================================
   GAME TOOL — INCLUDE "LIGHT ISLAND" TASARIMI
   Koyu zeminde include soluklaşıyorsa: cam efektini kes,
   include'u opak ve ayrı bir ada gibi göster.
   Kullanım:
   <div class="qt-suggest-island"><?php include ... ?></div>
========================================================== */

body.game-tool .qt-suggest-island{
  margin-top:22px;
  position:relative;
  isolation:isolate;

  /* Opak ada */
  background:linear-gradient(180deg,#ffffff,#f6f7fb) !important;
  border:1px solid rgba(226,232,240,.95) !important;
  border-radius:22px;
  padding:16px 16px 18px;

  /* Koyu zeminden ayır */
  box-shadow:
    0 26px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Üstte hafif parıltı: koyu fonda "premium" hissi verir */
body.game-tool .qt-suggest-island::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  pointer-events:none;
  background:
    radial-gradient(800px 220px at 20% 0%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(800px 220px at 80% 0%, rgba(168,85,247,.16), transparent 60%);
  mix-blend-mode:normal;
  z-index:-1;
}

/* Include içinde cam/backdrop/opacity bulaşmasını KES */
body.game-tool .qt-suggest-island,
body.game-tool .qt-suggest-island *{
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  opacity:1 !important;
  filter:none !important;
}

/* Include içindeki metinleri koyu/okunur yap (koyu temadan etkilenmesin) */
body.game-tool .qt-suggest-island{
  color:#0f172a !important;
}
body.game-tool .qt-suggest-island h1,
body.game-tool .qt-suggest-island h2,
body.game-tool .qt-suggest-island h3{
  color:#0b1220 !important;
}
body.game-tool .qt-suggest-island p,
body.game-tool .qt-suggest-island li,
body.game-tool .qt-suggest-island small{
  color:#475569 !important;
}

/* Include içindeki kartlar transparansa düşüyorsa: opaklaştır */
body.game-tool .qt-suggest-island .ios-card,
body.game-tool .qt-suggest-island .qt-card,
body.game-tool .qt-suggest-island .card,
body.game-tool .qt-suggest-island [class*="card"]{
  background:#ffffff !important;
  border:1px solid rgba(226,232,240,.95) !important;
  box-shadow:0 12px 26px rgba(15,23,42,.08) !important;
}

/* Link/buttonlar koyu temadan etkilenmesin */
body.game-tool .qt-suggest-island a{
  color:#2563eb !important;
}
body.game-tool .qt-suggest-island a:hover{
  color:#1d4ed8 !important;
}

/* Mobil */
@media (max-width:640px){
  body.game-tool .qt-suggest-island{
    border-radius:18px;
    padding:14px 12px 16px;
  }
}

/* === SCROLL ARTICLE – Soft Premium (dokunmadım) === */
/* Bu bölüm ayrı bir tema (açık) olduğu için istersen sonra game-tool'a uyumlu
   koyulaştırırız; şimdilik aynen bırakıyorum. */

/* === SCROLL ARTICLE – Soft Premium === */
.scroll-article {
  max-width: 95%;
  margin: 40px auto;
  padding: 36px;
  background: rgba(255, 255, 255, 0.85); /* Soft beyaz cam efekti */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(100, 120, 160, 0.08);
  border: 1px solid rgba(160, 180, 210, 0.12);
  transition: all 0.3s ease;
}

/* Hover’da hafif yükselme */
.scroll-article:hover {
  box-shadow: 0 10px 32px rgba(100, 120, 160, 0.12);
}

/* === İç Scroll Alanı === */
.scroll-box {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 14px;

  /* Metin tipografisi */
  font-size: 1rem; /* ~16px masaüstü */
  line-height: 1.65;
  color: #394060;
}

/* Scrollbar – pastel mavi/lila tonlu */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #aabdf7, #c7b7ff);
  border-radius: 6px;
  transition: background 0.3s ease;
}
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #96abf5, #b8a7ff);
}
.scroll-box::-webkit-scrollbar-track {
  background: rgba(160, 180, 220, 0.08);
}

/* === Başlıklar === */
.scroll-article h2 {
  font-size: 1.5rem; /* ~24px desktop */
  font-weight: 700;
  margin-bottom: 18px;
  color: #2b2f47;
  line-height: 1.35;
}

.scroll-box h3 {
  font-size: 1.2rem; /* ~19px */
  font-weight: 600;
  margin: 18px 0 10px;
  color: #333a5c;
  line-height: 1.4;
}

/* Paragraflar */
.scroll-box p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
  color: #4a4f70;
}

/* Listeler */
.scroll-box ul {
  margin: 12px 0;
  padding-left: 20px;
}
.scroll-box ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #4a4f70;
}

/* === Tablet için === */
@media (max-width: 1024px) {
  .scroll-article {
    padding: 28px;
  }
  .scroll-box {
    max-height: 280px;
    font-size: 0.95rem; /* 15px */
    line-height: 1.6;
  }
  .scroll-article h2 {
    font-size: 1.4rem; /* ~22px */
  }
  .scroll-box h3 {
    font-size: 1.15rem; /* ~18px */
  }
  .scroll-box ul li {
    font-size: 0.95rem;
  }
}

/* === Mobil için === */
@media (max-width: 768px) {
  .scroll-article {
    max-width: 95%;
    padding: 22px;
  }
  .scroll-box {
    max-height: 220px;
    font-size: 0.9rem; /* 14px */
    line-height: 1.55; /* Daha kompakt mobil */
  }
  .scroll-article h2 {
    font-size: 1.3rem; /* ~20-21px */
  }
  .scroll-box h3 {
    font-size: 1.05rem; /* ~17px */
  }
  .scroll-box ul li {
    font-size: 0.9rem;
  }
}
