@font-face {
  font-family: "Naruto";
  src: url("../fonts/naruto.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #111;
  color: #fff;
  line-height: 1.5;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.header,
.header a,
.header button {
  font-family: "Naruto", Arial, sans-serif;
}

/* ===== HEADER ===== */
.header {
  width: 100%;
  height: 60px;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
}

.logo_header img {
  height: 50px;
}

.navigation_header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navigation_header a {
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
}

.navigation_header a:hover,
.navigation_header a.active {
  color: #ffcc00;
}

/* ===== BOTÕES MENU MOBILE ===== */
.btn_icon_header,
.btn_icon_close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none; /* Escondidos no desktop */
}

/* ===== CONTEÚDO PRINCIPAL ===== */
#page-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}

#page-container h1 {
  text-align: center;
}

/* ---- ELEMENTOS DA SUBPÁGINA ---- */
.games h2,
.musicas h2 {
  margin: 0 auto;
  font-size: 24px;
  color: #ffcc00;
  text-align: center;
}

.games p,
.musicas p {
  margin-bottom: 15px;
  font-size: 16px;
}

.games img.storm2 {
  margin: 0 auto;
  width: 300px;
  display: block;
  padding: 20px;
}

.video-section {
  margin: 20px 0;
}

.video-section p {
  margin-bottom: 10px;
}

video {
  width: 100%;
  max-width: 500px;
  border: 2px solid #444;
  border-radius: 6px;
}

/* ===== BOTÃO DE DOWNLOAD (GERAL) ===== */
.download a {
  display: inline-block;
  background: linear-gradient(135deg, #ff7f00, #ffae42);
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.download a:hover {
  background: linear-gradient(135deg, #ffae42, #ff7f00);
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* ===== SEÇÃO DE DOWNLOADS MÚLTIPLOS ===== */
.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px; /* espaço vertical entre os blocos */
  margin: 30px 0;
  text-align: center;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* espaço entre o texto e o botão */
  flex-wrap: wrap;
}

.download-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 1px 1px 2px #000;
}

.download-btn {
  background: linear-gradient(135deg, #ff7f00, #ffae42);
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
  background: linear-gradient(135deg, #ffae42, #ff7f00);
  transform: scale(1.07);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* ===== LISTAS ===== */
ol {
  margin-left: 20px;
  padding-left: 10px;
}

ol li {
  margin-bottom: 10px;
}

/* ===== GRÁFICO ===== */
.grafico-container {
  margin-top: 40px;
}

.grafico {
  margin-bottom: 20px;
}

.label {
  font-size: 16px;
  margin-bottom: 5px;
}

.barra {
  width: 100%;
  background: #333;
  height: 25px;
  border-radius: 6px;
  overflow: hidden;
}

.preenchido {
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

.traducao {
  width: 100%;
  background: #ffcc00;
}

.revisao {
  width: 100%;
  background: #ff6600;
}

/* ===== CARDS PARA A HOME ===== */
.game-preview-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.preview-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.game-preview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.game-preview-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ccc;
}

.btn-ver-mais {
  background: #ff4500;
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-ver-mais:hover {
  background: #e63e00;
}

/* ===== RESPONSIVIDADE ===== */
@media screen and (min-width: 768px) {
  .game-preview-card {
    flex-direction: row;
    text-align: left;
  }

  .game-preview-card img {
    max-width: 250px;
    margin-right: 20px;
  }
}
/* ===== AJUSTE DE BOTÕES NO MOBILE ===== */
@media screen and (max-width: 768px) {
  /* Garantir que os botões de download do Xbox fiquem iguais ao PlayStation */
  .download-item .download-btn {
    width: 180px; /* igual tamanho do botão PlayStation */
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    background: linear-gradient(135deg, #ff7f00, #ffae42);
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .download-item .download-btn:hover {
    background: linear-gradient(135deg, #ffae42, #ff7f00);
    transform: scale(1.07);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  }
}


@media screen and (max-width: 768px) {
  .btn_icon_header,
  .btn_icon_close {
    display: block;
  }

  .game-preview-card {
    flex-direction: column;
    text-align: center;
  }

  .game-preview-card img.preview-image {
    max-width: 300px;
  }

  .detalhes {
    margin-top: 15px;
  }

  .navigation_header {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #222;
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px;
    transition: left 0.3s ease;
    z-index: 999;
    display: flex;
  }

  .navigation_header a {
    font-size: 18px;
    padding: 10px 0;
  }

  .navigation_header.open {
    left: 0;
  }
}
