/* Simple styles for the prebuilt homepage */
:root {
  --bg1: #fff7eb;
  --bg2: #ffe6b3;
  --accent: #ff8c00;
  --text: #1f2937;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(31,41,55,0.08);
  text-align: left;
}

.header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,#ffd54a,#ff8c00);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 20px;
}

h1 { margin: 0; font-size: 1.8rem; }
.lead { color: #4b5563; margin-top: 0.5rem; }

.actions {
  margin-top: 1.25rem;
  display:flex;
  gap: 1rem;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1rem;
}

.tile {
  padding: 1rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fffaf0);
  border: 1px solid #fff3d6;
}
