body,
html {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background-color: #1a0f08; /* Fondo oscuro para evitar parpadeos blancos */
}

#game-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #1a0f08; /* Asegura consistencia en el contenedor */
}

.fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#381e0e, #000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: white;
  font-family: 'Papyrus', 'Cinzel', serif;
}

#introScene,
#scene1,
#scene2,
#gameCanvas {
  display: none;
}

#menu {
  display: flex;
}

#gameTitle {
  font-size: 3em;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-shadow: 2px 2px #000;
}

.menu-options button {
  font-size: 1.5em;
  padding: 10px 30px;
  margin: 10px;
  background-color: #9c3d0f;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

.menu-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

#gameTitle {
  font-size: 2.5em;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 2px 2px #000;
}

.logout-btn {
  background-color: #a62a2a !important;
}

@media (max-width: 600px) {
  #gameTitle {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .menu-options button {
    font-size: 1em;
    padding: 10px 20px;
    margin: 5px;
  }
}

.controls {
  margin-top: 30px;
  font-size: 1.2em;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

#menuControls {
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

#menuControls h3 {
  margin-top: 0;
  color: #ffd700;
  border-bottom: 1px solid #ffd700;
  padding-bottom: 5px;
}

#currentUserDisplay {
  font-weight: bold;
  color: #4CAF50;
  margin-bottom: 10px;
}

.controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

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

  #menuControls {
    padding: 10px;
    font-size: 0.8em;
  }
}


#background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('Resources/Backgrounds/Background1.png');
  background-size: cover;
  background-position: bottom;
  z-index: 0;
  transition: background-image 0.5s ease;
}

#stage {
  position: relative;
  width: 2000px;
  height: 100%;
  margin: 0 auto;
}

.character {
  position: absolute;
  width: 180px;
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  bottom: 100px;
  z-index: 2;
}

.enemy {
  position: absolute;
  width: 180px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: transparent;
  bottom: 100px;
  z-index: 2;
}

#puma {
  height: 100px;
  bottom: 100px;
  background-position: bottom;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.puma-facing-right {
  transform: scaleX(-1);
}

.puma-facing-left {
  transform: none;
}

#enemy2 {
  width: 250px;
  height: 150px;
}

#player {
  width: 100px;
  height: 150px;
  bottom: 90px;
}

#player[style*="Player_Run.png"],
#player[style*="Player_Jump.png"],
#player[style*="Player_Fall.png"],
#player[style*="Player_atk.png"] {
  width: 140px;
  height: 160px;
}

#floor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2000px;
  height: 100px;
  background-size: repeat;
  background-position: bottom;
  z-index: 1;
}



.scene-trigger {
  position: absolute;
  width: 200px;
  height: 320px;
  background-image: url('Resources/PTrigger.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  bottom: 20px;
  z-index: 2;
}

.npc-label {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 8px;
  font-size: 14px;
  border-radius: 5px;
  font-family: sans-serif;
}


#dialogueBox {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 18px;
  border: 2px solid white;
}

#gameOverScreen {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  z-index: 99;
  border: 5px solid yellow;
  box-shadow: 0 0 20px yellow;
  animation: fadeIn 1s ease-in-out;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 98;
  pointer-events: none;
  transition: background 2s ease-in-out;
}

/* Animación para oscurecer la pantalla */
@keyframes fadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }

  to {
    background: rgba(0, 0, 0, 0.85);
  }
}

#centerMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(210, 166, 121, 0.95);
  color: #000;
  padding: 30px 50px;
  border-radius: 15px;
  text-align: center;
  font-size: 26px;
  font-family: 'Cinzel', 'Papyrus', serif;
  border: 4px solid #a66e00;
  z-index: 10001;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
  animation: msgPopIn 0.3s ease-out;
}

#centerMessage.msg-correct {
  background: rgba(76, 175, 80, 0.95);
  color: #fff;
  border-color: #2e7d32;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.5), 4px 4px 15px rgba(0, 0, 0, 0.5);
}

