* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1b2b1f, #4b7d38);
  color: #f5fff1;
}
.card {
  width: min(760px, calc(100vw - 32px));
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
h1 { margin-top: 0; font-size: 42px; }
.button, button {
  display: inline-block;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  background: #95e06c;
  color: #102010;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.secondary { background: rgba(255,255,255,0.2); color: #fff; margin-top: 20px; }
.farm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.farm-grid button {
  min-height: 110px;
  font-size: 20px;
  opacity: .75;
}
.profile { display: flex; gap: 16px; align-items: center; }
.profile img { width: 72px; height: 72px; border-radius: 50%; }
small { opacity: .75; }
