/* Oliebollen Counter - Stijl (PHP) */
:root{
  --bg-start: #ffecd2;
  --bg-end: #fcb69f;
  --card-bg: rgba(255,255,255,0.9);
  --text: #201a18;
  --muted: #6b5f59;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

.container{ display: grid; place-items: center; padding: 24px; }

.card{
  width: 100%;
  max-width: 720px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.hidden { display: none; }

h1{ margin: 0 0 8px 0; font-size: clamp(28px, 5vw, 38px); }
.subtitle{ margin-top: 0; color: var(--muted); }

.form{ display: grid; gap: 12px; margin-top: 14px; }
label{ font-weight: 600; }

input[type="text"]{
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 16px;
}

button{
  cursor: pointer;
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  background: #111;
  color: white;
  font-size: 16px;
  transition: transform .05s ease, filter .2s ease;
}

button:active{ transform: translateY(1px); }
button.secondary{ background: #e11d48; }
button.ghost{ background: transparent; color: #111; border: 1px solid var(--border); }
button:disabled{ opacity: .6; cursor: not-allowed; }

.hint{ color: var(--muted); margin-top: 6px; }

.topbar{ display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.user{ font-weight: 600; }
.actions{ display:flex; gap:10px; }

.counter-wrap{ text-align: center; margin: 12px auto 8px; }
.counter{ font-variant-numeric: tabular-nums; font-size: clamp(56px, 10vw, 96px); line-height: 1; font-weight: 800; }
.label{ margin-top: 8px; color: var(--muted); font-size: 14px; }

.oliebol-btn{ display:block; margin: 12px auto; background: transparent; border-radius: 24px; padding: 8px; border: 0px dashed var(--border); }
.oliebol-btn img{ width: min(60vw, 320px); height: auto; display:block; filter: drop-shadow(0 8px 24px rgba(0,0,0,.25)); transition: transform .08s ease; }
.oliebol-btn:active img{ transform: scale(0.98); }

.cta{ text-align: center; color: var(--muted); margin-top: 4px; }
.footer{ text-align: center; padding: 12px; color: rgba(0,0,0,.6); }
