* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
  }
  
body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background: 
                /* Gradiente radial sutil no centro */
                radial-gradient(ellipse at center, 
                    rgba(36, 116, 223, 0.08) 0%, 
                    transparent 50%),
                /* Gradiente linear principal */
                linear-gradient(135deg, 
                    #0a0c1a 0%, 
                    #1a2038 25%, 
                    #0f1226 50%, 
                    #1b2240 75%, 
                    #0a0c1a 100%),
                /* Textura de ruído */
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="1" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.2"/></svg>');
            
            background-size: 
                100% 100%,
                400% 400%,
                300px 300px;
            
            background-attachment: fixed;
            animation: subtleMove 20s ease-in-out infinite;
            position: relative;
            overflow-x: hidden;


            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        /* Animação sutil do gradiente */
        @keyframes subtleMove {
            0%, 100% { background-position: 0% 50%, 0% 50%, 0 0; }
            50% { background-position: 0% 50%, 100% 50%, 50px 50px; }
        }

        /* Efeito de brilho sutil */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(36, 116, 223, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(36, 116, 223, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Efeito de partículas flutuantes */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(102, 192, 244, 0.4);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 8s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 2s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 1s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 12s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 10s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 14s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 18s; }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Overlay para dar mais profundidade */
        .depth-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at top, transparent 0%, rgba(10, 12, 26, 0.1) 100%),
                radial-gradient(ellipse at bottom, transparent 0%, rgba(10, 12, 26, 0.6) 100%);
            pointer-events: none;
            z-index: -1;
        }

        a {
  display: inline-block;
  vertical-align: top;
}
        
  /*------------body------------*/
::-webkit-scrollbar{
    width: 2px;
    height: 4px;
  }
::-webkit-scrollbar-thumb {
    background: #33a0e8; /* Cor da parte que pode ser arrastada */
    border-radius: 3px; /* Borda arredondada do thumb */

}

::-webkit-scrollbar-thumb:hover {
  background: #0cebff; /* Cor do thumb quando o mouse está sobre ele */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/*------------------------------HEADER------------------------------*/
header {
  color: #FFF;
  background-color: #090a0e;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #33a0e8;
  box-shadow: 0PX 0px 10px #3599db;
  position: relative; /* Adicionado para posicionamento absoluto do botão */
}

.header-container {
  display: flex;
  justify-content: center; /* Centraliza a logo horizontalmente */
  align-items: center;
  height: 100%;
  padding: 0 35px;
  position: relative; /* Para posicionamento de elementos dentro do container */
}

.sidebar-toggle-button {
  position: absolute;
  left: 15px; /* Distância da extremidade esquerda */
  top: 50%;
  transform: translateY(-50%); /* Centraliza verticalmente */
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.sidebar-toggle-button:hover {
  color: #33a0e8;
}

.logo {
  /* A logo fica centralizada naturalmente pelo justify-content: center do container */
  display: flex;
  align-items: center;
}

.logo img {
  padding-top: 10px;
  max-width: 200px;
  
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


  /* ----------------------Side Bar----------------------------*/

/*--------------------------------GAME-VIEWPORT-------------------------------*/

.game {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;

}

.game-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 940px;

}
.game-viewport {
    width: 100%;
    max-width: 940px;
    height: 530px;
    background-color: rgba(0, 0, 0, 0.4);
}
.game-viewport iframe{
    width: 100%;
    height: 100%;
}
.game-bar {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px 18px;
    align-content: center;
    align-items: center;
    border-top: 3px solid #3379e8;
    display: flex;
    white-space: nowrap;

}

@media (max-width: 768px) {
  .game-content{
    width: 90%;
  }

  
}

@media (max-width: 480px) {
  .game-content{
    width: 100%;
  }
  .game-viewport{
    height: 275px;
  }
  .game-bar {
    display: none;
  }
  
}

.game-title{
    color: #ffffffbb;
    font-size: 0.9rem;
}
.game-controls{
  display: flex;
  gap: 18px;
  color: #ffffffbb;
  font-size: 1.4rem;
  margin-left: auto;
  font-weight: bold;
  
  
}

.game-controls button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    
} 

.game-controls button:hover{
  background: linear-gradient(180deg, #4493c7, #6ec6f8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-tutorial{
  display: none;
}
/*---------------slider----------------*/

.slider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slider-container{
  width: 80%;
  max-width: 940px;
  padding: 10px 0;
  
}

@media (max-width: 480px) {
  .slider-container {
    width: 90%;
  }
}

.slider-title{
  display: flex;
  align-items: center;
}


.slider-title h2{
  color: #ffffffbb;
  font-weight: 400;
  font-size: 1.0rem;
}

.slider-control{
  display: flex;
  gap: 12px;
  color: #FFF;
  font-size: 1.1rem;
  margin-left: auto;

}

.slider-control button {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

.slider-list{
  margin: 0;
  padding: 12px 7px;
  list-style: none;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  gap: 7px;

}

.slider-item{
  vertical-align: top;
  flex-shrink: 0;
  width: 229px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.9);
  
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  
  
}
.slider-item a {
  display: block;
  text-decoration: none;
  
            /* Impede seleção no link */
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}
.slider-cover {
  aspect-ratio: 16/9;
  overflow: hidden;

}
.slider-cover img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
            /* Impede arrastar a imagem */
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
            /* Impede seleção da imagem */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
}
/*---------------slider-info---------------*/
.slider-info {
  width: 100%;
  height: 30px;
  background-color: #090a0e;
  display: flex;
  align-items: center;
  overflow: hidden;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
  
  
}

.slider-pin{
  height: 100%;
  font-weight: 600;
  color: #88ffa5;
  background-color: rgb(21, 129, 21);
  align-content: center;
  padding: 0 4px;
  
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}
.slider-name{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  
            /* Impede seleção no nome */
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}

.slider-name h3{
  color: #FFF;
  font-weight: 600rem;
  font-size: 0.9rem;
  padding: 0 7px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.3s ease;
  
            /* Impede seleção no título */
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
  
  
}
.slider-item:hover .slider-info {
    background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 3px rgba(78, 163, 219, 0.9);
  cursor: pointer;
}
/* Só aplica a animação se o texto estiver truncado */
.slider-item:hover .slider-name h3 {
  text-overflow: initial;
  overflow: visible;
}

.slider-item:hover .slider-name h3.text-overflow {
  animation: var(--animation-name) var(--animation-duration) linear infinite;
}

/*--------------------------------------GAME-DESCRIPTION--------------------------------------*/
.about {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.about-container {
  width: 80%;
  max-width: 940px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
}

.about-title {
  color: #ffffffbb;
  font-size: 1.2rem;
  padding-bottom: 12px;
}

.about-content{
  width: 100%;
  display: flex;
}

.about-descripition {
  width: 60%;
  flex: 1;
  padding-right: 7px;
  display: flex;
  flex-direction: column;
}
.about-text{
  color: #ffffffbb;
  padding: 7px 0;

}

.about-text h3{
  font-size: 1.2rem;
  padding: 7px 0;
}

.about-text p{
  font-size: 1.0rem;
  padding: 7px 0;
  padding-right: 12px;
}
.about-txt {
  color: #ffffff4b;
  display: inline-block;
  min-width: 140px;
  font-weight: bold;
}

.about-extras {
  width: 100%;
  padding-left: 7px;
  margin-left: auto;
  border-left: 1px solid #576d91;
}