#centerMessage.msg-incorrect {
  background: rgba(198, 40, 40, 0.95);
  color: #fff;
  border-color: #b71c1c;
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.5), 4px 4px 15px rgba(0, 0, 0, 0.5);
  animation: msgPopIn 0.3s ease-out, msgShake 0.4s ease-out 0.3s;
}

@keyframes msgPopIn {
  from { transform: translate(-50%, -50%) scale(0.7); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes msgShake {
  0%, 100% { transform: translate(-50%, -50%); }
  20% { transform: translate(calc(-50% - 8px), -50%); }
  40% { transform: translate(calc(-50% + 8px), -50%); }
  60% { transform: translate(calc(-50% - 4px), -50%); }
  80% { transform: translate(calc(-50% + 4px), -50%); }
}

#centerMessageText {
  margin: 0;
  font-weight: bold;
}


#life-bar {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  background: #4b2f17;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#life-bar img {
  width: 150px;
  max-width: 30vw;
  /* Responsivo en móviles */
  height: auto;
}

.enemy.idle {
  background-image: url('Resources/Mobs/panther_idle.png');
}

.enemy.attacking {
  background-image: url('Resources/Mobs/panther_atk.png');
}

#introScene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'serif';
  font-size: 24px;
  padding: 40px;
  z-index: 1000;
  text-align: center;
}

#introText {
  max-width: 800px;
  line-height: 1.6;
}

#continuePrompt {
  margin-top: 40px;
  font-size: 20px;
  color: #bbb;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.platform {
  position: absolute;
  background: #8B5E3C;
  border: 2px solid #4e2e1f;
  border-radius: 5px;
  z-index: 3;
  bottom: 100px;
}

.platform.green {
  position: absolute;
  background: #195704c0;
  border: 2px solid #02440a;
  border-radius: 5px;
  z-index: 3;
  bottom: 100px;
}

.blocker-wall {
  position: absolute;
  background-color: #523521;
  border: 2px solid #3a2416;
  z-index: 3;
}

.blocker {
  position: absolute;
  width: 50px;
  height: 200px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 3;
}

.companion {
  position: absolute;
  width: 80px;
  height: 100px;
  background-size: cover;
}

#ayllu {
  width: 150px;
  height: 150px;
  background-size: contain;
}

/* Estilos para el águila */
.boss {
  width: 200px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  position: absolute;
  bottom: auto;
  top: auto;
}

.boss[style*="eagle_burnout.png"] {
  width: 200px !important;
  height: 100px !important;
}

#eagle-life-bar {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: #4b2f17;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: left;
  justify-content: center;
}

#eagle-life-bar img {
  width: 450px;
  max-width: 90vw;
  /* Se adapta a pantallas pequeñas */
  height: auto;
}


/* Items de curación */
.health-item {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  transition: all 0.3s ease;
  animation: float 2s infinite ease-in-out;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Efecto de daño */
.eagle-damage {
  animation: eagleHit 0.3s;
}

@keyframes eagleHit {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(2);
  }

  100% {
    filter: brightness(1);
  }
}

.feather-projectile {
  width: 66px;
  height: 60px;
  background-size: contain;
  background-image: url('Resources/First_Boss/eagle_atk_mag.png');
  background-repeat: no-repeat;
  position: absolute;
  z-index: 5;
  transition: transform 0.1s linear;
}


#quiz-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cuando se muestra, usar flex */
#quiz-container[style*="display: block"], 
#quiz-container.show {
  display: flex !important;
}

#quiz-box {
  background-color: #d2a679;
  border: 5px solid #a66e00;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  font-family: 'serif';
  border-radius: 12px;
}

#quiz-question {
  font-size: 18px;
  margin-bottom: 15px;
}

#quiz-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quiz-option {
  padding: 8px;
  margin: 5px 0;
  background-color: #f2e1c1;
  border-radius: 6px;
  cursor: default;
  pointer-events: none;
}

