body {
  background-color: black;
  color: grey;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 5px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* tamaño un poco más grande para texto normal */
p, em, strong {
  font-size: 1.2em;
}

/* === LINKS ESTILO "IMPACTANTE" === */

a {
  display: inline-block;
  text-decoration: none;
  color: #b5aa82;
  font-size: inherit;
  font-family: inherit;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Estilo y animación del efecto */
a span {
  display: inline-block;
  transition: transform 0.2s, color 0.3s;
}

a:hover span {
  animation: glitchChar 0.1s infinite alternate;
}

@keyframes glitchChar {
  0%   { transform: translate(0,0);       color: #5c6a6f; }
  20%  { transform: translate(-1px,1px);  color: #80815f; }
  40%  { transform: translate(1px,-1px);  color: #5d6b58; }
  60%  { transform: translate(-1px,-1px); color: #c5c5b8; }
  80%  { transform: translate(1px,1px);   color: #7a6b4d; }
  100% { transform: translate(0,0);       color: #8a8f8d; }
}

/* === ESTILO "NEÓN" === */
.neon {
  color: #c5c5b8;
  text-shadow: 0 0 5px #5c6a6f, 0 0 10px #5c6a6f;
  transition: all 0.3s ease;
}

.neon:hover {
  color: #c5c5b8;
  text-shadow: 
    0 0 8px #80815f,
    0 0 16px #5d6b58,
    0 0 32px #7a6b4d,
    0 0 48px #8a8f8d;
  transform: scale(1.05);
}

/* === CUADRO 2X1 CENTRADO === */
.cuadro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 10px;
  width: 80vw;
  height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: none;
  margin-top: -20px; /* SUTIL: mueve TODO un poco hacia arriba */
}

.celda-inferior {
  grid-column: 1 / -1;
  background: rgba(0, 0, 0, 0.8); /* Ajusta la transparencia aquí */
  border-radius: 12px;
  box-sizing: border-box;
}

.celda {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 solid #23282B;
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7); /* Ajusta la transparencia */
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 0 10px #4f4f4f;
}

.celda-kekos {
  display: block;
  align-items: initial;
  justify-content: initial;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5); /* Negro con 50% de transparencia */
  border-radius: 12px;
}

#kekoFrame {
  transition: opacity 0.5s;
  display: block;
  border: none;
}


/* ========== REPRODUCTOR DE RADIO CLAUDE 2.0 ========== */

.radio-player {
  background: transparent;
  border-radius: 12px;
  padding: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

/* 🌟 Borde metálico con box-shadow 🌟 */
.radio-player::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  z-index: -1;
  box-shadow: 
    /* Borde metálico multicapa */
    0 0 0 1px #a0a0a033,
    0 0 0 2px #d4d4d480,
    0 0 0 3px #ffffff;
  pointer-events: none;
}



/* Botón de play/pause (imagen de radio) */
.btn-radio-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    height: 180px; /* Ajusta según necesites */
    width: auto;
    transition: transform 0.3s;
}

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

.btn-radio-toggle:active {
    transform: scale(0.95);
}

.btn-radio-toggle img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Animación de vibración cada 5 segundos */
@keyframes vibrar {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    50% { transform: translateX(0); }
}

.btn-radio-toggle.reproduciendo img {
    animation: vibrar 0.5s ease-in-out;
    animation-iteration-count: 1;
}

/* Contenedor de controles (parte derecha) */
.player-controls-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100px; /* Altura fija para evitar desplazamiento */
}

/* Texto de estado */
.station-status {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 5px;
}

/* Controles inferiores */
.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón de mute */
.btn-mute {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.btn-mute:hover {
    transform: scale(1.1);
}

.btn-mute:active {
    transform: scale(0.9);
}

.btn-mute img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Control de volumen */
.volume-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Slider de volumen */
.volume-slider {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #4a4a4a;
    border-radius: 4px;
    position: relative;
}

/* Thumb del slider (Chrome, Safari, Edge) */
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-image: url(reproductor_iconos/spider_icon.png); /* REEMPLAZA CON TU RUTA */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    transition: transform 0.3s;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.volume-slider::-webkit-slider-thumb:active {
  transform: scale(0.9);
}

/* Thumb del slider (Firefox) */
.volume-slider::-moz-range-thumb {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-image: url(reproductor_iconos/spider_icon.png); /* REEMPLAZA CON TU RUTA */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}

/* Porcentaje de volumen */
.volume-value {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    min-width: 45px;
    text-align: right;
}

/* Loading indicator */
.loading {
    display: none;
    color: #667eea;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.loading.active {
    display: block;
}

/* Ondas de sonido DESACTIVADO*/
.equalizer {
    display: none;
    position: relative;
    width: 60px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.equalizer.active {
    display: flex;
}

.sound-wave {
    width: 3px;
    height: 8px;
    background: #666666;
    border-radius: 2px;
    opacity: 0;
    animation: wave-fade 1.5s ease-in-out infinite;
}

.sound-wave:nth-child(1) { animation-delay: 0s; height: 6px; }
.sound-wave:nth-child(2) { animation-delay: 0.2s; height: 10px; }
.sound-wave:nth-child(3) { animation-delay: 0.4s; height: 14px; }
.sound-wave:nth-child(4) { animation-delay: 0.6s; height: 10px; }
.sound-wave:nth-child(5) { animation-delay: 0.8s; height: 6px; }

@keyframes wave-fade {
    0%, 100% { opacity: 0; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Responsive: en pantallas pequeñas */
@media (max-width: 480px) {
    .radio-player {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-radio-toggle {
        height: 100px;
    }
}

/* Ajustes para pantallas de PC */
@media (min-width: 768px) {
    .radio-player {
        justify-content: center; /* Centra todo el contenido */
        gap: 40px; /* Más espacio entre la radio y los controles */
    }
    
    .volume-control {
        justify-content: center; /* Centra mute + slider + porcentaje como unidad */
    }
    
    .volume-slider {
        max-width: 400px; /* Ajusta este valor según prefieras */
    }
}

/* === FONDO ANIMADO - OPCIÓN 2: Rotado Horizontal === */
body {
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('otros_recursos/bobba02.png');
  background-size: 120px 120px;
  background-repeat: repeat;
  z-index: -1;
  transform: rotate(45deg);
  animation: movimientoHorizontal 20s linear infinite;
}

@keyframes movimientoHorizontal {
  0% { transform: rotate(45deg) translateX(0); }
  100% { transform: rotate(45deg) translateX(-120px); }
}

/* Desactivar animación en dispositivos móviles */
@media (max-width: 768px) {
  body::before {
    animation: none !important;
  }
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .cuadro {
    margin-top: -30px; /* Un poco más arriba en móviles */
  }
}


/* === MENÚ LATERAL DESPLEGABLE === */

/* ========== LA PESTAÑA (botón que abre el menú) ========== */
.menu-tab {
  position: fixed;          /* Siempre visible, no se mueve con scroll */
  right: 0;                 /* Pegado al borde derecho */
  top: 50%;                 /* Centrado verticalmente */
  transform: translateY(-50%); /* Centra perfectamente */
  width: 50px;              /* ← ANCHO de la pestaña */
  height: 60px;             /* ← ALTO de la pestaña */
  background: rgba(0, 0, 0, 0.8); /* Fondo negro semi-transparente */
  border-radius: 12px 0 0 12px;   /* Bordes redondeados solo a la izquierda */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;          /* Manito al pasar el mouse */
  z-index: 1000;           /* Siempre arriba de todo */
  transition: all 0.3s;    /* Animación suave */
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5); /* Sombra */
}

/* Cuando pasás el mouse por la pestaña */
.menu-tab:hover {
  background: rgba(0, 0, 0, 0.95); /* Más oscuro */
  width: 55px;              /* ← Se agranda 5px */
}

/* El ícono DENTRO de la pestaña */
.menu-tab img {
  width: 30px;              /* ← TAMAÑO del ícono de la pestaña */
  height: 30px;
  object-fit: contain;      /* No se deforma */
}

/* ========== EL PANEL (menú desplegable) ========== */
.menu-panel {
  position: fixed;
  right: -120px;            /* ← Oculto fuera de la pantalla (negativo) */
  top: 50%;
  transform: translateY(-50%);
  width: 100px;             /* ← ANCHO TOTAL del panel desplegado */
  background: rgba(0, 0, 0, 0.9); /* Fondo negro casi opaco */
  border-radius: 12px 0 0 12px;
  padding: 20px 10px;       /* ← ESPACIOS: 20px arriba/abajo, 10px izq/der */
  z-index: 999;
  transition: right 0.4s ease; /* Animación de deslizado */
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
  max-height: 90vh;         /* ← ALTURA MÁXIMA: 90% de la ventana */
  overflow-y: auto;         /* Scroll vertical si no cabe */
  overflow-x: hidden;       /* Sin scroll horizontal */
}

/* Cuando el menú está abierto */
.menu-panel.open {
  right: 0;                 /* Se mueve a la derecha (visible) */
}

/* ⚠️ REGLA CRÍTICA: right y width deben coincidir */
/* Si width es 100px, right debe ser -100px */
/* Si cambias width a 120px, cambía right a -120px */

/* ========== Scrollbar del menú (si hay muchos botones) ========== */
.menu-panel::-webkit-scrollbar {
  width: 4px;               /* ← GROSOR de la barra de scroll */
}

.menu-panel::-webkit-scrollbar-track {
  background: transparent;  /* Fondo invisible */
}

.menu-panel::-webkit-scrollbar-thumb {
  background: rgba(127, 120, 109, 0.5); /* Color de la barrita */
  border-radius: 2px;
}

.menu-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 120, 109, 0.7); /* Más oscuro al hover */
}

/* ========== Título "OPCIONES" (está oculto) ========== */
.menu-title {
  display: none;            /* ← Oculto, no se ve */
}

/* ========== CADA BOTÓN del menú ========== */
.menu-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;            /* ← ESPACIO ALREDEDOR del ícono */
  margin-bottom: 15px;      /* ← SEPARACIÓN ENTRE botones */
  background: rgba(255, 255, 255, 0.05); /* Fondo muy tenue */
  border-radius: 8px;       /* Esquinas redondeadas */
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
}

/* Cuando pasás el mouse por un botón */
.menu-option:hover {
  background: rgba(255, 255, 255, 0.15); /* Más claro */
  border-color: #7f786d;    /* Borde visible */
  transform: scale(1.1);    /* ← Se AGRANDA un 10% */
}

/* Los ÍCONOS dentro de cada botón */
.menu-option img {
  width: 45px;              /* ← TAMAÑO BASE de los íconos */
  height: 45px;
  object-fit: contain;
}

/* ========== TOOLTIP (texto que aparece al pasar el mouse) ========== */
.menu-tooltip {
  position: fixed;
  right: 150px;             /* ← DISTANCIA desde el borde derecho */
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;          /* ← TAMAÑO de letra del tooltip */
  letter-spacing: 1px;
  padding: 12px 20px;       /* ← ESPACIOS internos del tooltip */
  border-radius: 8px;
  white-space: nowrap;      /* Texto en una línea */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  pointer-events: none;     /* No se puede hacer click */
  opacity: 0;               /* Invisible por defecto */
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 999;
}

/* Cuando el tooltip está activo */
.menu-tooltip.active {
  opacity: 1;               /* Visible */
  visibility: visible;
}

/* Tooltip en modo claro */
body.light-mode .menu-tooltip {
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ajustes MENÚ para pantallas pequeñas */
@media (max-height: 750px) {
  .menu-option {
    padding: 10px;          /* ← REDUCE el espacio alrededor (era 12px) */
    margin-bottom: 12px;    /* ← REDUCE separación entre botones (era 15px) */
  }
  
  .menu-option img {
    width: 45px;            /* ← mantener la proporción */
    height: 45px;
  }
}

/* Ajustes MENÚ para monitores muy pequeños */
@media (max-height: 600px) {
  .menu-option {
    padding: 8px;           /* ← AÚN MÁS PEQUEÑO el espacio alrededor */
    margin-bottom: 10px;    /* ← MENOS separación entre botones */
  }
  
  .menu-option img {
    width: 36px;            /* ← Íconos de 36px */
    height: 36px;
  }
  
  .menu-panel {
    padding: 15px 10px;     /* ← REDUCE el padding del panel entero */
  }
}

/* Ajustes MENÚ para monitores más pequeños aún*/
@media (max-height: 500px) {
  .menu-option {
    padding: 6px;           /* ← MÍNIMO espacio alrededor */
    margin-bottom: 8px;     /* ← MÍNIMO espacio entre botones */
  }
  
  .menu-option img {
    width: 32px;            /* ← Íconos MÁS PEQUEÑOS (32px es el mínimo) */
    height: 32px;
  }
  
  .menu-panel {
    padding: 12px 8px;      /* ← Panel con mínimo padding */
  }
}


/* === MODO CLARO === */
body.light-mode {
  background-color: white;
  color: #333333;
}

body.light-mode::before {
  background-image: url('otros_recursos/bobba03.png');
}

/* Textos del reproductor */
body.light-mode .station-status {
  color: #333333;
}

body.light-mode .volume-value {
  color: #333333;
}

/* Celdas */
body.light-mode .celda,
body.light-mode .celda-kekos,
body.light-mode .celda-inferior {
  background: rgba(255, 255, 255, 0.7);
  color: #333333;
}

/* Nombre del keko */
body.light-mode #nombreKeko {
  color: #333333;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Input de Habbo */
body.light-mode #habboInput {
  background: rgba(255, 255, 255, 0.8);
  border-color: #999999;
  color: #333333;
}

body.light-mode #habboInput::placeholder {
  color: #666666;
}

/* Borde metálico del reproductor en modo claro */
body.light-mode .radio-player::before {
  box-shadow: 
    0 0 0 1px #d4d4d4,
    0 0 0 2px #ffffff,
    0 0 0 3px #e0e0e0,
    0 0 0 4px #f0f0f0,
    0 0 0 5px #cccccc,
    0 0 15px 5px rgba(0, 0, 0, 0.1),
    0 0 25px 8px rgba(0, 0, 0, 0.05);
}

/* === VENTANA DE CRÉDITOS CON IMAGEN === */
.creditos-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creditos-overlay.active {
  display: flex;
  opacity: 1;
}

.creditos-window {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.creditos-window img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 8px;
}

.creditos-close {
  position: absolute;
  top: 11px; /* Cambio: de -15px a 15px (más abajo) */
  right: 27px; /* Cambio: de -15px a 15px (más a la izquierda) */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s; /* Solo transform, sin rotación */
  z-index: 10001;
}

.creditos-close img {
  width: 26px;
  height: 26px;
}

.creditos-close:hover {
  transform: scale(1.15); /* Solo agranda, sin rotar */
}

.creditos-close:active {
  transform: scale(0.9); /* Se achica al hacer click */
}

/* Animación de entrada */
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Ocultar en móviles muy pequeños */
@media (max-width: 480px) {
  .creditos-window {
    max-width: 95%;
  }
}

/* Contenedor de la imagen con botones */
.creditos-imagen-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.creditos-imagen-container img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

/* Botones invisibles superpuestos */
.creditos-boton {
  position: absolute;
  cursor: pointer;
  background: transparent;
  /* border: 2px solid red; */ /* Descomenta esto para ver dónde están los botones mientras ajustás */
  transition: background 0.2s;
}

/* Efecto hover sutil (opcional) */
.creditos-boton:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === LIBRO DE VISITAS === */
.guestbook-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guestbook-overlay.active {
  display: flex;
  opacity: 1;
}

.guestbook-window {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #7f786d;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Pantalla 1: Input de nombre */
.guestbook-step-name {
  text-align: center;
}

.guestbook-step-name h2 {
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.guestbook-input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #7f786d;
  border-radius: 8px;
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  letter-spacing: 1px;
}

.guestbook-input:focus {
  border-color: #c5c5b8;
  background: rgba(255, 255, 255, 0.1);
}

.guestbook-input::placeholder {
  color: rgba(197, 197, 184, 0.5);
}

.guestbook-hint {
  color: rgba(197, 197, 184, 0.6);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* Pantalla 2: Avatar + mensaje */
.guestbook-step-message {
  display: none;
  text-align: center;
}

.guestbook-avatar {
  width: 64px;
  height: 110px;
  margin: 0 auto 20px;
}

.guestbook-avatar img {
  width: 100%;
  height: auto;
}

.guestbook-textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #7f786d;
  border-radius: 8px;
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  outline: none;
  resize: vertical;
  letter-spacing: 1px;
}

.guestbook-textarea:focus {
  border-color: #c5c5b8;
  background: rgba(255, 255, 255, 0.1);
}

.guestbook-char-count {
  color: rgba(197, 197, 184, 0.6);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  margin-top: 5px;
  text-align: right;
}

/* Pantalla 3: Lista de mensajes */
.guestbook-step-list {
  display: none;
}

.guestbook-list-header {
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
}

.guestbook-messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
}

.guestbook-message {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(127, 120, 109, 0.3);
}

.guestbook-message-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 80px;
}

.guestbook-message-avatar img {
  width: 100%;
  height: auto;
}

.guestbook-message-content {
  flex: 1;
}

.guestbook-message-name {
  color: #c5c5b8;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.guestbook-message-text {
  color: rgba(197, 197, 184, 0.8);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  word-wrap: break-word;
}

.guestbook-empty {
  text-align: center;
  color: rgba(197, 197, 184, 0.5);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  padding: 40px 20px;
  letter-spacing: 1px;
}

/* Scrollbar personalizado */
.guestbook-messages::-webkit-scrollbar {
  width: 8px;
}

.guestbook-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.guestbook-messages::-webkit-scrollbar-thumb {
  background: rgba(127, 120, 109, 0.5);
  border-radius: 4px;
}

.guestbook-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 120, 109, 0.7);
}

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

