/**
 * Dow Julio Component Library
 * 
 * Reusable styled components following the retro Miami Dolphins aesthetic
 * 
 * USAGE:
 * 1. Import design-tokens.css first
 * 2. Import this file
 * 3. Apply classes to your React elements
 * 
 * CODENOTE: These are CSS classes, not React components
 * Use className="component-name" in your JSX
 */

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-default);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all var(--transition-default);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--color-action-primary);
  color: var(--color-white);
  border: var(--border-width-thick) solid var(--color-action-primary);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--color-action-primary);
  border: var(--border-width-thick) solid var(--color-action-primary);
}

.btn-secondary:hover {
  background: var(--color-action-primary);
  color: var(--color-white);
}

.btn-aqua {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: var(--border-width-thick) solid var(--border-accent-header);
}

.btn-aqua:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--border-accent-header);
}

.btn-danger {
  background: var(--color-danger-primary);
  color: var(--color-white);
  border: var(--border-width-thick) solid var(--color-danger-primary);
}

.btn-icon {
  background: none;
  border: none;
  color: inherit;
  padding: var(--space-sm);
  cursor: pointer;
}


/* ============================================
   CARDS
   ============================================ */

/* Basic card */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius-default);
  padding: var(--space-base);
  box-shadow: var(--shadow-default);
  border: var(--border-width-medium) solid var(--border-default);
}

/* Retro thick-border card */
.card-retro {
  background: var(--bg-card);
  border-radius: var(--border-radius-default);
  padding: var(--space-base);
  border: var(--border-width-thick) solid var(--border-default);
}

/* Player card (with left accent) */
.card-player {
  background: var(--bg-card);
  border-radius: var(--border-radius-default);
  padding: var(--space-base);
  border: var(--border-width-medium) solid var(--border-default);
  border-left: var(--border-width-thickest) solid var(--border-aqua);
  box-shadow: var(--shadow-default);
}

.card-player.featured {
  border: var(--border-width-thick) solid var(--border-action);
  box-shadow: var(--shadow-action);
}

/* Scoreboard card */
.card-scoreboard {
  background: var(--color-structure-deepest);
  color: var(--text-inverse);
  border-radius: var(--border-radius-default);
  padding: var(--space-base);
  border: var(--border-width-thick) solid var(--border-aqua);
}


/* ============================================
   HEADERS
   ============================================ */

.header-page {
  background: var(--color-structure-primary);
  color: var(--text-inverse);
  padding: var(--space-base);
  box-shadow: var(--shadow-border);
}

.header-section {
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--space-base);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width-medium) solid var(--border-action);
}

.header-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  margin: 0;
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
}


/* ============================================
   TABS
   ============================================ */

.tabs {
  display: flex;
}

.tab {
  flex: 1;
  padding: var(--space-base) var(--space-sm);
  background: transparent;
  color: var(--text-inverse);
  border: none;
  border-right: var(--border-width-default) solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-wide);
  transition: all var(--transition-default);
  position: relative;
}

.tab:last-child {
  border-right: none;
}

.tab.active {
  background: var(--border-accent-header);
  color: var(--color-accent-text);
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--border-width-thick);
  background: transparent;
}


/* ============================================
   SCORES & NUMBERS
   ============================================ */

/* Large scoreboard number */
.score-large {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-widest);
  line-height: var(--line-height-none);
}

/* Medium score (player points) */
.score-medium {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-none);
}

/* Small score (averages) */
.score-small {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}

/* Score display box */
.score-box {
  background: var(--color-structure-deepest);
  color: var(--text-inverse);
  padding: var(--space-md) var(--space-base);
  border-radius: var(--border-radius-default);
  border: var(--border-width-thick) solid var(--border-action);
  text-align: center;
}

.score-box-winning {
  border-color: var(--color-highlight-cream);
}

.score-box-winning .score-large,
.score-box-winning .score-medium {
  color: var(--color-highlight-cream);
}


/* ============================================
   BADGES & LABELS
   ============================================ */

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

.badge-position {
  background: var(--color-accent-aqua);
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-normal);
  font-weight: var(--font-weight-bold);
}

.badge-status {
  background: var(--color-structure-bg);
  color: var(--text-primary);
  border: var(--border-width-default) solid var(--border-default);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
}

.badge-featured {
  background: var(--color-danger-primary);
  color: var(--text-inverse);
  text-transform: uppercase;
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-normal);
  padding: var(--space-xs) var(--space-md);
}


/* ============================================
   PROGRESS BARS
   ============================================ */

.progress-container {
  background: var(--bg-card);
  border-radius: var(--border-radius-default);
  padding: var(--space-lg);
  border: var(--border-width-thick) solid var(--border-aqua);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-base);
}

.progress-label {
  font-size: var(--font-size-base);
  color: var(--text-primary);
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.progress-value {
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-tight);
}

/* Retro thick progress bar */
.progress-bar {
  background: var(--color-structure-bg);
  border-radius: var(--border-radius-full);
  height: 24px;
  overflow: hidden;
  border: var(--border-width-medium) solid var(--color-structure-deepest);
  position: relative;
  margin-bottom: var(--space-sm);
}

.progress-fill {
  height: 100%;
  transition: width var(--transition-slow);
  border-radius: var(--border-radius-full);
  border-right: var(--border-width-medium) solid var(--color-structure-deepest);
}

.progress-fill-success {
  background: var(--color-action-primary);
}

