/* Reset y base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;

}

@font-face {
    font-family: fantasy;
    src: url(fuente/future_rot/Futurot.ttf);

}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #414141;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

#body-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5; /* Ajusta la opacidad según tu preferencia */
    pointer-events: none; /* El video no interfiere con los clics */
    background: #000;
}
header {
    background-image: url(imagen/navegador.jpg);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

[id] {
    scroll-margin-top: 1px;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.logo img {
    height: 3.5rem;
    width: auto;
    filter: drop-shadow(2px 2px 2px #ffffff);
    transition: 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(2px 2px 2px #000000);
    transform: scale(1.05);
}

.nav-principal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-principal li {
    position: relative;
}

.nav-principal li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem;
    display: block;
    font-size: 1.1rem;
    filter: drop-shadow(2px 2px 2px #000);
    transition: 0.3s ease;
}

.nav-principal li a:hover {
    background-color: #666;
    filter: drop-shadow(2px 2px 2px #000000);
    transform: scale(1.1);
    border-radius: 10px;
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 8px;
    list-style: none;
    z-index: 999;
}

.sub-nav li a {
    padding: 0.75rem;
    color: #000;
    font-weight: normal;
    filter: drop-shadow(2px 2px 2px #000);
    font-size: 1.1rem;
}

.nav-principal li:hover .sub-nav {
    display: block;
}

/* Botón especial en el menú */
.nav-principal li .btn {
    background-color: #ffff00;
    color: #222;
    border-radius: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    filter: none !important;
    transition: 0.3s ease;
}

.nav-principal li .btn:hover {
    background-color: #ffcc00;
    color: #000;
    transform: scale(1.08) rotate(-10deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    filter: none !important;
}

#hero {
    position: relative;
    min-width: 37.5rem;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100vh;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1rem;
    font-weight: bold;
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 2px #000);
    font-family: fantasy;
}


.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(2px 2px 2px #000);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-content p:hover {
    transform: scale(1.05);
    cursor: crosshair;
}

.about-background {
    margin: 6.25rem 6.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3.25rem 0;
    gap: 3.125rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 12px #000;
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: url(imagen/baner2.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    filter: blur(5px);
    z-index: 1;
}

.about-text,
.about-img {
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 37.5rem;
    font-weight: bold;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
    filter: drop-shadow(2px 2px 2px #fff);
    font-weight: bold;
}

.about-text p {
    font-size: 1.2rem;
    color: #000;
    filter: drop-shadow(2px 2px 2px #fff);
}

.about-img img {
    width: 100%;
    height: 20rem;
    transition: 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 2px #000);
    filter: brightness(0.9);

}

.game-modes {
    margin: 5rem 5rem;
    text-align: center;
    padding: 3rem 0;
    border-radius: 10px;
    box-shadow: 4px 4px 4px #000;


}

.game-modes h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    filter: drop-shadow(4px 4px 4px #000);
    color: #fff;
}

.modes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem;
    gap: 3rem;
}

.mode {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px #000;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 1.5rem;
    transition: 0.3s ease;
}

.mode img {
    max-width: 100%;
    height: 200px;
    filter: drop-shadow(2px 2px 2px #000);
    object-fit: cover;
    border-radius: 1rem;
}

.mode h3 {
    font-size: 1.4rem;
    color: #222;
    font-weight: bold;
}

.mode p {
    font-size: 1.1rem;
    color: #333;

}



.roles-column {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 6.25rem 12rem;
    box-shadow: 4px 4px 4px #000;
    padding: 3rem;
    border-radius: 1rem;
    background-color: #e1b002;
    
}

.roles-img img {
    max-width: 100%;
    height: 20rem;
    filter: drop-shadow(5px 5px 5px #000);
    border-radius: 1rem;
    transition: 0.3s ease;
}

.roles-img img:hover {
    transform: scale(1.1) translateY(10px);
    filter: drop-shadow(10px 10px 10px #000);
}

.roles-text {
    max-width: 31.250rem;
    margin-left: 20px;

}

.roles-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    filter: drop-shadow(5px 5px 5px #000);
    font-weight: bold;

}

.roles-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;

}

.roles-list {
    padding: 1rem;
    margin: 0;
    font-style: oblique;

}

.roles-column-reverse {
    flex-direction: row-reverse;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 6.25rem 12rem;
    box-shadow: 4px 4px 4px #000;
    padding: 3rem;
    border-radius: 1rem;
     background-color: #e1b002;
}

.text-tournament {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 700px;
    border-radius: 1rem;

}

.text-tournament h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: bold;
    filter: drop-shadow(3px 3px 3px #000);
}

.text-tournament p {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(3px 3px 3px #000);

}





.video-resumen {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
}

.video-text {
    max-width: 30rem;
    font-size: 1.5rem;
    padding: 2rem 0;
    margin-bottom: 1rem;
    text-align: center;
    filter: drop-shadow(3px 3px 3px #000);
    color: #fff;
}

.video-vid {
    overflow: hidden;
    margin: 0 auto;
    border-radius: 0.5rem;
    max-width: 50vw;
    width: 50vw;
    box-shadow: 2px 2px 2px #000;
    transition: 0.3s ease;
}

.video-vid:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 5px #000;
    cursor: pointer;
}

.video-vid iframe {
    width: 100%;
    height: 25rem;
    border: none;
    display: block;
}

.carrusel {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 1rem auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 16px #0003;
    background: #111;
    min-height: 320px;
}

.carrusel-inner {
    display: flex;
    transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    height: 320px;
}

.carrusel-slide {
    min-width: 100%;
    transition: opacity 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrusel-slide img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 2px 8px #0008;
}


.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-weight: bold;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    filter: drop-shadow(2px 2px 2px #000);
}

.footer a {
    text-decoration: none;
    margin: 0 2rem;
    font-size: 1.5rem;
}

.footer a i,
.social-kick,
.social-whatsapp,
.social-discord,
.social-tiktok {
    display: inline-block;
    transition: 0.3s ease;
}

.social-kick {
    color: #009929;
    filter: drop-shadow(2px 2px 2px #000);
}

.social-kick:hover {
    color: #009929;
    transform: scale(1.5);
    filter: drop-shadow(5px 5px 5px #000);
}

.social-whatsapp {
    color: #25d366;
    filter: drop-shadow(2px 2px 2px #000);
}

.social-whatsapp:hover {
    color: #25d366;
    transform: scale(1.5);
    filter: drop-shadow(5px 5px 5px #000);
}

.social-discord {
    color: #7289da;
    filter: drop-shadow(2px 2px 2px #000);
}

.social-discord:hover {
    color: #7289da;
    transform: scale(1.5);
    filter: drop-shadow(5px 5px 5px #000);
}

.social-tiktok {
    color: #d10038;
    filter: drop-shadow(2px 2px 2px #000);
}
.social-tiktok:hover {
    color: #d10038;
    transform: scale(1.5);
    filter: drop-shadow(5px 5px 5px #000);
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.mode.scroll-reveal.visible:hover {
    transform: translateY(-10px) scale(1.04);
    background: #f7f7f7;
    box-shadow: 5px 5px 5px #000;
}

/* Responsive completo para móviles */
@media (max-width: 700px) {
  header {
    padding: 0.2rem 0.2rem;
    background-size: cover;
    background-position: center;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }
  .logo img {
    height: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .nav-principal {
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
    padding: 0;
  }
  .nav-principal li {
    width: 100%;
  }
  .nav-principal li a,
  .nav-principal li .btn {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    border-radius: 0;
  }
  .sub-nav {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-left: 1rem;
    background: #fff;
  }

  #hero {
    height: 40vh;
    min-width: 0;
    padding: 0.5rem;
    flex-direction: column;
  }
  .hero-content {
    padding: 1rem 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .about-background {
    flex-direction: column;
    margin: 0.5rem;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-img img {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .about-text {
    max-width: 100%;
    font-size: 0.95rem;
    text-align: center;
  }
  .about-text h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }

  .game-modes {
    margin: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    box-shadow: none;
  }
  .game-modes h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .modes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  .mode {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 0.5rem;
    gap: 1rem;
  }
  .mode img {
    height: 120px;
    width: 100%;
    object-fit: cover;
  }
  .mode h3 {
    font-size: 1.1rem;
  }
  .mode p {
    font-size: 0.95rem;
  }

  .roles-column,
  .roles-column-reverse {
    flex-direction: column !important;
    margin: 0.5rem;
    padding: 0.5rem;
    gap: 0.5rem !important;
    box-shadow: none;
  }
  .roles-img img {
    width: 100%;
    max-height: 120px;
    margin: 0 auto;
  }
  .roles-text {
    margin-left: 0 !important;
    text-align: center;
    font-size: 0.95rem;
  }
  .roles-text h3 {
    font-size: 1.2rem;
  }
  .roles-text p, .roles-list li {
    font-size: 0.95rem;
  }

  .text-tournament {
    margin: 0.5rem;
    padding: 0.5rem;
    max-width: 100%;
    border-radius: 0.5rem;
  }
  .text-tournament h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .text-tournament p {
    font-size: 0.95rem;
  }

  .video-resumen {
    gap: 1rem;
    padding: 1rem 0;
  }
  .video-text {
    max-width: 100%;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
  }
  .video-vid {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0.3rem;
  }
  .video-vid iframe {
    height: 120px;
  }

  .carrusel {
    width: 100vw;
    max-width: 100vw;
    min-height: 120px;
    margin: 0.5rem auto;
    border-radius: 0.5rem;
  }
  .carrusel-inner {
    height: 120px;
  }
  .carrusel-slide img {
    height: 120px;
    object-fit: cover;
  }

  .footer {
    font-size: 0.9rem;
    padding: 0.5rem 0.2rem;
    border-radius: 0;
  }
  .footer a {
    font-size: 1.1rem;
    margin: 0 0.3rem;
  }
  .footer-social {
    gap: 0.5rem;
  }
}

