@font-face {
  font-family: 'Luckiest Guy';
  src: url('/fonts/LuckiestGuy-Regular.woff2') format('woff2'),
   url('/fonts/LuckiestGuy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* ensures fast text rendering */
}
.hero {
  background: linear-gradient(160deg, #E84A3A, #DA291C, #B81F17);
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.hero .wrap {
  max-width: 700px;
  margin: 0 auto;
}
.logo {
  color: #fff;
  font-size: 70px;
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: .5px;
  margin-bottom: 16px;
  text-shadow: 4px  5px 0 rgba(0,0,0,0.5);
}
.logo a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 600px) {
  .logo {
    font-size: 55px;
  }
}
.search{
  width:100%;max-width:700px;background:#fff;border-radius:16px;padding:10px;box-shadow:0 10px 30px rgba(0,0,0,.15)
}
.search form{display:flex;gap:8px}
.search input[type="text"]{flex:1;border:none;font-size:18px;padding:12px 14px;outline:none}
.search button{border:none;background:#111;color:#fff;padding:12px 16px;border-radius:12px;font-weight:600;cursor:pointer}
  .theme-chips {
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  max-width: none; /* remove the constraint */
  width: 90%;     /* optional, makes it stretch fully */
}

.theme-chips .chip {
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  backdrop-filter: saturate(120%) blur(2px);
  transition: background 0.2s;
}

.theme-chips .chip:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .theme-chips {
    display: none;
  }  
}

.topmenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px auto -12px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
  max-width: 650px;
}

.topmenu a {
  color: #fff;
  text-decoration: none;
  padding: 4px 8px;
}

.topmenu a:hover {
  text-decoration: underline;
}

.topmenu .sep {
  display: none;
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {

}
