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

  /* Telegram renkleri */
  --tg:#229ED9;
  --tg-soft:#e8f6ff;

  /* Glass */
  --card-bg:rgba(255,255,255,0.60);
  --card-border:rgba(255,255,255,0.38);
  --shadow:0 6px 28px rgba(0,0,0,0.08);

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

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

/* ==================================
      HERO
================================== */

.tgab-hero-card{
  width:100%;
  padding:34px 28px;

  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(18px) saturate(180%);
  border:2px solid rgba(255,255,255,0.35);
  border-radius:26px;

  box-shadow:0 20px 60px rgba(34,158,217,0.15);
  text-align:center;
  margin-bottom:30px;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
}

/* glow */
.tgab-hero-card::before{
  content:"";
  position:absolute;
  top:-40px;
  left:-25px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(34,158,217,0.25), transparent 70%);
  filter:blur(50px);
}

/* border hover */
.tgab-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:26px;
  padding:2px;
  background:linear-gradient(135deg, #36b2ff, #229ED9);
  -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;
}

.tgab-hero-card:hover{ transform:scale(1.018); }
.tgab-hero-card:hover::after{ opacity:1; }

.tgab-hero-icon{
  font-size:42px;
  opacity:.9;
  margin-bottom:12px;
}

.tgab-hero-title{
  font-size:26px;
  font-weight:900;
  color:var(--tg);
  margin-bottom:12px;
  line-height:1.25;
}

.tgab-hero-desc{
  font-size:15px;
  color:var(--sub);
  line-height:1.55;
  max-width:700px;
  margin:0 auto;
}


/* ==================================
      CONTENT BOXES
================================== */

.tgab-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);
}

.tgab-box h2{
  font-size:16px;
  font-weight:800;
  margin-bottom:12px;
  color:var(--tg);
  display:flex;
  align-items:center;
  gap:8px;
}

.tgab-box p{
  font-size:14px;
  line-height:1.45;
  color:var(--sub);
}

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

/* NOTE */
.tgab-note{
  background:var(--tg-soft);
  border-left:3px solid var(--tg);
  padding:12px;
  border-radius:12px;
  margin:14px 0;
  font-size:14px;
}

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


/* ==================================
      CTA
================================== */

.tgab-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(34,158,217,0.12);
  transition:.3s ease;
}
.tgab-cta:hover{
  transform:scale(1.015);
  box-shadow:0 24px 80px rgba(34,158,217,0.20);
}

.tgab-cta-title{
  font-size:22px;
  font-weight:800;
  color:var(--tg);
  margin-bottom:10px;
}
.tgab-cta-desc{
  font-size:15px;
  color:var(--sub);
  margin-bottom:22px;
  line-height:1.55;
}
.tgab-cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,#36b2ff,#229ED9);
  color:#fff;
  padding:14px 26px;
  border-radius:50px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(34,158,217,0.20);
  transition:.28s;
}
.tgab-cta-btn:hover{
  background:linear-gradient(135deg,#1ca8ff,#178cc7);
  box-shadow:0 14px 32px rgba(34,158,217,0.28);
  transform:translateY(-2px);
}


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