/* QUANTAPS • TWITCH REHBER CSS — Purple Glass Premium */

:root{
  --twc:#9146FF;
  --twc-soft:#ede3ff;
  --twc-border:#d5c2ff;

  --text:#1e1b2e;
  --sub:#4b5563;

  --card-bg:rgba(255,255,255,0.55);
  --card-border:rgba(255,255,255,0.40);
  --shadow:0 8px 26px rgba(145,70,255,0.15);

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

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

.twc-hero-card{
  background:var(--card-bg);
  padding:32px 26px;
  border-radius:28px;
  border:2px solid var(--card-border);
  backdrop-filter:blur(14px) saturate(160%);
  text-align:center;
  margin-bottom:32px;
  position:relative;
  box-shadow:0 22px 65px rgba(145,70,255,0.18);
}

.twc-hero-card::before{
  content:"";
  position:absolute;
  top:-20px;
  left:-20px;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(145,70,255,0.32), transparent 70%);
  filter:blur(55px);
}

.twc-hero-icon{
  font-size:48px;
  margin-bottom:16px;
}

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

.twc-hero-desc{
  font-size:16px;
  color:var(--sub);
  line-height:1.6;
}



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

.twc-box h2{
  font-size:17px;
  font-weight:800;
  color:var(--twc);
  margin-bottom:12px;
}

.twc-list{
  list-style:none;
  padding:0;
}
.twc-list li{
  display:flex;
  gap:8px;
  font-size:15px;
  padding:4px 0;
}

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

.twc-note{
  background:var(--twc-soft);
  border-left:3px solid var(--twc);
  padding:12px 14px;
  border-radius:12px;
  margin-top:12px;
  font-size:14.5px;
}

.twc-code{
  background:#fff;
  border:1px solid #e5e7eb;
  padding:12px;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:12px 0;
}
.twc-code code{
  border:1px dashed var(--twc-border);
  padding:8px;
  border-radius:8px;
}


/* CTA */
.twc-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);
  box-shadow:0 20px 65px rgba(145,70,255,0.22);
}

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

.twc-cta-btn{
  background:linear-gradient(135deg,#b383ff,#9146ff);
  color:#fff;
  padding:14px 28px;
  border-radius:38px;
  display:inline-block;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  box-shadow:0 14px 28px rgba(145,70,255,0.25);
  transition:.28s;
}

.twc-cta-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#caa7ff,#9146ff);
}