.quiz-option.selected {
  background-color: #ffcc66;
  font-weight: bold;
}

.quiz-keyboard-hint {
  font-size: 12px;
  color: #7a5a2e;
  margin-top: 10px;
  font-style: italic;
}

/* === Barra de Sabiduría === */
#wisdom-bar {
  display: none;
}

#wisdom-label {
  margin-right: 6px;
}

#wisdom-points {
  font-weight: bold;
}

.platform.moving {
  animation: movePlatform 3s infinite alternate ease-in-out;
}

@keyframes movePlatform {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50px);
  }
}

#runa4 {
  left: 1390px;
  bottom: 250px;
  background-image: url('Resources/Items/Runa02.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

#runa1 {
  left: 700px;
  bottom: 180px;
  background-image: url('Resources/Items/Runa01.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

#runa2 {
  left: 930px;
  bottom: 430px;
  background-image: url('Resources/Items/Runa02.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

#runa3 {
  left: 1220px;
  bottom: 360px;
  background-image: url('Resources/Items/Runa03.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

#runa5 {
  left: 1300px;
  bottom: 250px;
  background-image: url('Resources/Items/Runa03.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}

#runa6 {
  left: 1339px;
  bottom: 190px;
  background-image: url('Resources/Items/Runa04.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}

#runa7 {
  left: 1420px;
  bottom: 250px;
  background-image: url('Resources/Items/Runa01.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}

#runa8 {
  left: 1320px;
  bottom: 490px;
  background-image: url('Resources/Items/Runa02.png');
  width: 60px;
  height: 60px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}

.collectible {
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}

/* Estilo base para todas las arenas movedizas */
.quicksand {
  position: absolute;
  background: rgba(139, 69, 19, 0.6);
  border: 2px dashed rgba(100, 40, 0, 0.8);
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
  z-index: 6;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(139, 69, 19, 0.4);
}

/* Escena 4 */
#quicksand4 {
  left: 330px;
  bottom: 0;
  width: 1250px;
  height: 120px;
}

/* Escena 5 */
#quicksand5 {
  left: 350px;
  bottom: 0;
  width: 1250px;
  height: 120px;
}

/* Contenedor del mensaje y Ayllu flotando */
#ayllu-warning {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2000;
  align-items: center;
  gap: 15px;
}

/* Ayllu flotando */
#ayllu4-float {
  width: 100px;
  height: 120px;
  background-image: url('Resources/Totems/Ayllu_idle.png');
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 2s infinite ease-in-out;
}

#ayllu4-text {
  background: rgba(0, 0, 0, 0.7);
  color: #ffd700;
  font-family: 'Cinzel', 'Papyrus', serif;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #a66e00;
  max-width: 90vw;
  /* Responsivo */
  text-align: center;
}


/* === Quiz de Runa === */
#runa-quiz-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cuando se muestra, usar flex */
#runa-quiz-container[style*="display: block"], 
#runa-quiz-container.show {
  display: flex !important;
}

#runa-quiz-box {
  background: #d2a679;
  border: 5px solid #a66e00;
  padding: 20px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Cinzel', serif;
}

#runa-quiz-question {
  font-size: 18px;
  margin-bottom: 15px;
}

#runa-quiz-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.runa-option {
  background: #f2e1c1;
  margin: 5px 0;
  padding: 8px;
  border-radius: 6px;
  cursor: default;
  pointer-events: none;
}

.runa-option.selected {
  background: #ffcc66;
  font-weight: bold;
}

.runa-option.correct {
  background: rgba(76, 175, 80, 0.95);
  color: #fff;
  font-weight: bold;
}

.runa-option.incorrect {
  background: rgba(198, 40, 40, 0.95);
  color: #fff;
  font-weight: bold;
}

