/**
 * algebrain.dev - Common Design System
 * Colorful and playful design for kids 12-15
 */

/* ===================================
   CSS Custom Properties (Design Tokens)
   =================================== */

:root {
  /* Color Palette */
  --color-primary: #6366f1;      /* Indigo */
  --color-primary-dark: #4f46e5;
  --color-primary-light: #818cf8;

  --color-secondary: #ec4899;    /* Pink */
  --color-secondary-dark: #db2777;
  --color-secondary-light: #f472b6;

  --color-success: #10b981;      /* Green */
  --color-success-dark: #059669;
  --color-success-light: #34d399;

  --color-warning: #f59e0b;      /* Orange */
  --color-warning-dark: #d97706;
  --color-warning-light: #fbbf24;

  --color-error: #ef4444;        /* Red */
  --color-error-dark: #dc2626;
  --color-error-light: #f87171;

  --color-info: #06b6d4;         /* Cyan */
  --color-info-dark: #0891b2;
  --color-info-light: #22d3ee;

  /* Neutral Colors */
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-surface: #ffffff;
  --color-text: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;

  /* Spacing Scale (4px base) */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */

  /* Typography Scale */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 3rem;      /* 48px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Border Radius */
  --radius-sm: 0.375rem;    /* 6px */
  --radius-md: 0.5rem;      /* 8px */
  --radius-lg: 0.75rem;     /* 12px */
  --radius-xl: 1rem;        /* 16px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-modal: 200;
  --z-toast: 300;
}

/* ===================================
   Base Styles
   =================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--space-4);
}

/* ===================================
   Buttons
   =================================== */

button {
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  transition: all var(--transition-fast);
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Button Variants */
.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--color-secondary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--color-success);
  color: white;
}

.btn-success:hover:not(:disabled) {
  background: var(--color-success-dark);
}

.btn-warning {
  background: var(--color-warning);
  color: white;
}

.btn-warning:hover:not(:disabled) {
  background: var(--color-warning-dark);
}

.btn-error {
  background: var(--color-error);
  color: white;
}

.btn-error:hover:not(:disabled) {
  background: var(--color-error-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--color-primary);
  color: white;
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-5) var(--space-8);
  font-size: var(--font-size-lg);
  min-height: 52px;
}

.btn-full {
  width: 100%;
}

/* ===================================
   Cards
   =================================== */

.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.card-header {
  margin-bottom: var(--space-6);
}

.card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.card-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ===================================
   Layout Utilities
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.text-center {
  text-align: center;
}

/* ===================================
   Game Screen Layout
   =================================== */

.game-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.game-title {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  margin: 0;
}

.game-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ===================================
   Scoreboard Styles
   =================================== */

.scoreboard {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.scoreboard-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-border);
}

.tab-button {
  flex: 1;
  background: transparent;
  color: var(--color-text-secondary);
  border: none;
  border-bottom: 3px solid transparent;
  padding: var(--space-4);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.tab-button:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.tab-button.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: transparent;
}

.tab-icon {
  font-size: var(--font-size-xl);
  margin-right: var(--space-2);
}

.scoreboard-header {
  margin-bottom: var(--space-6);
  text-align: center;
}

.scoreboard-header h3 {
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.scoreboard-subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-semibold);
}

.player-rank {
  font-size: var(--font-size-lg);
  color: var(--color-warning);
  font-weight: var(--font-weight-bold);
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.score-table thead {
  background: var(--color-bg-alt);
}

.score-table th {
  padding: var(--space-4);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
}

.score-table td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.score-table tbody tr {
  transition: background var(--transition-fast);
}

.score-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.score-table .current-player {
  background: rgba(99, 102, 241, 0.1);
  font-weight: var(--font-weight-semibold);
}

.score-table .current-player:hover {
  background: rgba(99, 102, 241, 0.15);
}

.rank-cell {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  width: 60px;
}

.you-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  margin-left: var(--space-2);
}

.empty-message {
  text-align: center;
  padding: var(--space-10);
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
}

.empty-message .hint {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ===================================
   Form Elements
   =================================== */

input[type="text"],
input[type="number"],
select {
  font-family: inherit;
  font-size: var(--font-size-base);
  padding: var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 100%;
  transition: all var(--transition-fast);
  min-height: 44px;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-base);
}

.animate-slideUp {
  animation: slideUp var(--transition-slow);
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ===================================
   Progress Bar
   =================================== */

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

/* ===================================
   Timer Display
   =================================== */

.timer {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.timer-warning {
  color: var(--color-warning);
  animation: pulse 1s infinite;
}

.timer-danger {
  color: var(--color-error);
  animation: pulse 0.5s infinite;
}

/* ===================================
   Responsive Design
   =================================== */

/* Mobile: 320px - 767px */
@media (max-width: 767px) {
  :root {
    --font-size-4xl: 2rem;    /* Smaller on mobile */
    --font-size-3xl: 1.5rem;
  }

  .game-title {
    font-size: var(--font-size-2xl);
  }

  .score-table {
    font-size: var(--font-size-xs);
  }

  .score-table th,
  .score-table td {
    padding: var(--space-2);
  }

  .tab-button {
    font-size: var(--font-size-sm);
    padding: var(--space-3);
  }

  .tab-icon {
    font-size: var(--font-size-lg);
  }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 var(--space-6);
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   Accessibility
   =================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --color-border: #000000;
  }

  button {
    border: 2px solid currentColor;
  }
}
