/* ============================================================
   THT — Twitter Hashtag Tıklaması Rehberi • Soft Glass Stil
   ============================================================ */

.tht-wrapper {
  max-width:900px;
  margin:0 auto;
  padding:26px 18px 80px;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:#0f172a;
}

/* HERO */
.tht-hero-card {
  background: linear-gradient(135deg, rgba(240,248,255,0.94), rgba(245,252,255,0.97));
  border-radius:28px;
  padding:34px 26px;
  text-align:center;
  margin-bottom:38px;
  border:1px solid rgba(59,130,246,0.30);
  box-shadow:0 18px 36px rgba(15,23,42,0.10);
  position:relative;
  overflow:hidden;
}

.tht-hero-card::before {
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 0 0, rgba(29,161,242,0.35), transparent 60%);
  opacity:0.50;
  pointer-events:none;
}

.tht-hero-icon {
  font-size:44px;
  margin-bottom:10px;
}

.tht-hero-title {
  font-size:clamp(22px,2.1vw,32px);
  font-weight:900;
  color:#0a1120;
  margin-bottom:12px;
}

.tht-hero-desc {
  font-size:15.5px;
  line-height:1.68;
  color:#374151;
  max-width:720px;
  margin:0 auto;
}

/* BOX */
.tht-box {
  background:rgba(255,255,255,0.98);
  border-radius:24px;
  padding:22px 20px;
  margin-bottom:22px;
  border:1px solid rgba(148,163,184,0.35);
  box-shadow:0 12px 28px rgba(15,23,42,0.08);
}

.tht-box h2 {
  font-size:17.5px;
  font-weight:800;
  color:#1d4ed8;
  margin-bottom:10px;
}

.tht-box p {
  font-size:15px;
  color:#374151;
  line-height:1.6;
}

.tht-list {
  list-style:none;
  padding:0;
  margin:12px 0 4px;
}

.tht-list li {
  display:flex;
  gap:8px;
  align-items:flex-start;
  margin-bottom:8px;
  font-size:14.8px;
  color:#1f2937;
}

.tht-list span {
  color:#1d4ed8;
  font-weight:700;
  flex-shrink:0;
}

/* NOTE / CODE formatting if gerekirse */
.tht-note {
  background:rgba(229,241,255,0.9);
  border-radius:16px;
  padding:12px 14px;
  margin-top:12px;
  font-size:14px;
  color:#0e1726;
  border:1px solid rgba(59,130,246,0.30);
}

.tht-note code {
  display:block;
  background:#fff;
  border-radius:10px;
  padding:6px 8px;
  margin-top:6px;
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:13px;
  word-break: break-all;
}

/* CTA */
.tht-cta {
  margin-top:32px;
  background: linear-gradient(135deg, rgba(240,248,255,0.94), rgba(225,236,255,0.98));
  border-radius:28px;
  padding:32px 24px;
  text-align:center;
  border:1px solid rgba(37,99,235,0.36);
  box-shadow:0 14px 32px rgba(30,64,175,0.18);
}

.tht-cta-title {
  font-size:20px;
  font-weight:900;
  color:#0a1120;
  margin-bottom:10px;
}

.tht-cta-desc {
  font-size:15px;
  line-height:1.62;
  color:#374151;
  margin-bottom:18px;
}

.tht-cta-btn {
  display:inline-block;
  padding:12px 24px;
  border-radius:999px;
  background: linear-gradient(135deg,#1d9bf0,#1d4ed8);
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 26px rgba(29,161,242,0.30);
  transition:0.22s ease;
}

.tht-cta-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(30,64,175,0.40);
}

/* Responsive link/code wrapping */
@media(max-width:600px){
  .tht-wrapper { padding:22px 14px 70px; }
  .tht-box { padding:18px 16px; }
  a, code { word-break: break-all; }
}