* { box-sizing: border-box; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto;
background: #020617;
color: #e5e7eb;
}

.container {
max-width: 900px;
margin: 80px auto;
padding: 20px;
}

h1 {
text-align: center;
font-size: 30px;
margin-bottom: 40px;
}

.search-box {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}

.input, .select {
background: #020617;
border: 1px solid #1e293b;
border-radius: 12px;
padding: 14px;
color: white;
outline: none;
min-width: 180px;
}

.input:focus, .select:focus {
border-color: #22c55e;
}

.btn {
padding: 14px 24px;
border-radius: 12px;
border: none;
background: #22c55e;
color: #022c22;
font-weight: bold;
cursor: pointer;
}

.result {
margin-top: 40px;
display: grid;
gap: 12px;
}

.card {
background: #020617;
border: 1px solid #1e293b;
border-radius: 14px;
padding: 16px;
}

.meta {
font-size: 13px;
color: #94a3b8;
}

.tag {
margin-left: 8px;
font-size: 12px;
color: #22c55e;
}

.section-title {
margin-top: 20px;
font-size: 14px;
color: #22c55e;
}

@media (prefers-color-scheme: light) {
  body {
    background: #f8fafc;
    color: #0f172a;
  }

  .input, .select, .card {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
  }

  .btn {
    background: #2563eb;
    color: #ffffff;
  }

  .meta {
    color: #475569;
  }

  .section-title {
    color: #2563eb;
  }
}
