/* ================= BASE ================= */

.ai-home{
  background:linear-gradient(180deg,#071426,#0b1f3a);
  padding-bottom:70px;
  font-family:system-ui,sans-serif;
  color:#e6f1ff;
}

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

.hero-wrap{
  padding:50px 20px 30px;
  text-align:center;
}

.hero-wrap h1{
  font-size:36px;
  font-weight:900;
  color:#e6f1ff;
}

.trending-post h2{
  color:#19e0ff;
  font-size:22px;
  margin-top:12px;
}

.mini-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:14px;
}

/* ======================================================
   QUICK CATEGORIES
====================================================== */

.quick-categories{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding:20px;
}

.quick-categories a{
  background:linear-gradient(145deg,#050b1a,#0b1430);
  border-radius:18px;
  padding:20px 10px;
  color:#e6f1ff;
  text-align:center;
  font-weight:700;
  border:1px solid rgba(25,224,255,.25);
  transition:.3s;
}

.quick-categories a span{
  display:block;
  font-size:24px;
  margin-bottom:6px;
}

.quick-categories a:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(25,224,255,.35);
}

/* ================= LATEST DROPS ================= */

.home-latest-drops{
  padding:28px 16px 10px;
}

.home-section-head h2{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
  color:#e6f1ff;
}

.slider-arrows{
  display:none;
  gap:10px;
}

.slider-arrows button{
  background:#13233f;
  border:none;
  color:#fff;
  padding:8px 14px;
  border-radius:50%;
  cursor:pointer;
}

.slider-arrows button:hover{
  background:#19e0ff;
  color:#000;
}

.latest-drops-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-behavior:smooth;
}

.latest-drop-card{
  flex:0 0 85%;
  max-width:420px;
  background:#0b1324;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.45);
  transition:.3s;
}

.latest-drop-card:hover{
  transform:translateY(-5px);
}

.latest-drop-thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.latest-drop-body{
  padding:18px;
}

.latest-drop-cat{
  font-size:13px;
  font-weight:800;
  color:#19e0ff;
}

.latest-drop-title{
  font-size:18px;
  margin:8px 0;
}

.latest-drop-excerpt{
  font-size:14px;
  color:#b9d4e8;
}

.latest-drop-meta{
  font-size:12px;
  color:#8fb6d6;
  margin-top:6px;
}


/* Desktop Optimisation */
@media(min-width:1200px){
  .latest-drop-card{flex:0 0 32%;}
  .slider-arrows{display:flex;}
}

/* ======================================================
   CATEGORY GRID
====================================================== */

.home-cat-section{
  padding:28px 16px 10px;
}

.home-cat-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.home-cat-head h2{
  font-size:28px;
  font-weight:900;
  color:#e6f1ff;
}

.see-all-btn{
  font-size:14px;
  font-weight:800;
  color:#19e0ff;
  background:rgba(25,224,255,.12);
  padding:6px 12px;
  border-radius:999px;
}

.home-cat-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.home-cat-card{
  background:#0b1324;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.45);
}

.home-cat-thumb img{
  width:100%;
  display:block;
}

.home-cat-body{
  padding:14px 15px 18px;
}

.home-cat-label{
  font-size:13px;
  font-weight:800;
  color:#19e0ff;
}

.home-cat-title{
  font-size:20px;
  font-weight:800;
  line-height:1.35;
  margin-top:6px;
  margin-bottom:8px;
  color:#e6f1ff;
}

.home-cat-body p{
  font-size:14px;
  color:#b9d4e8;
  line-height:1.6;
}

.home-cat-meta{
  font-size:12px;
  color:#8fb6d6;
}

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

.home-cta{
  margin:40px 18px 0;
  padding:40px 20px;
  border-radius:28px;
  background:linear-gradient(145deg,#050b1a,#0b1430);
  text-align:center;
}

.home-cta h2{
  font-size:30px;
  color:#e6f1ff;
}

.home-cta a{
  display:inline-block;
  margin-top:16px;
  padding:14px 26px;
  border-radius:30px;
  background:linear-gradient(90deg,#19e0ff,#00bcd4);
  color:#041018;
  font-weight:800;
}

/* ===============================
   660px – Large Mobile / Small Tablet
================================= */
@media (min-width:660px){

  .latest-drop-card{
    flex: 0 0 60%;
  }

  .home-cat-grid{
    grid-template-columns: repeat(2, 1fr);
  }


}

/* ===============================
   768px – Tablet Proper
================================= */
@media (min-width:768px){

  .latest-drop-card{
    flex: 0 0 55%;
  }

  .home-cat-grid{
    grid-template-columns: repeat(2, 1fr);
  }


}

/* ===============================
   1024px – Small Laptop
================================= */
@media (min-width:1024px){

  .latest-drop-card{
    flex: 0 0 45%;
  }

  .home-cat-grid{
    grid-template-columns: repeat(3, 1fr);
  }


}

/* ===============================
   1280px – Desktop Large
================================= */
@media (min-width:1280px){

  .latest-drop-card{
    flex: 0 0 38%;
  }

  .home-cat-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-categories{
    grid-template-columns: repeat(6, 1fr);
  }

}
