*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#000;
  color:#fff;
}

/* ================= HEADER ================= */

.topbar{
  width:100%;
  background:#000;
}

.top-inner{
  max-width:1600px;
  margin:auto;
  padding:25px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#ffcc00;
}

.logo span{
  color:#fff;
}

/* RIGHT TOP MENU */
.top-links a{
  color:#9b86ff;
  text-decoration:none;
  margin-left:25px;
  font-size:14px;
}

/* ================= PAGE ================= */

.page{
  max-width:1600px;
  margin:auto;
  padding:20px 80px 80px;
}

/* TITLE CENTER */
.title{
  text-align:center;
  font-size:32px;
  font-weight:600;
  margin:30px 0 45px;
}

/* ================= GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:32px;
}

/* ================= CARD ================= */

.card{
  background:#0b0b0b;
  border-radius:18px;
  padding:18px;
  text-decoration:none;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.thumb{
  width:100%;
  aspect-ratio:1/1;
  border-radius:14px;
  overflow:hidden;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CARD TITLE */
.card h3{
  margin-top:14px;
  font-size:15px;
  color:#ffcc00;
  font-weight:500;
}

/* ================= FOOTER ================= */

.footer{
  text-align:center;
  padding:22px;
  border-top:1px solid #111;
  color:#777;
  font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1400px){
  .grid{ grid-template-columns:repeat(4,1fr); }
}

@media(max-width:1100px){
  .grid{ grid-template-columns:repeat(3,1fr); }
}

@media(max-width:768px){
  .grid{ grid-template-columns:repeat(2,1fr); }
  .top-inner,
  .page{
    padding:20px;
  }
}

@media(max-width:480px){
  .grid{ grid-template-columns:1fr; }
}

/* TITLE + SEARCH WRAP */
.title-wrap{
  text-align:center;
  margin:40px 0 60px;
}

/* TITLE BIG */
.title{
  font-size:42px;        /* 🔥 bigger title */
  font-weight:700;
  margin-bottom:28px;
}

/* SEARCH CENTER */
.search-box{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

/* SEARCH INPUT BIG */
.search-box input{
  width:520px;           /* 🔥 bigger width */
  max-width:90%;
  padding:16px 20px;
  font-size:16px;
  background:#0b0b0b;
  border:1px solid #222;
  border-radius:14px;
  color:#fff;
  outline:none;
}

/* PLACEHOLDER */
.search-box input::placeholder{
  color:#888;
}

/* SEARCH BUTTON BIG */
.search-box button{
  padding:16px 26px;
  font-size:16px;
  font-weight:600;
  background:#ffcc00;
  color:#000;
  border:none;
  border-radius:14px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .title{
    font-size:30px;
  }
  .search-box{
    flex-direction:column;
  }
  .search-box input,
  .search-box button{
    width:100%;
  }
}

