/* ============================================================
   QUANTAPS • TWITTER SPACE REHBER CSS (PREMIUM v3 — Blue Focus)
   Daha keskin mavi, daha yüksek okunabilirlik, mobilde kompakt.
============================================================ */

:root{
  --tw:#1d9bf0;
  --tw-dark:#0f1419;
  --tw-light:#eff3f4;
  --tw-soft:#e8f5ff;
  --tw-border:#d7e7ff;

  --text:#0f172a;
  --sub:#475569;

  --card-bg:rgba(255,255,255,0.55);
  --card-border:rgba(255,255,255,0.38);
  --shadow:0 8px 26px rgba(29,155,240,0.10);

  --green:#16a34a;
  --red:#dc2626;
}

/* WRAPPER */
.tw-wrapper{
  max-width:860px;
  margin:0 auto;
  padding:22px 16px 80px;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--text);
}


/* ============================================================
   HERO — Daha mavi + daha güçlü kontrast + daha dolgun
============================================================ */

.tw-hero-card{
  width:100%;
  padding:32px 26px;
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(14px) saturate(160%);
  border:2px solid rgba(255,255,255,0.55);
  border-radius:28px;

  box-shadow:0 22px 65px rgba(29,155,240,0.14);

  text-align:center;
  margin:0 auto 32px;
  position:relative;
  overflow:hidden;
  transition:all .35s cubic-bezier(.22,.61,.36,1);
}

/* Lens glow */
.tw-hero-card::before{
  content:"";
  position:absolute;
  top:-30px;
  left:-20px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(29,155,240,0.35), transparent 70%);
  filter:blur(55px);
}

/* Premium border glow */
.tw-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  padding:2px;
  background:linear-gradient(135deg, #60a5fa, #1d9bf0);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:.35s;
}

.tw-hero-card:hover{
  transform:scale(1.018);
  box-shadow:0 28px 80px rgba(29,155,240,0.18);
}
.tw-hero-card:hover::after{
  opacity:1;
}

.tw-hero-icon{
  font-size:48px;
  margin-bottom:16px;
  opacity:.95;
}

.tw-hero-title{
  font-size:28px;
  font-weight:900;
  color:var(--tw);
  margin-bottom:14px;
  line-height:1.3;
}

.tw-hero-desc{
  font-size:16px;
  color:var(--sub);
  line-height:1.6;
  max-width:720px;
  margin:0 auto;
}


/* ============================================================
   BOXES — Daha kompakt + daha Twitter mavisi
============================================================ */

.tw-box{
  background:var(--card-bg);
  border:1px solid var(--tw-border);
  border-radius:20px;
  padding:18px 22px;
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow);
  margin-bottom:24px;
}

.tw-box h2{
  font-size:17px;
  font-weight:800;
  margin-bottom:12px;
  color:var(--tw);
  display:flex;
  align-items:center;
  gap:8px;
}

.tw-box p{
  font-size:15px;
  line-height:1.55;
  color:var(--sub);
}


/* LIST */
.tw-list{
  list-style:none;
  padding:0;
  margin:10px 0;
}
.tw-list li{
  font-size:15px;
  padding:5px 0;
  display:flex;
  gap:8px;
}

.tw-ok{color:var(--green);}
.tw-no{color:var(--red);}


/* NOTE */
.tw-note{
  background:var(--tw-soft);
  border-left:3px solid var(--tw);
  padding:12px 14px;
  border-radius:12px;
  margin:14px 0;
  font-size:14.5px;
  line-height:1.55;
}


/* CODE */
.tw-code{
  background:#fff;
  border:1px solid #e3e9ef;
  border-radius:14px;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:12px 0;
}
.tw-code code{
  background:#fff;
  padding:8px;
  font-size:14px;
  border-radius:8px;
  color:var(--tw-dark);
  border:1px dashed #d7e7ff;
}


/* ============================================================
   CTA — Daha güçlü Twitter butonu
============================================================ */

.tw-cta{
  margin-top:40px;
  background:rgba(255,255,255,0.60);
  border-radius:26px;
  padding:32px 28px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.45);
  backdrop-filter:blur(14px);
  box-shadow:0 20px 65px rgba(29,155,240,0.12);
  transition:.35s;
}

.tw-cta:hover{
  transform:scale(1.015);
  box-shadow:0 26px 85px rgba(29,155,240,0.22);
}

.tw-cta-title{
  font-size:22px;
  font-weight:800;
  color:var(--tw);
  margin-bottom:10px;
}

.tw-cta-desc{
  font-size:15px;
  color:var(--sub);
  margin-bottom:24px;
  line-height:1.6;
}

.tw-cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,#60a5fa,#1d9bf0);
  color:#fff;
  padding:14px 28px;
  border-radius:38px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(29,155,240,0.25);
  transition:.28s;
}

.tw-cta-btn:hover{
  background:linear-gradient(135deg,#3b82f6,#1d9bf0);
  transform:translateY(-2px);
}


/* ============================================================
   MOBILE OPTIMIZATION (DAHA KOMPRES)
============================================================ */

@media(max-width:600px){
  .tw-hero-card{ padding:26px 18px; }
  .tw-hero-title{ font-size:22px; }
  .tw-hero-desc{ font-size:14px; }

  .tw-box{ padding:16px 16px; }
  .tw-box h2{ font-size:15.5px; }

  .tw-list li{ font-size:14px; }

  .tw-note{ font-size:14px; }

  .tw-cta{
    padding:26px 18px;
    border-radius:22px;
  }
  .tw-cta-title{ font-size:19px; }
  .tw-cta-desc{ font-size:14px; }
  .tw-cta-btn{
    padding:12px 22px;
    font-size:14px;
  }
}