* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

/* HEADER */
header {
    background-color: #000;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fcaf17;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MENU DESKTOP */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #fcaf17;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;  /* Garante que fique fixo */
    right: 20px;  /* Move mais para o lado direito */
    top: 15px;  /* Ajuste conforme necessário */
}


.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        border-top: 1px solid #222;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}


/* HERO */
.hero {
    height: 100vh;
    background-image: url('img/sss.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero2 {
  height: 100vh;
  background-image: url('img/fundo.png');
 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-content {
    max-width: 800px;
    margin-left: 80px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fcaf17;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
}

/* GAMES SECTION */
.games-section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #fcaf17;
}

.section-title2 {
  font-size: 39px;
  
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  
  color: #fcaf17;
  text-shadow: 0 0 0px rgba(48, 48, 48, 0.253), 0 0 60px rgb(251, 255, 0), 0 0 0px rgba(0, 0, 0, 0); /* Azul neon */
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
}

.game-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.game-platform {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

/* NEWS SECTION */
.news-section {
    background-image: url('img/fundo2.png');
    background-color: #111;
    padding: 100px 0;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #0e0d0d;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-excerpt {
    color: #ccc;
    margin-bottom: 15px;
}

.read-more {
    color: #fcaf17;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #fff;
}

/* SOCIAL SECTION */
.social-section {
    padding: 80px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #fcaf17;
}

/* FOOTER */
footer {
    background-color: #111;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fcaf17;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    color: #666;
    font-size: 14px;
}

.age-rating {
    display: inline-block;
    padding: 5px 10px;
    background-color: #333;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


ull {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.item a {
  text-decoration: none;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #f0f9fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 3px solid #f0f9fe;
  overflow: hidden;
}

.item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 0;
  scale: 1 0;
  transform-origin: bottom;
  transition: scale 0.5s ease;
}

.item:hover a::before {
  scale: 1 1;
}

.icon {
  font-size: 2rem;
  color: hsl(203, 92%, 8%);
  transition: 0.5s ease;
  z-index: 2;
}

.item a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.item:nth-child(1) {
  --bg-color: linear-gradient(to bottom right, #f9ce34, #ee2a7b, #6228d7);
}
.item:nth-child(2) {
  --bg-color: #0077b5;
}
.item:nth-child(3) {
  --bg-color: #ff0000;
}
.item:nth-child(4) {
  --bg-color: #000;
}



.title {
    font-size: 4rem;
    line-height: 120%;
    font-weight: bold;
  }
  
  .title span {
    --duration: 2s;
    display: block;
    position: relative;
    overflow: hidden;
    margin-block: 4px;
    color: transparent;
    animation: reveal 1s calc(var(--delay) + var(--duration)) forwards;
  }
  
  .title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #939496;
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn var(--duration) var(--delay) forwards,
      slideOut 1s calc(var(--delay) + var(--duration)) forwards;
  }

  .title2 {
    font-size: 4rem;
    line-height: 120%;
    font-weight: bold;
  }
  
  .title2 span {
    --duration: 2s;
    display: block;
    position: relative;
    overflow: hidden;
    margin-block: 4px;
    color: transparent;
    animation: reveal 1s calc(var(--delay) + var(--duration)) forwards;
  }
  
  .title2 span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #131313;
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn var(--duration) var(--delay) forwards,
      slideOut 1s calc(var(--delay) + var(--duration)) forwards;
  }

  @keyframes reveal {
    to {
      color: white;
    }
  }
  
  @keyframes slideIn {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(105%);
    }
  }


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

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body2 {
    height: 30vh;
    display: grid;
    place-items: center;
    font-family: "Kanit", sans-serif;
  }

  :root {
    --clr: #fff01a;
  }
  
  .text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(128, 128, 128, 0.6);
    transition: 0.1s ease;
    transition-delay: 0.25s;
  }
  
  .hover-text {
    position: absolute;
    inset: 0;
    width: 0%;
    color: var(--clr);
    overflow: hidden;
    border-right: 6px solid var(--clr);
    transition: 0.5s ease-in-out;
  }  

  div2:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 40px var(--clr));
  }
  div2:hover .text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0);
  }  

  div2 {
    position: relative;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 80px;
    cursor: pointer;
  }  