/* ===== TEMA REGGAE (Ras.Gustavo) ===== */
body.reggae-mode::before {
  background-image: url('otros_recursos/chala05.png') !important;
}

body.reggae-mode .cuadro {
  background: transparent;
}

body.reggae-mode .celda {
  background: rgba(9, 43, 19, 0.2);
  border: 2px solid #072505;
  box-shadow: 0 0 15px rgba(217, 190, 9, 0.4);
}

body.reggae-mode .celda-inferior {
  background: rgba(2, 40, 0, 0.3);
  box-shadow: 0 0 15px rgba(217, 190, 9, 0.4);
}

body.reggae-mode .station-status,
body.reggae-mode .volume-value,
body.reggae-mode #nombreKeko {
  color: #c5e8b7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

body.reggae-mode .menu-panel {
  background: linear-gradient(135deg, rgba(25, 55, 35, 0.55) 0%, rgba(35, 65, 45, 0.55) 100%);
  border-left: 3px solid #5a8c69;
}

body.reggae-mode .menu-title {
  color: #c5e8b7;
  border-bottom: 2px solid #5a8c69;
}

body.reggae-mode .menu-option {
  background: rgba(30, 60, 40, 0.6);
  border: 1px solid #4a7c59;
}

body.reggae-mode .menu-option:hover {
  background: rgba(40, 80, 50, 0.8);
  border-color: #6aac79;
  box-shadow: 0 0 15px rgba(106, 172, 121, 0.5);
}

body.reggae-mode .menu-tooltip {
  background: rgba(30, 60, 40, 0.95);
  color: #c5e8b7;
  border: 1px solid #5a8c69;
}