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

  --x-blue:#1d9bf0;
  --x-dark:#0f1113;

  --card-bg:rgba(255,255,255,0.60);
  --card-border:rgba(255,255,255,0.35);
  --shadow:0 6px 26px rgba(0,0,0,0.08);

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

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

/* ============================
   HERO — GLASS CARD
============================ */
.twv-hero-card{
  width:100%;
  padding:34px 28px;
  margin-bottom:30px;
  background:rgba(255,255,255,0.45);
  border:2px solid var(--card-border);
  border-radius:26px;
  backdrop-filter:blur(18px) saturate(180%);
  box-shadow:0 22px 70px rgba(0,0,0,0.10);
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
}

/* glow ring */
.twv-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  padding:2px;
  border-radius:26px;
  background:linear-gradient(135deg, #1d9bf0, #3b82f6);
  -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 ease;
}

/* subtle glow */
.twv-hero-card::before{
  content:"";
  position:absolute;
  top:-40px;
  left:-30px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(29,155,240,0.22), transparent 75%);
  filter:blur(45px);
}

/* hover */
.twv-hero-card:hover{
  transform:scale(1.018);
  box-shadow:0 28px 80px rgba(0,0,0,0.16);
}
.twv-hero-card:hover::after{
  opacity:1;
}

/* hero content */
.twv-hero-icon{
  font-size:42px;
  margin-bottom:12px;
}
.twv-hero-title{
  font-size:26px;
  font-weight:900;
  color:var(--x-blue);
  margin-bottom:12px;
}
.twv-hero-desc{
  font-size:15px;
  color:var(--sub);
  max-width:700px;
  margin:0 auto;
  line-height:1.55;
}


/* ============================
   CONTENT BOXES
============================ */
.twv-box{
  background:var(--card-bg);
  border:1px solid var(--card-border);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:18px 20px;
  margin-bottom:20px;
  box-shadow:var(--shadow);
}
.twv-box h2{
  font-size:16px;
  font-weight:800;
  color:var(--x-blue);
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.twv-box p{
  font-size:14px;
  color:var(--sub);
  line-height:1.45;
}


/* LIST */
.twv-list{
  list-style:none;
  padding:0;
  margin:10px 0;
}
.twv-list li{
  font-size:14px;
  padding:4px 0;
  display:flex;
  gap:8px;
}
.twv-ok{color:var(--green);}
.twv-no{color:var(--red);}


/* NOTE */
.twv-note{
  background:rgba(29,155,240,0.10);
  border-left:3px solid var(--x-blue);
  padding:12px;
  border-radius:12px;
  margin:12px 0;
  font-size:14px;
}


/* CODE */
.twv-code{
  background:#ffffffdd;
  border-radius:14px;
  border:1px solid #e2e8f0;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:10px 0;
}
.twv-code code{
  background:#fff;
  padding:8px;
  border-radius:8px;
  font-family:monospace;
  font-size:13px;
}


/* ============================
   CTA BLOCK
============================ */
.twv-cta{
  margin-top:35px;
  background:rgba(255,255,255,0.55);
  border-radius:24px;
  padding:32px 28px;
  text-align:center;
  backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,0.38);
  box-shadow:0 18px 60px rgba(0,0,0,0.12);
  transition:.3s ease;
}
.twv-cta:hover{
  transform:scale(1.015);
  box-shadow:0 24px 80px rgba(0,0,0,0.18);
}
.twv-cta-title{
  font-size:22px;
  font-weight:800;
  color:var(--x-blue);
  margin-bottom:10px;
}
.twv-cta-desc{
  font-size:15px;
  color:var(--sub);
  margin-bottom:22px;
  line-height:1.55;
}
.twv-cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,#1d9bf0,#3b82f6);
  color:#fff;
  padding:14px 26px;
  border-radius:50px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.20);
  transition:.28s ease;
}
.twv-cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,0.28);
}


/* MOBILE */
@media(max-width:600px){
  .twv-hero-title{font-size:22px;}
  .twv-hero-desc{font-size:14px;}
  .twv-cta-title{font-size:19px;}
  .twv-cta-desc{font-size:14px;}
  .twv-cta-btn{padding:12px 22px;font-size:14px;}
}

/* Mobilde kod bloklarını kır, taşmayı önle */
.twv-code code {
    white-space: normal !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}