@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

html {
  overflow: hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #00f0ff;
}
.card-universe {
  text-align: left;
  backdrop-filter: blur(12px);
  background: rgba(0, 10, 30, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Clave: Fija el fondo */
}
.card-universe:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  background-attachment: fixed; /* Clave: Fija el fondo */
}
.card-universe h4 {
  margin-top: 0;
  font-size: 1.8rem;
}
.card-universe p {
  margin: 10px 0;
  font-size: 1rem;
}
.button-play {
  display: inline-block;
  background: linear-gradient(90deg, #00f0ff, #00ff85);
  border: none;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: bold;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px #00f0ff;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.button-play:hover {
  background: linear-gradient(90deg, #00ff85, #00f0ff);
  box-shadow: 0 0 20px #00f0ff;
}
footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  font-size: 0.8rem;
  color: #aaa;
}
@media only screen and (max-width: 760px) {

}

/* START COUNTER */
  /* Style for the counter number */
  .counter {
    font-size: 15px;
    font-weight: bold;
    color: #3a86ff;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
  }

  /* Style applied when the 'animate' class is added */
  .counter.animate {
    /* Change text color for animation */
    color: #8338ec;
  }

  /* Animation style for the plus sign when 'animate' class is present */
  .counter.animate::after {
    /* Full opacity to make the plus sign visible */
    opacity: 1;
    /* Reset translation to bring the plus sign into position */
    transform: translateX(0);
    /* Change color of the plus sign for animation */
    color: #8338ec;
  }
/* END COUNTER */

.player_info {
  width: fit-content;
  max-width: 270px;
  padding: 15px;
  border-radius: 15px;
  background: url(../images/block-content-green-line.png) repeat, rgba(0,0,0,0.8);
  text-shadow: 0px 0px 15px rgba(48, 119, 48, 1), 0px 0px 15px #145014;
  box-shadow: 0 0 10px #00f0ff;
}
.player_name {
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
	float: right;
	text-align: center;
	text-wrap: nowrap;
}

/* END STYLE INLINE */
.container-coutdown {
	position: absolute;
	width: 250px;
	height: 250px;
	right: 0;
	top: 0;
}
  
  /* SVG y Círculo de Fondo */
svg {
    position: absolute;
    top: 25px;
    left: 25px;
  }
  
  .background {
    fill: none;
    stroke: #2c2c2c;
    stroke-width: 15;
  }
  

/* Círculo principal con gradiente verdoso y resplandor suave */
/* Círculo principal con resplandor neón verde más suave */
.progress {
    fill: none;
    stroke: #00ffe5; /* Color verde neón */
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: 502.65;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    /* Resplandor suave y difuso */
    filter: drop-shadow(0 0 8px #00ffe5) drop-shadow(0 0 20px #00ffe5);
  }
  
  /* Ajustar también el resplandor del texto para que se vea neón verde suave */
  #timer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    user-select: none;
    color: #00ffe5;
    text-shadow: 0 0 8px #00ffe5, 0 0 20px #00ffe5;
  }
  
  /* Añadimos un gradiente verdoso */
  svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  #gradient {
    stop-color: #00ff7f;  /* Color verde neón */
    stop-opacity: 1;
  }
  
  #gradient2 {
    stop-color: #00e6b8; /* Un tono más oscuro de verde */
    stop-opacity: 1;
  }
  
  @keyframes glow {
    0% {
      filter: drop-shadow(0 0 10px #00ffe5) drop-shadow(0 0 20px #00ffe5) drop-shadow(0 0 30px #00ffe5);
    }
    50% {
      filter: drop-shadow(0 0 15px #ff00d4) drop-shadow(0 0 25px #ff00d4) drop-shadow(0 0 35px #ff00d4);
    }
    100% {
      filter: drop-shadow(0 0 10px #00ffe5) drop-shadow(0 0 20px #00ffe5) drop-shadow(0 0 30px #00ffe5);
    }
  }
  
  .progress {
    animation: glow 1.5s ease-in-out infinite alternate;
  }
  
  .explosion-bubble {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ffe5;
    border-radius: 50%;
    opacity: 0.8;
    animation: explode 1s forwards;
    pointer-events: none;
  }
  
  @keyframes explode {
    0% {
      transform: scale(1) translate(0, 0);
      opacity: 0.8;
    }
    100% {
      transform: scale(2) translate(var(--dx), var(--dy));
      opacity: 0;
    }
  }
  
  #flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }
  
  @keyframes flashEffect {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  .rayo {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #00ffe5, #ff00d4);
    opacity: 0.8;
    transform-origin: center top;
    animation: shoot 0.6s forwards;
    pointer-events: none;
    z-index: 999;
  }
  
  @keyframes shoot {
    0% {
      transform: scaleY(0.1) rotate(var(--angle)) translateY(0);
      opacity: 1;
    }
    100% {
      transform: scaleY(1.2) rotate(var(--angle)) translateY(-200px);
      opacity: 0;
    }
  }
  @keyframes float {
    0% {
      transform: scale(1.5);
      opacity: 0;
    }
    50% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(0.9);
      opacity: 1;
    }
  }
  
  #timer.animate {
    animation: float 0.6s ease;
  }

  /* Etiqueta de Nuevo universo */
  .new-label {
        position: absolute;
        top: 10px;
        right: 20px;
        background: linear-gradient(45deg, #39ff14, #ff073a, #00b3e6);
        color: white;
        font-weight: bold;
        font-size: 16px;
        padding: 8px 16px;
        border-radius: 30px;
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.8), 0 0 30px rgba(255, 7, 58, 0.8), 0 0 40px rgba(0, 179, 230, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        transform: scale(1.1);
        animation: pulse 1.5s infinite ease-in-out;
    }

  @keyframes pulse {
    0% {
      transform: scale(1.1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1.1);
    }
  }
  
  /* START NOTIFICATION */
/* 🔵 Fondo holográfico con partículas */
.notification-dropdown {
	display: none;
	position: absolute;
	right: 0;
	margin-top: 15px;
	width: 400px !important;
	background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(20,20,40,0.7));
	border: 2px solid rgba(0,255,255,0.5);
	border-radius: 12px;
	backdrop-filter: blur(15px) brightness(1.2);
	box-shadow: 0 0 15px rgba(0,255,255,0.7), 0 0 30px rgba(255,0,255,0.5);
	z-index: 1000;
	overflow: hidden;
	animation: holo-glow 3s infinite alternate;
	position: relative;
	max-height: 500px;
	height: 312px !important;
}
#dropdown {
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin !important;
}
/* Partículas flotantes */
.notification-dropdown::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://i.ibb.co/4Ncm5Pz/particles.png') repeat;
  opacity: 0.05;
  z-index: 1;
  animation: particlesMove 60s linear infinite;
}

