:root{
  --text:#0f172a;
  --sub:#475569;
  --vote-purple:#8b5cf6;
  --glass-bg:rgba(255,255,255,0.55);
  --glass-border:rgba(255,255,255,0.28);
  --shadow:0 12px 46px rgba(0,0,0,0.12);
  --ok:#16a34a;
}

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

/* HERO */
.tgvote-hero-card{
  padding:36px 28px;
  border-radius:26px;
  background:var(--glass-bg);
  border:2px solid var(--glass-border);
  backdrop-filter:blur(18px) saturate(180%);
  box-shadow:var(--shadow);
  text-align:center;
  margin-bottom:30px;
  position:relative;
}
.tgvote-hero-card::before{
  content:"";
  position:absolute;
  top:-40px; left:-40px;
  width:240px; height:240px;
  background:radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%);
  filter:blur(50px);
}
.tgvote-hero-icon{
  font-size:48px;
  margin-bottom:10px;
}
.tgvote-hero-title{
  font-size:26px;
  font-weight:900;
  color:var(--vote-purple);
  margin-bottom:12px;
}
.tgvote-hero-desc{
  font-size:15px;
  color:var(--sub);
  max-width:700px;
  margin:0 auto;
  line-height:1.55;
}

/* BOX */
.tgvote-box{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:20px;
  padding:20px;
  margin-bottom:22px;
  box-shadow:var(--shadow);
}
.tgvote-box h2{
  font-size:17px;
  font-weight:800;
  color:var(--vote-purple);
  margin-bottom:14px;
}

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

.tgvote-note{
  background:rgba(139,92,246,0.15);
  border-left:3px solid var(--vote-purple);
  padding:12px;
  border-radius:12px;
  margin:12px 0;
  font-size:14px;
}

.tgvote-code{
  background:#fff;
  border:1px solid #e2e8f0;
  padding:14px;
  border-radius:14px;
  font-family:monospace;
  font-size:14px;
}

/* CTA */
.tgvote-cta{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  border-radius:24px;
  padding:30px 26px;
  text-align:center;
  margin-top:26px;
  box-shadow:var(--shadow);
}
.tgvote-cta-title{
  font-size:22px;
  font-weight:800;
  color:var(--vote-purple);
  margin-bottom:12px;
}
.tgvote-cta-btn{
  display:inline-block;
  padding:14px 26px;
  background:linear-gradient(135deg,#8b5cf6,#6d28d9);
  border-radius:50px;
  color:#fff;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:.25s ease;
}
.tgvote-cta-btn:hover{
  transform:translateY(-2px);
}