@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #333;
  margin: 0;
  padding: 20px;
}

h2, h3 {
  color: #1f2937;
}

ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 20px 0;
}

li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}

li:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

li img, li video, iframe {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 8px;
}

a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

button, .dz-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

button:hover {
  background: #1d4ed8;
}

.dropzone {
  border: 2px dashed #60a5fa;
  background: #eff6ff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: #1e3a8a;
  font-weight: 500;
  margin-top: 20px;
}