/* ✉️ Notificación */
.notification-item {
	position: relative;
	padding: 14px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	color: #ccf2ff;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: background 0.3s, transform 0.3s;
	z-index: 2;
  width: 100%;
	height: 77px;
}

.notification-content {
	width: 100%;
	height: 100%;
	align-content: center;
}

.notification-trash {
  position: absolute;
  top: 12px;
  right: 13px;
  color: #42edf8;
}

.notification-item:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(5px);
}

/* 🔥 Botón campana cyberpunk */
.notification-button {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, #00ffe0, #8f00ff);
  border-radius: 15%;
  box-shadow: 0 0 20px #00ffe0, 0 0 40px #8f00ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  top: 16px;
  z-index: 99999;
}

.notification-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00ffe0, 0 0 60px #8f00ff;
}

/* 🔴 Contador notificaciones */
.notification-counter {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff007a;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: 5;
}

/* ✨ Animaciones generales */
@keyframes holo-glow {
  0% { box-shadow: 0 0 8px #00ffe0, 0 0 16px #ff00ff; }
  50% { box-shadow: 0 0 16px #00ffe0, 0 0 32px #ff00ff; }
  100% { box-shadow: 0 0 8px #00ffe0, 0 0 16px #ff00ff; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

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

/* Partículas movimiento */
@keyframes particlesMove {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

/* 🎛️ Glitch Animation */
@keyframes glitch {
  0% { transform: skew(0deg); }
  25% { transform: skew(5deg); }
  50% { transform: skew(-5deg); }
  75% { transform: skew(3deg); }
  100% { transform: skew(0deg); }
}

/* Mostrar dropdown con efecto glitch */
.show-dropdown {
  display: block;
  animation: fadeIn 0.5s ease-in-out, glitch 0.8s ease-in-out;
}
/* 💥 Animación de vibración para nuevas notificaciones */
@keyframes vibrate {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(2deg); }
  40% { transform: rotate(-2deg); }
  60% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* 💡 Glow especial en la campana */
@keyframes neonPulse {
  0% { box-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00ff; }
  50% { box-shadow: 0 0 20px #00ffe0, 0 0 40px #ff00ff; }
  100% { box-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00ff; }
}

@keyframes notification-delete {
  0% { right: 0px; }
  100% { right: -400px; }
}
/* Clase para activar vibración y glow */
.new-notification {
  animation: vibrate 0.5s ease-in-out, neonPulse 2s infinite alternate;
}
.delete-notification {
  animation: notification-delete 0.3s ease-in-out, neonPulse 2s infinite alternate;
}

/*  TOURS  */
.tour-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}
.tour-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.tour-tooltip.bottom::after {
	top: -15px;
	left: 20px;
	border: 8px solid transparent;
	border-bottom-color: rgb(87, 79, 79);
}

.tour-tooltip.top::after {
  bottom: -8px;
  left: 20px;
  border: 8px solid transparent;
  border-top-color: rgb(87, 79, 79);
}

.tour-tooltip.left::after {
  top: 20px;
  right: -8px;
  border: 8px solid transparent;
  border-left-color: rgb(87, 79, 79);
}

.tour-tooltip.right::after {
  top: 20px;
  left: -8px;
  border: 8px solid transparent;
  border-right-color: rgb(87, 79, 79);
}

.tour-next-btn {
  background: #00c853;
  color: white;
  border: none;
  padding: 6px 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.tour-overlay {
  /*
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  
  pointer-events: none;
  
  mask-image: none;
  -webkit-mask-image: none;
  */
  transition: all 0.3s ease;
}
.tour-highlight {
  position: absolute;
  border: 2px solid #00f0ff;
  border-radius: 10px;
  z-index: 9999;
  /*
  pointer-events: none;
  */
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff;
  background: transparent;
}

.tour-next-btn {
  background-color: #00f0ff;
  color: #000;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

.tour-next-btn:hover {
  background-color: #00d6e0;
}

@keyframes fadeInTooltip {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* STYLE GLITCH PARALLACK */

.parallax-dynamic {
  height: 100vh;
  /*background-image: url('https://i.ibb.co/TYDWwzz/cyberpunk-bg.jpg'); /* Reemplaza con tu imagen */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
/*
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #00ffe0;
  padding: 100px 30px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00ff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 25px #00ffe0, 0 0 50px #8f00ff;
}
*/