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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  color: #e0e0e0;
  padding: 20px;
  min-height: 100vh;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ff88, #00aaff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.header-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.settings-btn {
  padding: 8px 20px;
  background: rgba(0, 170, 255, 0.2);
  border: 2px solid #00aaff;
  border-radius: 20px;
  color: #00aaff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.settings-btn:hover {
  background: rgba(0, 170, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

.status-badge {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-connected {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 2px solid #00ff88;
}

.status-disconnected {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
  border: 2px solid #ff4444;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dartboard-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#dartboard {
  position: relative;
  width: 400px;
  height: 400px;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.dart-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: pulse 0.5s ease-out;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.throw-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.throw-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #00ff88;
  animation: slideIn 0.3s ease-out;
}

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

.throw-segment {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
}

.throw-score {
  font-size: 1.2rem;
  color: #00aaff;
  font-weight: 600;
}

.motion-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.9rem;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

.game-status {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 170, 255, 0.1) 100%);
  border-radius: 15px;
  margin-bottom: 20px;
}

.game-status-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 10px;
}

.game-event {
  font-size: 1.2rem;
  color: #00aaff;
}

.total-score {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #00ff88;
  margin: 20px 0;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
  margin-bottom: 25px;
  color: #00ff88;
  text-align: center;
}

.modal-content h3 {
  margin: 25px 0 15px 0;
  color: #00aaff;
  font-size: 1.2rem;
}

