/* Pasatiempos — Shared Base Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #F5C842;
  --yellow-light: #FEF3C7;
  --green: #A8D5A2;
  --green-dark: #6DBF67;
  --blue: #D6EAF8;
  --blue-dark: #3498DB;
  --dark: #2C2C2C;
  --gray: #888;
  --gray-light: #F0F0F0;
  --white: #FFFFFF;
  --red: #E74C3C;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html, body {
  height: 100%;
  font-family: var(--font);
  color: var(--dark);
  background: #F8F8F6;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn-primary:hover { background: #e8b800; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-secondary {
  background: var(--gray-light);
  color: var(--dark);
}
.btn-secondary:hover { background: #e0e0e0; }
