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

:root {
  /* Dark theme (default) */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --border-color: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;

  /* Semantic */
  --color-damage: #ef4444;
  --color-heal: #10b981;
  --color-info: #ffffff;
  --color-warning: #f59e0b;
  --color-death: #dc2626;

  /* Agent colors */
  --agent-gpt: #10a37f;
  --agent-claude: #d97757;
  --agent-haiku: #a0a0a0;
  --agent-mini: #9333ea;

  /* Typography */
  --font-primary: 'Satoshi', sans-serif;
  --font-heading: 'Clash Grotesk', sans-serif;
  --font-mono: 'Cabinet Grotesk', monospace;
}

/* Light theme */
body.light-theme {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --border-color: #e0e0e0;
  --text-primary: #000000;
  --text-secondary: #666666;

  --color-info: #000000;
}

* {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */

.header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  flex: 1;
}

.header-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.5px;
}

.header-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 4px 0 0 0;
}

.header-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.turn-info, .zone-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.turn-label, .zone-label {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.turn-value, .zone-value {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.turn-separator, .turn-max {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ===== CONTROLS ===== */

.controls {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-start {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 600;
}

.btn-start:hover:not(:disabled) {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
}

.btn-reset {
  background: transparent;
  color: var(--color-damage);
  border-color: var(--color-damage);
}

.btn-reset:hover:not(:disabled) {
  background: var(--color-damage);
  color: var(--bg-primary);
  border-color: var(--color-damage);
}

.btn-obstacle-mode {
  background: #8b5cf6;
  border-color: #8b5cf6;
  color: white;
}

.btn-obstacle-mode:hover:not(:disabled) {
  background: #7c3aed;
  border-color: #7c3aed;
}

.btn-obstacle-mode.active {
  background: #06b6d4;
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-obstacle-mode.active:hover:not(:disabled) {
  background: #0891b2;
  border-color: #0891b2;
}

.obstacle-counter {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3px;
  margin-left: auto;
}

.theme-toggle {
  margin-left: 0;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: var(--bg-secondary);
  transform: rotate(15deg);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-heal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== MAIN LAYOUT ===== */

.main-container {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  height: calc(100vh - 145px - 180px);
}

/* ===== SIDEBARS ===== */

.sidebar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  height: 100%;
  overflow: hidden;
}

.sidebar-left {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-trash {
  width: 400px;
  flex-shrink: 0;
}

.sidebar-right {
  width: 280px;
  flex-shrink: 0;
}

.sidebar-header {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

#agent-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.agent-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-left: 3px solid;
  border-radius: 6px;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.agent-card:hover {
  border-left-width: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateX(2px);
}

.agent-card.dead {
  opacity: 0.4;
  filter: grayscale(100%);
  transform: scale(0.98);
  filter: grayscale(100%);
}

.agent-card.thinking {
  animation: borderPulse 1.5s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3);
  }
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.agent-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.agent-archetype {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 2px 7px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.health-bar-container {
  position: relative;
  background: var(--bg-secondary);
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--border-color);
}

.health-bar-fill {
  height: 100%;
  transition: width 0.5s ease, background 0.3s;
}

.health-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 300;
  font-family: var(--font-mono);
  color: var(--text-primary);
  text-shadow: 0 0 4px rgba(0,0,0,0.8);
}

.agent-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 11px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

.stat-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.agent-charm {
  font-size: 11px;
  color: var(--color-warning);
  margin-bottom: 6px;
}

.agent-status {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.status-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
}

.status-badge.defending { background: rgba(255, 255, 255, 0.1); color: var(--color-info); border: 1px solid var(--color-info); }
.status-badge.shield { background: rgba(156, 163, 175, 0.1); color: var(--text-secondary); border: 1px solid var(--text-secondary); }
.status-badge.buff { background: rgba(245, 158, 11, 0.1); color: var(--color-warning); border: 1px solid var(--color-warning); }

.agent-response-time {
  font-size: 10px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  text-align: right;
}

.agent-response-time.fast { color: var(--color-heal); }
.agent-response-time.slow { color: var(--color-warning); }

.thinking-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #06b6d4;
  font-family: var(--font-mono);
  margin-top: 6px;
  animation: fadeIn 0.3s ease;
}

.thinking-indicator i {
  font-size: 11px;
}

/* ===== BATTLEFIELD ===== */

.battlefield-container {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  height: 100%;
  min-height: 0;
}

.battlefield-header {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.canvas-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

#arena-canvas {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  image-rendering: pixelated;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== LIVE FEED ===== */

.live-feed {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  min-height: 0;
}

.feed-entry {
  padding: 5px 0;
  border-left: 2px solid;
  padding-left: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.6;
  transition: all 0.2s;
  animation: fadeInUp 0.3s ease;
}

.feed-entry:hover {
  background: rgba(255,255,255,0.02);
}

.feed-turn {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-weight: 400;
  margin-right: 8px;
  display: inline;
}

.feed-agent {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 8px;
  display: inline;
}

.feed-reasoning {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-primary);
  display: inline;
}

/* ===== TRASH TALK ===== */

.trash-talk {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  min-height: 0;
}

.trash-entry {
  padding: 10px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-left: 3px solid;
  border-radius: 4px;
  font-size: 12px;
  animation: slideIn 0.3s ease;
  flex-shrink: 0;
}

.trash-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.trash-turn {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-weight: 400;
}

.trash-agent {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trash-message {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}

/* ===== COMBAT LOG ===== */

.combat-log-panel {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  height: 180px;
  flex-shrink: 0;
}

.combat-section, .commentary-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.commentary-section {
  border-left: 1px solid var(--border-color);
}

.commentary-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  min-height: 0;
}

.commentary-entry {
  padding: 10px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-left: 3px solid #fbbf24;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 10px;
  animation: fadeInUp 0.3s ease;
  flex-shrink: 0;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.commentary-entry:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(2px);
}

.commentary-turn {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.panel-header {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-color);
}

.combat-log-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
  font-family: var(--font-primary);
  font-size: 12px;
  line-height: 1.6;
}

.log-entry {
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-bottom: 3px;
  transition: all 0.2s;
  animation: fadeInUp 0.3s ease;
}

.log-entry:hover {
  background: rgba(255,255,255,0.02);
  border-left-color: var(--text-secondary);
}

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

.log-meta {
  color: var(--text-secondary);
  margin-right: 8px;
}

.log-icon {
  margin-right: 8px;
  display: inline-block;
  width: 16px;
  text-align: center;
}

.log-detail {
  display: block;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 11px;
  margin-top: 2px;
}

.log-entry.attack { border-left-color: var(--color-damage); }
.log-entry.defend { border-left-color: var(--color-info); }
.log-entry.move { border-left-color: var(--text-secondary); }
.log-entry.pickup { border-left-color: var(--color-heal); }
.log-entry.elimination { border-left-color: var(--color-death); }
.log-entry.zone { border-left-color: var(--color-warning); }

/* ===== KILL FEED ===== */

.kill-feed {
  position: fixed;
  top: 120px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kill-entry {
  background: rgba(0,0,0,0.9);
  border: 1px solid var(--color-death);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-death);
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.kill-entry.fade-out {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s;
}

/* ===== VICTORY MODAL ===== */

.victory-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.victory-overlay.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.victory-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
}

.victory-header {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-heal);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.victory-sprite {
  image-rendering: pixelated;
  margin: 16px auto;
  display: block;
}

.victory-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 12px 0;
  letter-spacing: 0.5px;
}

.victory-archetype {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.victory-stats {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.btn-close-victory {
  width: 100%;
}

.btn-play-again {
  width: 100%;
  background: var(--color-heal);
  border-color: var(--color-heal);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
}

.btn-play-again:hover:not(:disabled) {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Match Statistics Section */
.match-stats-section {
  margin: 32px 0 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.stats-header {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.match-stats-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 16px;
}

.match-stats-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.match-stats-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-color);
}

.match-stats-table tbody tr:last-child td {
  border-bottom: none;
}

.match-stats-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.match-stats-table .winner-row {
  background: rgba(16, 185, 129, 0.1);
  font-weight: 600;
}

/* MVP Awards Section */
.mvp-awards-section {
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.mvp-awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.mvp-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s;
}

.mvp-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.mvp-card:nth-child(1) {
  border-top: 3px solid #ef4444;
}

.mvp-card:nth-child(2) {
  border-top: 3px solid #10b981;
}

.mvp-card:nth-child(3) {
  border-top: 3px solid #f59e0b;
}

.mvp-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.mvp-card:nth-child(1) .mvp-icon {
  color: #ef4444;
}

.mvp-card:nth-child(2) .mvp-icon {
  color: #10b981;
}

.mvp-card:nth-child(3) .mvp-icon {
  color: #f59e0b;
}

.mvp-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.mvp-winner {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== INFO MODAL ===== */

.info-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 8px;
}

.info-btn:hover {
  color: #06b6d4;
  border-color: #06b6d4;
  transform: rotate(15deg);
}

.info-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 199;
}

.info-overlay.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.info-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
}

.info-header {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-align: center;
}

.info-content {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

.info-section {
  margin-bottom: 24px;
}

.info-section h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-section p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
}

.info-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

.info-section li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.btn-close-info {
  width: 100%;
  margin-top: 8px;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

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

@media (max-width: 1600px) {
  .sidebar-left {
    width: 220px;
  }

  .sidebar-trash {
    width: 240px;
  }

  .sidebar-right {
    width: 180px;
  }
}

@media (max-width: 1400px) {
  .main-container {
    flex-wrap: wrap;
  }

  .sidebar-trash,
  .sidebar-right {
    width: calc(50% - 8px);
    max-height: 300px;
  }
}

@media (max-width: 900px) {
  .sidebar-left,
  .sidebar-trash,
  .sidebar-right {
    width: 100%;
  }

  .main-container {
    flex-direction: column;
  }
}

/* ===== MOBILE BLOCKER ===== */

.mobile-blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.mobile-blocker-content {
  text-align: center;
  padding: 40px;
  max-width: 500px;
}

.mobile-blocker-content h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.mobile-blocker-content p {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .mobile-blocker {
    display: flex;
  }
}
