/* ============================================================
   IGY — Instagram Yabancı Beğeni Rehberi
   Pastel Blue • Pink • Soft Glass • Global Theme
   ============================================================ */

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

/* HERO */
.igy-hero-card{
  background:linear-gradient(135deg,
      rgba(115,170,255,.92),
      rgba(160,190,255,.92),
      rgba(255,150,200,.92)
  );
  border:1px solid rgba(180,200,255,.45);
  border-radius:28px;
  padding:40px 28px;
  text-align:center;
  color:white;
  margin-bottom:40px;
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

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

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

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


/* BOX */
.igy-box{
  background:#fffffffa;
  border-radius:24px;
  padding:24px 22px;
  margin-bottom:26px;
  border:1px solid rgba(150,180,255,.25);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}

.igy-box h2{
  font-size:19px;
  font-weight:800;
  color:#5b7dff;
  margin-bottom:12px;
}

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

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

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

/* NOTE */
.igy-note{
  background:rgba(120,160,255,.12);
  border-left:4px solid #5b7dff;
  padding:12px;
  border-radius:14px;
  margin:14px 0;
  font-size:14px;
  color:#333;
}

/* CTA */
.igy-cta{
  background:linear-gradient(135deg,
    rgba(120,160,255,.93),
    rgba(150,180,255,.93),
    rgba(255,160,200,.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);
}

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

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

.igy-cta-btn{
  display:inline-block;
  background:white;
  color:#4a63ff;
  padding:14px 28px;
  border-radius:16px;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  transition:.25s;
}

.igy-cta-btn:hover{
  transform:translateY(-2px);
}