.topbar{
  background:#0b1320;
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* 🔥 NEW WRAPPER SYSTEM */
.topbar-inner{
  max-width:420px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 12px;
}

.post{
  padding:8px 14px;
  border-radius:10px;
  font-size:14px;

  background:#ff4d6d;
  color:white;

  flex-shrink:0; /* 🔥 prevents squishing */
  box-shadow:0 4px 12px rgba(255,77,109,0.3);
}
.refresh{
color:white;
padding:8px 14px;
margin-right:10px;
cursor:pointer;
background: #1c2541;
border: 1px solid rgba(255,255,255,0.1);
}

.top-buttons{
display:flex;
gap:8px;
flex-shrink:0; /* 🔥 keeps buttons in line */
}

.logo{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  color:white;              /* 🔥 force white */
  text-decoration:none;     /* remove underline */
}

.logo span{
  color:white;              /* extra safety */
}

.logo-img{
  width:32px;
  height:32px;
}

@media (max-width:768px){

  .logo{
    font-size:16px;
  }

  .logo-img{
    width:32px;
    height:32px;
    box-shadow: 0 0 8px rgba(255,77,109,0.4);
  }
}

body{
  background: #020617; /* darker */
  font-family: Arial;
  color:white;
  justify-content:center;
}

/* MAIN CARD */
.ad-wrapper{
  max-width:420px;
  margin:20px auto;

  background: #0f172a; /* slightly lighter */
  border-radius:16px;

  padding:14px;

  border:1px solid rgba(255,255,255,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.whatsapp{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  background: linear-gradient(45deg,#25d366,#128c7e);
  color:white;

  border:none;
  border-radius:10px;
  padding:12px;
  font-weight:600;
  cursor:pointer;
}

/* ICON FIX */
.wa-icon{
  width:18px;
  height:18px;
  object-fit:contain;
}

/* IMAGE */
.ad-image{
  width:100%;
  border-radius:12px;
  object-fit:cover;
}
.contact-buttons button{
  flex:1;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:14px;
}

/* TITLE */
.ad-title{
  font-size:20px;
  margin-top:10px;
  font-weight:600;
}

/* PRICE */
.price{
  font-size:22px;
  font-weight:bold;
  color:#ff3b3b;
  margin-top:5px;
}

/* BUTTONS */
.contact-buttons{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.contact-buttons button{
  flex:1;
  padding:12px;
  border:none;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

.call{
  background: linear-gradient(45deg,#22c55e,#16a34a);
  color:white;
}

.whatsapp{
  background: linear-gradient(45deg,#25d366,#128c7e);
  color:white;
}

/* META */
.meta{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  color:#94a3b8;
}

/* DESCRIPTION */
.description-box{
  max-width:420px;
  margin:15px auto;

  background:#020617; /* darker than ad */
  border-radius:14px;

  padding:14px;

  border:1px solid rgba(255,255,255,0.05);
}


.report-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
}

.report-box{
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  color: white;
}
.report-text{
  font-size:13px;
  color:#cbd5f5;
  margin-bottom:10px;
}

.report-confirm{
  width:100%;
  background:#ff3b3b;
  padding:10px;
  border:none;
  border-radius:8px;
  color:white;
  margin-top:10px;
}

.report-cancel{
  width:100%;
  background:#334155;
  padding:10px;
  border:none;
  border-radius:8px;
  color:white;
  margin-top:5px;
}

.report-container{
  max-width:500px;
  margin:20px auto;
}

.report-btn{
  width:100%;
  margin-top:12px;
  padding:12x;
  border:none;
  border-radius:10px;

  background: linear-gradient(45deg,#ff3b3b,#ff0000);
  color:white;
  font-weight:bold;
  font-size:14px;

  cursor:pointer;
  transition:0.2s;

  box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.report-btn:hover{
  transform:scale(1.02);
}

.bottom-post{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* 🔥 center properly */

  width: 100%;
  max-width: 420px;  /* 🔥 SAME as card */

  padding: 10px;

  background: rgba(2,6,23,0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
}
.bottom-post button{
  width:100%;
}

/* BUTTON */
.post{
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg,#ff3b3b,#ff0066);
  box-shadow: 0 10px 25px rgba(255,0,80,0.4);
  cursor: pointer;
  transition: 0.2s;
}

.post:hover{
  transform: scale(1.02);
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.85);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* BOX */
.popup-box{
  max-width:420px;
  margin:15px auto;

  padding:12px;

  background: rgba(255, 193, 7, 0.05); /* ðŸ”¥ yellow tint */
  border:1px solid rgba(255, 193, 7, 0.2);

  border-radius:12px;

  font-size:11.5px;
  text-align:center;

  color:rgba(255,255,255,0.75);
}

/* ICON */
.popup-icon{
  font-size:24px;
  margin-bottom:6px;
}

/* TITLE */
.popup-box h3{
  font-size:12px;
  margin-bottom:8px;
  color:#facc15;
}

/* TEXT */
.popup-text p{
  margin:6px 0;
}

/* DIVIDER */
.popup-text hr{
  border:none;
  border-top:1px solid rgba(255,255,255,0.1);
}

.description-box::before{
  content:"Description";
  display:block;
  font-size:12px;
  color:#94a3b8;
  margin-bottom:6px;
}


/* ===== PREMIUM FOOTER ===== */

.footer {
  background: linear-gradient(180deg, #050914, #0a0f1c);
  color: #b8c1ec;
  text-align: center;
  padding: 40px 20px 25px;
  border-top: 1px solid rgba(255,255,255,0.06);

  /* premium glass feel */
  backdrop-filter: blur(12px);
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
}

/* ===== BRAND ===== */

.footer-brand h2 {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: #8892b0;
  margin-bottom: 25px;
}

/* ===== LINKS ===== */

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #9aa4c7;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding: 4px 2px;
  transition: all 0.3s ease;
}

/* glowing underline effect */
.footer-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;

  background: linear-gradient(90deg, #ff4d6d, #b43c7b);
  border-radius: 10px;

  transition: width 0.35s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===== SOCIAL ===== */

.footer-social {
  margin: 20px 0;
}

.footer-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  margin: 0 6px;

  font-size: 16px;
  border-radius: 50%;

  background: rgba(255,255,255,0.05);
  color: #aab3d6;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* hover glow effect */
.footer-social span:hover {
  background: linear-gradient(135deg, #ff4d6d, #b43c7b);
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.4);
}

/* ===== BOTTOM ===== */

.footer-bottom {
  margin-top: 25px;
  font-size: 13px;
  color: #6c7593;
}

.footer-bottom strong {
  color: #ff4d6d;
  font-weight: 600;
}

/* subtle divider line */
.footer-bottom::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4d6d, transparent);
  margin: 0 auto 15px;
  opacity: 0.6;
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

  .footer {
    padding: 35px 15px;
  }


  .footer-social span {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

}

.seo-container{
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.seo-links a:hover{
  color: #ff4d6d;
}

.seo-footer{
  background: #0b1320;
  padding: 10px 8px; /* ðŸ”¥ reduced from 15+ */
  border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-footer h4{
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 6px; /* ðŸ”¥ smaller */
}

.seo-links{
  gap: 6px 10px; /* ðŸ”¥ tighter spacing */
}

.seo-links a{
  font-size: 11px; /* ðŸ”¥ smaller text */
}