/* INTRO PANTALLA NEGRA */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* CONTENEDOR DEL SÍMBOLO */
.symbol-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
}

/* MITADES DEL SÍMBOLO */
.symbol {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
   transform: scale(0.8); /* 👈 IMPORTANTE */
}

/* CORTES */
.symbol.left {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.symbol.right {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* ANIMACIONES */
@keyframes fadeInSymbol {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splitLeft {
  to {
    transform: translateX(-120px);
    opacity: 0;
    filter: blur(2px);
  }
}

@keyframes splitRight {
  to {
    transform: translateX(120px);
    opacity: 0;
    filter: blur(2px);
  }
}

body {
  margin: 0;
  background: black;
  color: white;
  font-family: arial, ms gothic, comic sans;
  overflow: hidden;
}

#screen {
  height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

/* 🔝 BARRA SUPERIOR */
.top-bar {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 800px; /* 👈 controla la distancia entre logos */
}


.left, .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGOS */
.logo, .kicklogo {
  width: 42px;
  opacity: 0.9;
}

/* TEXTOS SUPERIORES */
.green{
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: -1px;
  margin-top: 15px;
}

.kicklegend {
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: -1px;
  margin-top: 5px;
}

/* LOGO DEL JUEGO */
.game-logo-wrapper {
  position: relative;
  width: 630px;
  height: 405px;
}

.game-logo {
  width: 100%;
  display: block;
}

.game-logo.base {
  position: relative;
  z-index: 1;
}

.game-logo.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity 3s ease;
}

/* SUBTÍTULO */
.subtitle {
  color: #aaa;
  font-size: 16px;
  font-family: ms gothic, arial, comic sans ms;
  letter-spacing: 0px;
}

/* BOTÓN */
#enterBtn {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 10px 30px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 80px;
  font-family: ms gothic, arial, comic sans;
  letter-spacing: -1px;
}

#enterBtn:hover {
  background: #b5e61d;
  border: 2px solid #b5e61d;
  color: black;
}

button {
  opacity: 0;
  animation: fadeInBtn 1s ease 1.5s forwards;
}

@keyframes fadeInBtn {
  to {
    opacity: 1;
  }
}