/*
 * Englishbuds Games
 * Shared Theme
 */

:root {
  /* Englishbuds brand colors */
  --eb-green: #7fb51c;
  --eb-green-dark: #4f7f18;
  --eb-green-light: #dff1a8;

  /* Game accent colors */
  --eb-yellow: #ffd83d;
  --eb-pink: #ffb8c8;
  --eb-blue: #8ed8f8;
  --eb-orange: #ffb347;

  /* Neutral colors */
  --eb-white: #ffffff;
  --eb-background: #f7faef;
  --eb-text: #333333;
  --eb-text-soft: #666666;
  --eb-border: #dfe7d2;

  /* Feedback colors */
  --eb-success: #63b84f;
  --eb-error: #e86464;

  /* Shape */
  --eb-radius-small: 10px;
  --eb-radius-medium: 18px;
  --eb-radius-large: 28px;

  /* Shadow */
  --eb-shadow:
    0 6px 18px rgba(0, 0, 0, 0.10);

  /* Spacing */
  --eb-space-xs: 4px;
  --eb-space-sm: 8px;
  --eb-space-md: 16px;
  --eb-space-lg: 24px;
  --eb-space-xl: 32px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--eb-background);
  color: var(--eb-text);

  font-family:
    "Arial Rounded MT Bold",
    "Trebuchet MS",
    Arial,
    sans-serif;

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}