* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b1220;
  color: #eef2ff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* HEADER */
.header {
  background: #070b14;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav a {
  margin-left: 1rem;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.search {
  margin-top: 1rem;
  display: flex;
}

.search input {
  flex: 1;
  padding: 0.75rem;
  border-radius: 8px 0 0 8px;
  border: none;
}

.search button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0 8px 8px 0;
  background: #6aa3ff;
  font-weight: 600;
  cursor: pointer;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

/* SECTIONS */
.section {
  padding: 3rem 0;
}

.section.dark {
  background: rgba(255,255,255,0.03);
}

/* CHIPS */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}

/* CARDS */
.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

/* FOOTER */
.footer {
  padding: 2rem 0;
  text-align: center;
  opacity: 0.7;
}
