:root{
  --gold:#d4af37;
  --gold-dark:#b8962e;
  --glass-bg:rgba(255,255,255,0.08);
  --glass-border:rgba(255,255,255,0.15);
  --text-light:#eaeaea;
  --text-muted:#bdbdbd;
}

/* BASE */
body{
  font-family:'Segoe UI',sans-serif;
  background:linear-gradient(180deg,#0e0e0e,#1a1a1a);
  margin:0;
  color:var(--text-light);
}

/* BLOG CONTAINER */
.blog{
  max-width:1100px;
  margin:40px auto;
  padding:56px;
  border-radius:26px;
  background:var(--glass-bg);
  backdrop-filter:blur(18px);
  border:1px solid var(--glass-border);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

/* HEADINGS */
h1{
  font-size:clamp(28px,4vw,44px);
  line-height:1.3;
  margin-bottom:24px;
}
h2{
  margin-top:70px;
  font-size:clamp(22px,3vw,30px);
}
h3{
  margin-top:36px;
}

/* TEXT */
p{
  line-height:1.9;
  font-size:16px;
  margin-bottom:22px;
}
ul{ padding-left:24px }
li{
  margin-bottom:12px;
  color:var(--text-muted);
}

/* HIGHLIGHT / NOTE BOX */
.highlight,
.tip,
.area{
  background:rgba(212,175,55,.12);
  border-left:6px solid var(--gold);
  padding:26px;
  margin:55px 0;
  border-radius:18px;
  color:#fff;
}

/* TABLE */
table{
  width:100%;
  border-collapse:collapse;
  margin:45px 0;
  background:rgba(0,0,0,.35);
  border-radius:16px;
  overflow:hidden;
}
th,td{
  padding:16px;
  border-bottom:1px solid rgba(255,255,255,.12);
  text-align:left;
  font-size:15px;
}
th{
  background:rgba(255,255,255,.08);
}

/* LINKS */
a{
  color:var(--gold);
  font-weight:600;
  text-decoration:none;
}
a:hover{ text-decoration:underline }

/* CTA BUTTON */
.cta{
  display:inline-block;
  padding:18px 56px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#000;
  border-radius:999px;
  font-weight:700;
  margin:60px 0 20px;
  transition:.3s;
}
.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px rgba(212,175,55,.4);
}
/* CTA SECTION (BLOG) */
.cta-box{
  background:linear-gradient(135deg,#d4af37,#b8962e);
  border-radius:32px;
  padding:48px;
  margin:80px 0 40px;
  color:#000;
  box-shadow:0 30px 70px rgba(212,175,55,.35);
}

.cta-box h2{
  margin-top:0;
  font-size:clamp(22px,3vw,32px);
}

.cta-text{
  font-size:16px;
  margin:18px 0 30px;
  line-height:1.7;
}

.cta-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.cta-btn{
  background:#000;
  color:#d4af37;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.cta-btn.outline{
  background:transparent;
  color:#000;
  border:2px solid #000;
}

/* MOBILE */
@media(max-width:768px){
  .cta-box{
    padding:28px;
    border-radius:24px;
  }

  .cta-actions{
    flex-direction:column;
  }

  .cta-btn{
    text-align:center;
  }
}


/* MOBILE */
@media(max-width:768px){
  .blog{
    margin:18px 14px;
    padding:26px;
    border-radius:22px;
  }
  p,li{ font-size:15px }
  table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
  .cta{
    width:100%;
    text-align:center;
    padding:16px;
  }
}

/* ================= FIX SOCIAL BAR OVERLAP (MOBILE) ================= */
@media (max-width: 768px) {

  /* Push FIRST heading below social bar */
  .blog > h1:first-child {
    margin-top: 110px;
  }

}


