* {
    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----------------------------*/

a {
  color: inherit;
  text-decoration: none;
}
/*---------------FLIPER-CONTENT----------------*/

.banner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;

}
.banner-content{
    display: flex;
    justify-content: center;
    width: 80%;
    padding: 0 40px;
    max-width: 940px;
    position: relative;
    align-items: center;
    overflow: hidden;


}

@media (max-width: 480px) {
  .banner-content {
    width: 100%;

  }
}

.banner-list{
  display: flex;
  height: auto;
  list-style: none;
  margin: 0;
  padding: 20px 0px;
  max-width: 870px;
  width: 100%;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;

}

.banner-item{
  position: relative;
  background-color: #070a11;
  width: 275px;
  height: 392.8px;
  border-radius: 3px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.9);
  transition: ease-in-out 0.07s;
  filter: brightness(0.8);
  z-index: 10;
  flex-shrink: 0; /* Adicionar: impede que o item encolha */
  flex-grow: 0; /* Adicionar: impede que o item cresça */
}

.banner-item:hover{
  border: 1px solid #33a0e8;
  box-shadow: 0px 0px 8px rgba(51, 160, 232, 0.9);
  filter: brightness(1.0);

}
.banner-cover img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  z-index: 10;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to top, transparent 10%, black 30%);


            /* 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;

}

.banner-footer {
  display: flex;
  flex-direction: column;
  align-items: center;      /* centraliza horizontalmente */
  justify-content: center;  
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;

}

.banner-tags{
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4);
    font-family: Nunito;
    font-size: 12px;
    padding: 7px 5px;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;

}
.banner-play {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-family: Nunito;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.9% 4%;
  width: 60%;
  max-width: 150px;
  transition: ease-in-out 0.1s;

              user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}
.banner-play:hover {
color: #ffffff;
border: 2px solid #ffffff;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
text-shadow: 0 0 5px #FFF;
}

.control-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFF;
    border: none;
    padding: 25px 10px 25px 20px;
    border-radius: 40px 0 0 40px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    z-index: 5;
    contain: layout style paint;

  }
  
  .arrow-left-banner{
    left: 0px;
  }
  
  .arrow-right-banner {
    border-radius: 0 40px 40px 0;
    padding: 25px 20px 25px 10px;
    right: 5px;
  }
  
  .arrow-left-banner:hover, .arrow-right-banner:hover {
    background-color: rgba(41, 78, 180, 0.877);

  }
@media (max-width: 768px) {
  .banner-content {
    max-width: 355px;

  }
  
  .banner-item {
    flex-shrink: 0;
    flex-grow: 0;
    scroll-snap-align: center; /* Centralizar cada item no scroll */
  }
  
  .control-banner {
    background-color: rgba(0, 0, 0, 0.7); /* Mais opaco para melhor visibilidade */
  }
  .arrow-right-banner {
    right: 0;
  }

}



