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

:root {
  --primary: #00f5ff;
  --secondary: #7b2cbf;
  --accent: #ff6b35;
  --success: #00ff88;
  --danger: #ff3366;
  --warning: #ffcc00;
  --dark-bg: #0a0a12;
  --card-bg: rgba(15, 15, 25, 0.95);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 10% 90%,
      rgba(0, 245, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 10%,
      rgba(123, 44, 191, 0.15) 0%,
      transparent 50%
    );
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridPulse 4s ease-in-out infinite;
}

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

.binary-rain {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--dark-bg) 90%);
  pointer-events: none;
}

/* Screens */
.screen {
  display: none;
  min-height: 100vh;
  padding: 20px;
}

.screen.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

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

/* Main Menu */
#main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-content {
  text-align: center;
  max-width: 600px;
}

.logo-container {
  margin-bottom: 40px;
}

.logo-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

.game-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(0, 245, 255, 0.3);
  letter-spacing: 4px;
}

.game-subtitle {
  font-size: 1.5rem;
  color: var(--text-dim);
  margin-top: 10px;
  letter-spacing: 3px;
}

.player-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 12px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-btn:hover {
  background: rgba(0, 245, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.menu-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #000;
}

.menu-btn.primary:hover {
  transform: translateX(10px) scale(1.02);
}

.btn-icon {
  font-size: 1.3rem;
}

/* Screen Header */
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 30px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.back-btn {
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.xp-display {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: var(--warning);
}

/* World Cards */
.worlds-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.world-card {
  position: relative;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s;
  overflow: hidden;
}

.world-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.world-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

.world-card:hover::before {
  opacity: 1;
}

.world-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 245, 255, 0.2);
}

.world-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.world-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.world-card p {
  color: var(--text-dim);
  margin-bottom: 20px;
}

.world-progress {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--success));
  border-radius: 4px;
  transition: width 0.5s;
}

.world-progress span {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.world-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.world-topics span {
  padding: 5px 12px;
  background: rgba(0, 245, 255, 0.1);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary);
}

/* Level Select */
.levels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.level-card {
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.level-card.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.level-card.completed {
  border-color: var(--success);
}

.level-card.completed::after {
  content: '✓';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

.level-card:not(.locked):hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

.level-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 10px;
}

.level-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.level-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.level-xp {
  margin-top: 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--warning);
}

/* Game Screen */
.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.level-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
}

.level-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.game-stats {
  display: flex;
  gap: 25px;
}

.game-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
}

.game-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Array Visualization */
.array-container {
  grid-column: 1 / -1;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.array-labels {
  position: relative;
  height: 30px;
  margin-bottom: 10px;
}

.label {
  position: absolute;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.5s ease-out;
}

.left-label {
  background: var(--success);
  color: #000;
}

.mid-label {
  background: var(--warning);
  color: #000;
}

.right-label {
  background: var(--danger);
  color: #fff;
}

.array-display {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.array-element {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.4s;
  position: relative;
}

.array-element.highlight-left {
  background: rgba(0, 255, 136, 0.2);
  border-color: var(--success);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.array-element.highlight-right {
  background: rgba(255, 51, 102, 0.2);
  border-color: var(--danger);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.array-element.highlight-mid {
  background: rgba(255, 204, 0, 0.3);
  border-color: var(--warning);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
  transform: scale(1.15);
}

.array-element.found {
  background: linear-gradient(135deg, var(--success), var(--primary));
  border-color: var(--success);
  animation: foundPulse 0.5s ease-out;
}

@keyframes foundPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.15);
  }
}

.array-element.eliminated {
  opacity: 0.3;
  transform: scale(0.9);
}

.array-element.comparing {
  animation: comparePulse 0.6s ease-in-out;
}

@keyframes comparePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
  }
}