.spanish-enemy {
  position: absolute;
  width: 80px;
  height: 120px;
  background-image: url('Resources/Mobs/conquest_idle.png');
  background-size: cover;
  transition: transform 0.2s linear;
  z-index: 5;
}

.spanish-enemy.flipped {
  transform: scaleX(-1);
}

.projectile {
  position: absolute;
  width: 30px;
  height: 10px;
  background-image: url('Resources/Mobs/Bullet.png');
  background-size: cover;
  z-index: 4;
  /* Ajuste para visibilidad y bottom */
  bottom: 0;
  /* por defecto, será sobrescrito por JS */
  left: 0;
}

/* ---------- Modal / formulario de guardado de score (migrado desde HTML) ---------- */
#saveScoreModal {
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

#saveScoreBox {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: left;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

#saveScoreBox h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

#saveScoreBox input {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#saveScoreBox .row {
  display: flex;
  gap: 8px;
}

#saveScoreBox button {
  padding: 8px 12px;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 6px;
  border: none;
  background: #2b7cff;
  color: #fff;
  font-weight: 600;
}

#modalCancel {
  background: #ccc;
  color: #111;
}

/* Mensaje de estado */
#saveScoreMessage {
  font-size: 14px;
  margin-top: 6px;
  color: #222;
}

/* Asegurar visibilidad en dispositivos móviles */

/* ---------- Pantalla de Autenticación ---------- */
.auth-card {
  background: #d2a679;
  border: 5px solid #a66e00;
  padding: 20px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  text-align: left;
  font-family: 'Cinzel', 'Papyrus', serif;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
  color: #2c1e0f;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.auth-tabs button {
  flex: 1;
  padding: 8px 12px;
  background-color: #9c3d0f;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.auth-tabs button.active {
  background-color: #a66e00;
}

.auth-form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
}

.auth-input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #a66e00;
  background: #f2e1c1;
  font-size: 16px;
  box-sizing: border-box;
}

.auth-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.auth-actions .primary {
  font-size: 1em;
  padding: 10px 24px;
  margin: 6px 0;
  background-color: #9c3d0f;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

.auth-message {
  margin-top: 8px;
  color: #000;
  background: rgba(0, 0, 0, 0.1);
  padding: 6px 8px;
  border-radius: 6px;
  min-height: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 15px 0;
  color: #4b2f17;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #a66e00;
}

.auth-divider:not(:empty)::before {
  margin-right: .25em;
}

.auth-divider:not(:empty)::after {
  margin-left: .25em;
}

.google-btn {
  width: 100%;
  padding: 10px;
  background-color: white;
  color: #757575;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.google-btn:hover {
  background-color: #f7f7f7;
}

/* Overrides para botones de rol dentro de auth card (fondo claro) */
.auth-card .role-selection p {
  color: #4b2f17;
}

.auth-card .role-btn {
  background: rgba(44, 30, 15, 0.85);
  border-color: #a66e00;
}

.auth-card .role-btn:hover {
  background: rgba(44, 30, 15, 0.95);
  box-shadow: 0 5px 15px rgba(166, 110, 0, 0.3);
}

.auth-card .role-btn.selected {
  background: rgba(156, 61, 15, 0.9);
  border-color: #ffd700;
}

.auth-card #selectedRoleDisplay {
  color: #4b2f17;
  background: rgba(0, 0, 0, 0.08);
  border-color: #a66e00;
}

/* ---------- Panel de Información del Jugador ---------- */
.player-info-card {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #a66e00;
  border-radius: 15px;
  padding: 15px 25px;
  margin-bottom: 25px;
  min-width: 300px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.player-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ffd700;
  overflow: hidden;
  margin-right: 20px;
  background: #f2e1c1;
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-details h3 {
  margin: 0;
  color: #ffd700;
  font-size: 1.6em;
  text-shadow: 2px 2px 4px #000;
}

.player-status-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.8em;
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  padding: 2px 10px;
  border-radius: 10px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Estilos personalizados movidos a interface.css */
