:root{
  --pink:#ff0050;
  --blue:#00f2ea;
  --glass:rgba(255,255,255,0.55);
  --border:rgba(255,255,255,0.34);
  --shadow:0 10px 30px rgba(0,0,0,0.15);
  --text:#0f172a;
  --sub:#475569;
  --ok:#16a34a;
}

.tks-wrapper{
  max-width:860px;
  margin:0 auto;
  padding:28px 16px 70px;
  font-family:'Inter',system-ui,sans-serif;
}

.tks-hero-card{
  background:var(--glass);
  border:2px solid var(--border);
  border-radius:30px;
  padding:40px 30px;
  text-align:center;
  margin-bottom:32px;
  backdrop-filter:blur(18px) saturate(180%);
  box-shadow:var(--shadow);
}

.tks-hero-icon{
  font-size:50px;
  margin-bottom:12px;
}
.tks-hero-title{
  font-size:26px;
  font-weight:900;
  color:var(--pink);
  margin-bottom:12px;
}
.tks-hero-desc{
  color:var(--sub);
  line-height:1.65;
  max-width:720px;
  margin:0 auto;
}

.tks-box{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  margin-bottom:22px;
  box-shadow:var(--shadow);
}
.tks-box h2{
  font-size:18px;
  font-weight:800;
  color:var(--blue);
  margin-bottom:12px;
}

.tks-list{
  list-style:none;
  padding:0;
}
.tks-list li{
  display:flex;
  gap:8px;
  padding:4px 0;
  font-size:14px;
}
.ok{color:var(--ok);}

.tks-note{
  background:rgba(0,242,234,0.14);
  border-left:3px solid var(--blue);
  padding:12px;
  border-radius:14px;
  margin-top:12px;
}

.tks-code{
  background:#ffffffcc;
  border:1px solid #e2e8f0;
  padding:12px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13px;
}
.tks-code code{
  background:#fff;
  padding:8px 12px;
  border-radius:8px;
  font-family:monospace;
}

.tks-cta{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:28px;
  padding:32px;
  text-align:center;
  box-shadow:var(--shadow);
}
.tks-cta-title{
  font-size:22px;
  font-weight:900;
  color:var(--pink);
}
.tks-cta-desc{
  color:var(--sub);
  margin-bottom:20px;
}
.tks-cta-btn{
  background:linear-gradient(135deg,var(--pink),var(--blue));
  color:#fff;
  padding:14px 26px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:.25s;
}
.tks-cta-btn:hover{
  transform:translateY(-2px);
}