body {
  background: radial-gradient(circle at top, #0b0f1a 0%, #05070d 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* HEADER */
.site-header {
  text-align: center;
  background-image: url(banner-topo.png);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 125px;
   align-items: center;
}

.header-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 200, 100, 0.3);
}

.header-title {
  font-size: 1.8rem;
  color: #f6d47d;

  text-shadow: 0 0 10px rgba(255, 200, 100, 0.5);
  height: 70px;

}

/* PACKS */
.packs-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background-image: url(bg-packs-vip.jpg);
}

/* Ajuste para o novo bloco de packs manter o estilo de fundo */
.packs-wrap.new-packs {
  padding-top: 0;
}

.pack {
  background: rgba(15, 20, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  overflow: hidden;
  width: 320px;
  transition: transform 0.2s ease;
}

.pack:hover {
  transform: scale(1.03);
}

.pack__image {
  height: 350px;
  background-size: cover;
  background-position: center;
}

.pack.bronze .pack__image {
  background-image: url('vip1.png');
}
.pack.silver .pack__image {
  background-image: url('vip2.png');
}
.pack.gold .pack__image {
  background-image: url('vip3.png');
}

/* Novos Packs */
.pack.diamond .pack__image {
  background-image: url('aio.png');
}
.pack.platinum .pack__image {
  background-image: url('aio.png');
}
.pack.exclusive .pack__image {
  background-image: url('aio.png');
}

/* Novos RUNA */
.pack.runas .pack__image {
  background-image: url('runa1.png');
}
.pack.runasvip .pack__image {
  background-image: url('runa2.png');
}

.pack__ribbon {
  background: linear-gradient(90deg, #c09b60, #a97433);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
}

.pack__body {
  padding: 20px;
}

.pack__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pack__price {
  font-size: 1.3rem;
  color: #f6d47d;
  margin-bottom: 15px;
}

.btn-buy {
  background: linear-gradient(90deg, #ffd24d, #e6b800);
  border: none;
  color: #1a1303;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-buy:hover {
  background: linear-gradient(90deg, #ffe570, #ffcf33);
}

.items {
  margin-top: 20px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 20px;
  background: rgba(10, 10, 20, 0.9);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
}

.site-footer a {
  color: #f6d47d;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}


 /* === MODAL PIX === */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: #0f1325;
      border: 2px solid rgba(255, 215, 0, 0.3);
      border-radius: 10px;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
      width: 600px;
      height: 400px;
      padding: 20px;
      text-align: center;
      position: relative;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-content h2 {
      margin-bottom: 10px;
      color: #f6d47d;
    }

    .modal-content img {
      width: 220px;
      height: 220px;
      object-fit: contain;
      margin: 15px auto;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.1);
      background: #fff;
    }

    .modal-content p {
      color: #ccc;
      font-size: 0.95rem;
    }

    .close-modal {
      position: absolute;
      top: 8px;
      right: 12px;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .close-modal:hover {
      color: #ffcc33;
    }