/*---------------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;
  display: flex;
  align-items: center;
  justify-content: center;
  
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}

.slider-pin p {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #88ffa5;
  white-space: nowrap;
}
.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;
}

@media (prefers-reduced-motion: reduce) {
  .slider-item:hover .slider-name h3.text-overflow {
    animation: none;
  }
}
/*---------------------------RANKING-GAMES------------------------------*/
.ranking {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.ranking-container {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  width: 80%;
  max-width: 940px;
}

@media (max-width: 480px) {
  .ranking-container{
    width: 90%;
  }
}

.ranking-button {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  box-shadow: none;
  outline: none;
  padding: 5px 12px;
  margin: 0;
  font-family: Nunito;
  font-size: 1.4rem;
  color: #fff;
  transition: ease-in-out 0.2s;
}

@media (max-width: 480px) {
  .ranking-buttons {
    display: flex;
    justify-content: space-between;


  }
  .ranking-button{
    font-size: 1.0rem;
  }
}



.ranking-button:hover {
  color: #070a11;
  background-color: rgb(78, 163, 219);  
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 2px rgba(78, 163, 219, 0.9);
}



.ranking-content{
  padding: 7px 0;
}

.ranking-list{
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  list-style: none;
}

/* Controle de visibilidade das listas de ranking */
.ranking-list:not(.active) {
  display: none;
}

.ranking-list.active {
  display: flex;
}

/* Estilo para botões ativos */
.ranking-button.active {
  color: #070a11;
  background-color: rgb(78, 163, 219);  
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 2px rgba(78, 163, 219, 0.9);
}

/* Estilos específicos para jogos extras (6ª a 10ª posição) */
.ranking-extra-item {
  display: none !important;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
}

/* Animação suave para mostrar/ocultar jogos extras */
.ranking-extra-item.show {
  display: flex !important;
  animation: fadeInUp 0.3s ease-in-out;
}

.ranking-extra-item:hover {
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 2px rgba(78, 163, 219, 0.9);
}

.ranking-extra-item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ranking-extra-item .ranking-cover {
  display: flex;
  flex-shrink: 0;
  width: 186px;   
  height: 80px;
}

.ranking-extra-item .ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ranking-extra-item .ranking-info {
  color: #ffffffbb;
  padding: 7px 0 7px 12px;
  font-size: 0.9rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 400;
  flex-grow: 1;
  flex-shrink: 1;
}

.ranking-extra-item:hover .ranking-info {
  color: #0a0c1a;
}

.ranking-extra-item .ranking-info h2 {
  color: #ffffffbb;
  margin-top: 15px;
  font-size: 0.9rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ranking-extra-item:hover .ranking-info h2 {
  color: #0a0c1a;
}

.ranking-extra-item .ranking-stars {
  color: #ffffffbb;
  font-size: 24px;
  padding-left: clamp(4%, 7%, 10%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.ranking-extra-item:hover .ranking-stars {
  color: #ccb062;
  background: linear-gradient(180deg, #e9ca76, rgb(190, 150, 64));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ranking-extra-item .ranking-extra {
  font-size: 24px;
  margin-left: auto;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.ranking-extra-item .ranking-extra p {
  color: #ffffffbb;
  background-color: #070a11d8;
  border-radius: 5px;
  padding: 7px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.ranking-extra-item:hover .ranking-extra p {
  background-color: #070a11f1;
}

/* Estilos responsivos para jogos extras */
@media (max-width: 480px) {
  .ranking-extra-item {
    display: flex;
    align-items: center;
  }
  
  .ranking-extra-item.show {
    display: flex !important;
    align-items: center;
  }
  
  .ranking-extra-item .ranking-cover {
    width: 114.05px;
    height: 69px;
  }
  
  .ranking-extra-item .ranking-extra {
    display: none;
  }
}

@media (max-width: 768px) {
  .ranking-extra-item .ranking-stars {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ranking-item{
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .ranking-item{
    display: flex;
    align-items: center;
  }
}


.ranking-item:hover {
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 2px rgba(78, 163, 219, 0.9);
}


.ranking-item a{
display: flex;
align-items: center;
}

.ranking-cover{
display: flex;
flex-shrink: 0;
width: 186px;   
height: 80px;
}

@media (max-width: 480px) {
  .ranking-cover {
    width: 114.05px;
    height: 69px;
  }
}

.ranking-cover img{
  width: 100%;
  height: 100%;
 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;
}


.ranking-info{
  color: #ffffffbb;
  padding: 7px 0 7px 12px;
  font-size: 0.9rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 400;
  max-width: 275px;
  flex-grow: 1;
  flex-shrink: 1;
  
}

.ranking-item:hover .ranking-info {
  color: #0a0c1a;
}

.ranking-info h2{
  color: #ffffffbb;
  margin-top: 15px;
  font-size: 0.9rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 400;
              user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;

}
.ranking-item:hover .ranking-info h2 {
  color: #0a0c1a;
}


.ranking-stars{
 color: #ffffffbb;
 font-size: 24px;
 padding-left: clamp(4%, 7%, 10%);
 display: flex;
 justify-content: flex-start;
 line-height: normal;
             user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;

}
.ranking-item:hover .ranking-stars{
  color: #ccb062;

  background: linear-gradient(180deg, #e9ca76, rgb(190, 150, 64));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

}

@media (max-width: 768px) {
  .ranking-stars{
    display: none;
}
}

.ranking-extra {
  font-size: 24px;
  margin-left: auto;
  margin-right: 15px;
}

@media (max-width: 480px) {
  .ranking-extra {
    display: none;
  }
}

.ranking-item:hover .ranking-extra p{
background-color: #070a11f1;
}



.ranking-extra p{
color: #ffffffbb;
background-color: #070a11d8;
border-radius: 5px;
padding: 7px;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;

}

.ranking-mais{
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 7px 0;

}

.ranking-mais:hover{
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 2px rgba(78, 163, 219, 0.9);
  cursor: pointer;

}

.ranking-mais p{
  color: #FFF;
  font-size: 1.0rem;
}

.ranking-mais:hover p{
    color: #0a0c1a;
}


/*---------------------------EXPLORE-GAMES------------------------------*/

.explore {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.explore-container{
  width: 80%;
  max-width: 940px;
  display: flex;
  flex-direction: column;
}

.explore-list {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  gap: 20px;
  width: 100%;
  max-width: 940px; 
  padding: 0;
  margin: 0;
}
.explore-title{
  color: #ffffffbb;
  padding: 12px 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1.0em;
}
.explore-item {
  color: #ffffffbb;
  background-color: rgba(0, 0, 0, 0.4);
  flex: 1; 
  min-width: 0;
  width: 25%;
  max-width: 235px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 67px;
}
@media (max-width: 480px) {
  .explore-container {
    width: 90%;
  }
  
  .explore-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
  }
  
  .explore-item {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 40px 20px;
  }
  
  .explore-icon {
    font-size: 48px;
  }
  
  .explore-item h2 {
    font-size: 18px;
    margin-top: 16px;
  }
}
.explore-item:hover{
  color: #FFF;
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 3px rgba(78, 163, 219, 0.9);
  cursor: pointer;
}
.explore-icon {
  font-size: 72px;
}
.explore-item h2 {
  color: #ffffffbb;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  margin-top: 24px;
  margin-bottom: 0;
  text-align: center;
}

.explore-item:hover,
.explore-item:focus-within {
  color: #FFF;
  background: linear-gradient(#4493c7, #6ec6f8);
  box-shadow: 0px 0px 3px rgba(78, 163, 219, 0.9);
  cursor: pointer;
}
        /*---------------------------GAMES-EVENT------------------------------*/
.event {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}
.event-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  max-width: 940px;
}
@media (max-width: 480px) {
  .event-container{
    width: 90%;
  }
}

.event-title{
  color: #ffffffbb;
  width: 100%;
}

.event-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  gap: 7px;

}

@media (max-width: 480px) {
    .event-list{
      justify-content: none;
      flex-direction: column;
      gap: 12px;
    }
  }
.event-item {
  width: 30%;
  max-width: 306px;
  flex-grow: 1;
  height: 390px;
}

@media (max-width: 480px) {
    .event-item{
      width: 100%;
      padding: 12px 0;
    }
  }
  
  .event-item a {
  display: block;
  text-decoration: none;
  color: inherit; /* mantém as cores internas */
}


.event-cover{
  width: 100%;
  height: 260px;

}

.event-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-info{
  width: 100%;
  height: 130px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;

}

.event-name{
  color: #ffffffbb;
}

.event-text{
  color: #ffffff7e;
  flex: 1; /* ocupa espaço restante */
  overflow-y: auto;
}

