/* ============================================================
   IGBOT — Instagram Bot Beğeni Rehberi
   Pembe-Mor Aurora • Soft Glass • Mobile Friendly
   ============================================================ */

.igbot-wrapper{
  max-width:880px;
  margin:0 auto;
  padding:32px 20px 80px;
  font-family:'Inter',system-ui,sans-serif;
  color:#1a1a1a;
}

/* HERO */
.igbot-hero-card{
  background:linear-gradient(135deg,
      rgba(255,60,120,.90),
      rgba(180,50,255,.90),
      rgba(255,130,200,.92)
  );
  border:1px solid rgba(255,180,220,.35);
  border-radius:28px;
  padding:40px 28px;
  text-align:center;
  color:white;
  margin-bottom:40px;
  box-shadow:0 20px 60px rgba(0,0,0,.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.igbot-hero-icon{
  font-size:46px;
  margin-bottom:12px;
}

.igbot-hero-title{
  font-size:clamp(24px,2.4vw,34px);
  font-weight:900;
  margin-bottom:14px;
}

.igbot-hero-desc{
  font-size:16px;
  line-height:1.7;
  opacity:.95;
  max-width:760px;
  margin:0 auto;
}

/* BOX */
.igbot-box{
  background:#fffffffb;
  border-radius:24px;
  padding:24px 22px;
  margin-bottom:26px;
  border:1px solid rgba(200,90,200,.22);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}

.igbot-box h2{
  font-size:19px;
  font-weight:800;
  color:#d426f9;
  margin-bottom:12px;
}

.igbot-box p{
  font-size:15.5px;
  line-height:1.65;
  color:#333;
}

/* LIST */
.igbot-list{
  list-style:none;
  margin:14px 0;
  padding:0;
}
.igbot-list li{
  margin-bottom:8px;
  font-size:15px;
}

/* CODE */
.igbot-code{
  background:#fff1fb;
  padding:12px;
  border-radius:14px;
  border:1px solid #ffd5f6;
}
.igbot-code code{
  display:block;
  padding:10px;
  border-radius:10px;
  font-size:14px;
  background:white;
  word-break:break-word;
}

/* NOTE */
.igbot-note{
  background:rgba(210,60,255,.12);
  border-left:4px solid #d426f9;
  padding:12px;
  border-radius:14px;
  margin:14px 0;
  font-size:14px;
  color:#333;
}

/* CTA */
.igbot-cta{
  background:linear-gradient(135deg,
    rgba(255,70,150,.93),
    rgba(180,70,255,.93),
    rgba(255,130,180,.93)
  );
  padding:34px 26px;
  border-radius:28px;
  text-align:center;
  color:white;
  margin-top:40px;
  box-shadow:0 14px 32px rgba(0,0,0,.1);
  backdrop-filter:blur(8px);
}

.igbot-cta-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:12px;
}

.igbot-cta-desc{
  font-size:15.5px;
  max-width:700px;
  margin:0 auto 22px;
  line-height:1.6;
}

.igbot-cta-btn{
  display:inline-block;
  background:white;
  color:#b100ff;
  padding:14px 28px;
  border-radius:16px;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(255,255,255,.5);
  transition:.25s;
}

.igbot-cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(255,255,255,.6);
}

/* MOBILE */
@media(max-width:600px){
  .igbot-wrapper{padding:24px 14px 70px;}
  .igbot-code code{word-break:break-all;}
}