.array-indices {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.array-index {
  width: 60px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Search Info Panel */
.search-info-panel {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / -1;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.info-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Action Panel */
.action-panel {
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-prompt {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--warning);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-btn {
  padding: 15px 25px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.action-btn:hover {
  border-color: var(--primary);
  background: rgba(0, 245, 255, 0.1);
  transform: translateX(5px);
}

.action-btn.correct {
  border-color: var(--success);
  background: rgba(0, 255, 136, 0.2);
  animation: correctFlash 0.5s;
}

.action-btn.incorrect {
  border-color: var(--danger);
  background: rgba(255, 51, 102, 0.2);
  animation: shake 0.5s;
}

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

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/* Code Panel */
.code-panel {
  padding: 20px;
  background: #1a1a2e;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header span {
  font-weight: 600;
  color: var(--primary);
}

.toggle-code {
  padding: 5px 12px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--text);
  cursor: pointer;
}

.code-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-dim);
  white-space: pre-wrap;
  overflow-x: auto;
}

.code-display .highlight-line {
  background: rgba(0, 245, 255, 0.2);
  display: block;
  margin: 0 -20px;
  padding: 0 20px;
}

/* Message Log */
.message-log {
  grid-column: 1 / -1;
  max-height: 150px;
  overflow-y: auto;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.log-message {
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 0.95rem;
  animation: slideIn 0.3s ease-out;
}

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

.log-message.info {
  background: rgba(0, 245, 255, 0.1);
  border-left: 3px solid var(--primary);
}

.log-message.success {
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid var(--success);
}

.log-message.error {
  background: rgba(255, 51, 102, 0.1);
  border-left: 3px solid var(--danger);
}

.log-message.warning {
  background: rgba(255, 204, 0, 0.1);
  border-left: 3px solid var(--warning);
}

/* Sandbox */
.sandbox-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.sandbox-controls {
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-group {
  margin-bottom: 20px;
}

.control-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dim);
}

.control-group input,
.control-group select {
  width: 100%;
  padding: 12px 15px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.3s;
}

.control-group input:focus,
.control-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.sandbox-buttons {
  display: flex;
  gap: 10px;
}

.sandbox-btn {
  flex: 1;
  padding: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
}

.sandbox-btn:hover {
  background: rgba(0, 245, 255, 0.1);
}

.sandbox-visualization {
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sandbox-array {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  min-height: 100px;
}

.sandbox-info {
  padding: 20px;
  background: rgba(0, 245, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

.sandbox-log {
  max-height: 200px;
  overflow-y: auto;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}

/* Achievements */
.achievements-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-card {
  padding: 25px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.achievement-card.unlocked {
  border-color: var(--warning);
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), transparent);
}

.achievement-card.locked {
  opacity: 0.5;
}

.achievement-icon {
  font-size: 3rem;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.achievement-card.unlocked .achievement-icon {
  filter: none;
}

.achievement-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.achievement-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s;
}

.modal-content {
  padding: 40px;
  background: var(--card-bg);
  border-radius: 24px;
  border: 2px solid var(--primary);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.modal-content.victory {
  border-color: var(--success);
}

.victory-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 0.6s ease-out;
}

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

.modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--success);
  margin-bottom: 25px;
}

.victory-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

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

.victory-stat .stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 5px;
}

.victory-stat .stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  padding: 15px 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, var(--primary), var(--success));
  color: #000;
}

.modal-btn:hover {
  transform: scale(1.05);
}

.modal-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* Tutorial */
.modal-content.tutorial {
  border-color: var(--secondary);
  text-align: left;
}

.modal-content.tutorial h2 {
  color: var(--secondary);
  text-align: center;
}

#tutorial-content {
  margin-bottom: 25px;
  line-height: 1.8;
}

#tutorial-content p {
  margin-bottom: 15px;
}

#tutorial-content code {
  background: rgba(0, 245, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* Responsive */
@media (max-width: 1024px) {
  .game-content {
    grid-template-columns: 1fr;
  }

  .sandbox-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .game-logo {
    font-size: 2.2rem;
  }

  .player-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .search-info-panel {
    flex-wrap: wrap;
    gap: 20px;
  }

  .array-element {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .array-index {
    width: 50px;
  }
}