.game-type-selector {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.game-type-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.game-type-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

.game-type-btn.active {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
}

.game-type-btn[data-game="301"],
.game-type-btn[data-game="cricket"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.game-type-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 5px;
}

.game-type-desc {
  font-size: 0.9rem;
  color: #999;
}

.settings-form {
  margin: 20px 0;
}

.setting-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.setting-row label {
  font-size: 1rem;
  color: #00aaff;
  font-weight: 600;
}

.setting-row input,
.setting-row select {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
  cursor: pointer;
}

.setting-row input:focus,
.setting-row select:focus {
  outline: none;
  border-color: #00aaff;
  background: rgba(255, 255, 255, 0.08);
}

.setting-row select:hover {
  background: rgba(255, 255, 255, 0.08);
}

.setting-info {
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.setting-info p {
  margin: 5px 0;
  color: #999;
  font-size: 0.9rem;
}

.game-options {
  background: rgba(0, 170, 255, 0.05);
  border: 2px solid rgba(0, 170, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.game-options h3 {
  margin-top: 0;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.option-row:last-child {
  margin-bottom: 0;
}

.option-row label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
}

.option-row select {
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-row select:focus {
  outline: none;
  border-color: #00aaff;
}

.option-row select:hover {
  background: rgba(255, 255, 255, 0.08);
}

.add-player-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.add-player-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1rem;
}

.add-player-form input:focus {
  outline: none;
  border-color: #00ff88;
}

#player-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.player-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #00ff88;
}

.player-item-name {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.player-item-remove {
  background: rgba(255, 68, 68, 0.2);
  border: none;
  color: #ff4444;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.player-item-remove:hover {
  background: rgba(255, 68, 68, 0.4);
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary, .btn-secondary {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.game-controls button {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Game Board Styles */
#game-board {
  margin-bottom: 20px;
}

.killer-board {
  display: grid;
  gap: 15px;
}

.killer-player {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.killer-player.active {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.killer-player.eliminated {
  opacity: 0.4;
  filter: grayscale(1);
}

.killer-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.killer-player-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
}

.killer-player.eliminated .killer-player-name {
  color: #666;
}

.killer-badge {
  background: linear-gradient(135deg, #ff0000, #ff6b00);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  animation: pulse-killer 2s infinite;
}

.killer-progress {
  background: rgba(0, 170, 255, 0.2);
  color: #00aaff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border: 2px solid #00aaff;
}

@keyframes pulse-killer {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
}

.killer-player-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.killer-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00aaff;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.killer-lives {
  display: flex;
  gap: 8px;
  font-size: 2rem;
}

.life-icon {
  transition: all 0.3s ease;
}

.life-icon.lost {
  opacity: 0.2;
  filter: grayscale(1);
}

.winner-banner {
  background: linear-gradient(135deg, #00ff88, #00aaff);
  color: #000;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  animation: winner-pulse 1s ease-in-out infinite;
}

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

.winner-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.winner-banner p {
  font-size: 1.3rem;
  opacity: 0.8;
}

.winner-flash {
  animation: winner-flash 2s ease-in-out infinite;
}

@keyframes winner-flash {
  0%, 100% { 
    background: linear-gradient(135deg, #00ff88, #00aaff);
  }
  50% { 
    background: linear-gradient(135deg, #ff00ff, #ffaa00);
  }
}

/* ========== 301 GAME STYLES ========== */

.x01-board {
  display: grid;
  gap: 20px;
}

.x01-player {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.x01-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00ff88, #00aaff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.x01-player.active {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
  transform: scale(1.02);
}

.x01-player.active::before {
  transform: scaleX(1);
}

.x01-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.x01-player-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.x01-average {
  background: rgba(0, 170, 255, 0.2);
  color: #00aaff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #00aaff;
}

.x01-player-body {
  display: flex;
  align-items: center;
  gap: 30px;
}

.x01-score {
  font-size: 5rem;
  font-weight: bold;
  color: #00aaff;
  text-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
  min-width: 200px;
  animation: score-pulse 0.3s ease;
}

.x01-score.checkout-range {
  color: #ffaa00;
  text-shadow: 0 0 30px rgba(255, 170, 0, 0.8);
  animation: checkout-pulse 1.5s ease-in-out infinite;
}

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

@keyframes checkout-pulse {
  0%, 100% { 
    transform: scale(1);
    text-shadow: 0 0 30px rgba(255, 170, 0, 0.8);
  }
  50% { 
    transform: scale(1.05);
    text-shadow: 0 0 50px rgba(255, 170, 0, 1);
  }
}

.x01-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.x01-stat {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 10px;
}

.x01-stat-label {
  color: #999;
  font-size: 0.9rem;
}

.x01-stat-value {
  color: #00ff88;
  font-size: 1.2rem;
  font-weight: bold;
}

.x01-turn-score {
  margin-top: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 170, 255, 0.2));
  border-radius: 10px;
  border: 2px solid #00ff88;
  animation: turn-glow 1s ease-in-out infinite;
}

.turn-indicator {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00ff88;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

@keyframes turn-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.8); }
}

/* ========== CRICKET GAME STYLES ========== */

.cricket-board {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  display: grid;
  gap: 20px;
}

.cricket-numbers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

.cricket-number {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 170, 255, 0.2));
  color: #00ff88;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid #00ff88;
}

.cricket-player {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.cricket-player.active {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cricket-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cricket-player-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
}

.cricket-player-score {
  font-size: 2rem;
  font-weight: bold;
  color: #00aaff;
  background: rgba(0, 170, 255, 0.2);
  padding: 10px 20px;
  border-radius: 15px;
  border: 2px solid #00aaff;
}

.cricket-marks {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.cricket-mark {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #00aaff;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cricket-mark.closed {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 170, 255, 0.3));
  color: #00ff88;
  border-color: #00ff88;
  animation: mark-close 0.5s ease;
}

@keyframes mark-close {
  0% { transform: scale(0.8) rotate(-180deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ========== SNAKES AND LADDERS GAME STYLES ========== */

.snakes-board {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border: 3px solid rgba(0, 255, 136, 0.3);
}

.snakes-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}

.snakes-space {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 5px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.7rem;
}

.snakes-space:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.snake-space {
  background: rgba(255, 68, 68, 0.2);
  border-color: #ff4444;
}

.ladder-space {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
}

.finish-space {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.3), rgba(255, 0, 255, 0.3));
  border-color: #ffaa00;
  animation: finish-pulse 2s ease-in-out infinite;
}

.start-space {
  background: rgba(0, 170, 255, 0.2);
  border-color: #00aaff;
}

@keyframes finish-pulse {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
  }
  50% { 
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.8);
  }
}

.space-number {
  font-size: 0.9rem;
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 2px;
}

.space-icon {
  font-size: 0.6rem;
  text-align: center;
  line-height: 1;
  color: #999;
  margin-top: 2px;
}

.snake-space .space-icon {
  color: #ff4444;
}

.ladder-space .space-icon {
  color: #00ff88;
}

.space-players {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.player-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 8px currentColor;
  animation: player-bounce 0.5s ease;
}

@keyframes player-bounce {
  0% { transform: scale(0) translateY(-20px); opacity: 0; }
  50% { transform: scale(1.3) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.snakes-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.snakes-player-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.snakes-player-info.active {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  transform: scale(1.05);
}

.snakes-player-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 15px currentColor;
  flex-shrink: 0;
}

.snakes-player-details {
  flex: 1;
}

.snakes-player-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 5px;
}

.snakes-player-pos {
  font-size: 1.1rem;
  color: #00aaff;
  font-weight: 600;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
  .snakes-row {
    gap: 3px;
  }
  
  .snakes-space {
    font-size: 0.6rem;
    padding: 3px;
  }
  
  .space-number {
    font-size: 0.7rem;
  }
  
  .space-icon {
    font-size: 0.5rem;
  }
  
  .player-marker {
    width: 10px;
    height: 10px;
  }
}