.progress-fill-warning {
  background: var(--color-action-light);
}

.progress-fill-danger {
  background: var(--color-danger-primary);
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-weight-semibold);
}


/* ============================================
   STAT CARDS
   ============================================ */

/* Small stat display (3-column grid) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-base);
}

.stat-card {
  background: var(--color-structure-deepest);
  color: var(--text-inverse);
  border-radius: var(--border-radius-default);
  padding: var(--space-md);
  text-align: center;
  border: var(--border-width-medium) solid var(--border-aqua);
}

.stat-label {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  margin-bottom: var(--space-xs);
  letter-spacing: var(--letter-spacing-normal);
  text-transform: uppercase;
}

.stat-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-none);
}


/* ============================================
   ALERTS & BANNERS
   ============================================ */

.alert {
  border-radius: var(--border-radius-default);
  padding: var(--space-base);
  margin-bottom: var(--space-base);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.alert-info {
  background: var(--color-accent-aqua-bg);
  border: var(--border-width-default) solid var(--color-accent-aqua);
  color: var(--color-accent-aqua-dark);
}

.alert-warning {
  background: var(--color-action-bg);
  border: var(--border-width-default) solid var(--color-action-light);
  color: var(--color-action-darkest);
}

.alert-danger {
  background: var(--color-danger-bg);
  border: var(--border-width-default) solid var(--color-danger-primary);
  color: var(--color-danger-dark);
}


/* ============================================
   MATCHUP COMPONENTS
   ============================================ */

/* Scorebug (main matchup display) */
.scorebug {
  background: rgba(0, 0, 0, 0.15);
  color: var(--text-inverse);
  border-radius: var(--border-radius-default);
  padding: var(--space-xl) var(--space-base);
  margin-bottom: var(--space-xl);
  border: var(--border-width-thick) solid rgba(255, 255, 255, 0.2);
}

.scorebug-header {
  text-align: center;
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: var(--space-base);
  letter-spacing: var(--letter-spacing-wider);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.scorebug-scores {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-base);
}

.scorebug-team {
  flex: 1;
  text-align: center;
}

.scorebug-team-label {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.scorebug-divider {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  color: var(--color-action-primary);
  padding: 0 var(--space-sm);
}

.scorebug-footer {
  margin-top: var(--space-base);
  padding-top: var(--space-base);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.scorebug-differential {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-black);
}

.scorebug-differential-label {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-top: var(--space-xs);
  letter-spacing: var(--letter-spacing-normal);
}


/* ============================================
   CONTRACT COMPONENTS
   ============================================ */

/* Split contract display (salary + years) */
.contract-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contract-box {
  padding: var(--space-base);
  border-radius: var(--border-radius-default);
  text-align: center;
}

.contract-box-salary {
  background: var(--color-structure-deepest);
  border: var(--border-width-medium) solid var(--border-action);
}

.contract-box-salary .contract-label {
  font-size: var(--font-size-xs);
  color: var(--color-accent-aqua-light);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--letter-spacing-wide);
}

.contract-box-salary .contract-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  color: var(--text-inverse);
  line-height: var(--line-height-none);
}

.contract-box-years {
  background: var(--color-highlight-cream);
  border: var(--border-width-medium) solid var(--border-action);
}

.contract-box-years .contract-label {
  font-size: var(--font-size-xs);
  color: var(--color-action-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--letter-spacing-wide);
}

.contract-box-years .contract-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  color: var(--color-action-darkest);
  line-height: var(--line-height-none);
}


/* ============================================
   MODAL BASE STYLES
   ============================================ */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--space-lg);
}

.modal-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.2s ease-out;
  position: relative;
  z-index: 10000;
}

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

.modal-header {
  padding: var(--space-lg);
  border-bottom: var(--border-width-thin) solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-display);
  color: var(--color-text);
}

.modal-close-button {
  background: none;
  border: none;
  font-size: var(--font-size-3xl);
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.modal-close-button:hover {
  background: var(--color-highlight-light);
  color: var(--color-text);
}

.modal-footer {
  padding: var(--space-base) var(--space-lg);
  border-top: var(--border-width-thin) solid var(--border-subtle);
}


/* ============================================
   THEME PICKER MODAL
   ============================================ */

.theme-picker-modal {
  max-width: 500px;
  width: 90%;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-base);
  padding: var(--space-lg);
  max-height: 60vh;
  overflow-y: auto;
}

.theme-card {
  background: var(--color-surface);
  border: var(--border-width-medium) solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-base);
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.theme-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.theme-card-selected {
  border-color: var(--color-primary);
  border-width: var(--border-width-thick);
  background: var(--color-highlight-light);
  position: relative;
}

.theme-card-name {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-family: var(--font-display);
}

.theme-card-colors {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.theme-color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: var(--border-width-thin) solid rgba(0, 0, 0, 0.1);
}

.theme-card-checkmark {
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

.theme-picker-note {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin: 0;
  padding: 0 var(--space-lg) var(--space-lg);
  font-family: var(--font-body);
}


/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 768px) {
  .stat-grid {
    gap: var(--space-sm);
  }
  
  .stat-card {
    padding: var(--space-sm);
  }
  
  .stat-value {
    font-size: var(--font-size-xl);
  }
  
  .score-large {
    font-size: var(--font-size-4xl);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-base);
    font-size: var(--font-size-sm);
  }
}
