
/* ==== ESTILO GERAL ==== */
* {
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  margin: 0;
  font-family: Arial, sans-serif;
}

h1, .top-title {
  text-align: center;
  font-size: 40px;
  color: #FFF;
  margin: 40px 0 10px;
  text-shadow: 0 0 6px #00ff8855;

}

h1, a {
  text-align: center;
  font-size: 40px;
  color: #FFF;
  margin: 40px 0 10px;
  text-shadow: 0 0 6px #00ff8855;
    text-decoration: none;
}

.intro {
  text-align: center;
  padding: 20px;
}

.page-thumb {
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  margin: 15px auto;
  display: block;
}

#slot-container,
#top-slot-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.slot-bloco {
  background: #111;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 0 12px #0006;
}

.slot-bloco img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.slot-bloco img:hover {
  transform: scale(1.03);
}

/* ==== BARRAS DE RTP ==== */
.rtp-barra {
  background: #fff;
  border-radius: 8px;
  height: 30px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  font-size: 12px;
  width: 100%;
  overflow: hidden;
}

.rtp-preenchimento {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  white-space: nowrap;
  font-weight: bold;
  animation: pulse 2s infinite ease-in-out;
  z-index: 2;
  position: relative;
}

@keyframes pulse {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}

.rtp-verde {
  background: linear-gradient(90deg, #39ff14, #00b34e);
  box-shadow: 0 0 8px #00ff88aa;
  color: #000;
}
.rtp-amarelo {
  background: linear-gradient(90deg, #f1c40f, #f39c12);
  box-shadow: 0 0 8px #f1c40faa;
  color: #000;
}
.rtp-vermelho {
  background: linear-gradient(90deg, #ff5e57, #c0392b);
  box-shadow: 0 0 10px #ff5e5788;
  color: #000;
}

/* ==== BOTÃO JOGAR AGORA ==== */
.btn-jogar {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(to bottom, #2ec945, #0c942f);
  box-shadow: 0 0 10px #1f7030aa;
  transition: all 0.3s ease;
  display: block;
  margin: 10px 0 6px;
  overflow: hidden;
}

.btn-jogar:hover {
  background: linear-gradient(to bottom, #f39c12, #e67e22);
  box-shadow: 0 0 12px #f39c12aa;
  color: #111;
}

/* ==== TIMER E STATS ==== */
.timer {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
}

.stats-flutuantes {
  font-size: 13px;
  margin-top: 12px;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
  color: #ccc;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 0 6px #00000066;
}

/* ==== HEADER E FOOTER ==== */
.site-header, .site-footer {
  background: #111;
  padding: 15px 0;
  border-bottom: 1px solid #222;
  text-align: center;
}

.header-inner, .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f2700d;
  margin-left: 18px;
  text-decoration: none;
  font-weight: bold;
  font-size:15px;
}
.main-nav a:hover {
  color: #fff;
}

.footer-inner {
  flex-direction: column;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}
.footer-inner .aviso {
  color: #f2700d;
  font-weight: bold;
}
.footer-inner .termo {
  color: #aaa;
  font-size: 12px;
  margin-top: 10px;
}

/* ==== FOOTER MOBILE ==== */
.footer-bar-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  border-top: 1px solid #222;
  z-index: 999;
}
.footer-bar-mobile a {
  color: #f1c40f;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}
@media(min-width: 768px) {
  .footer-bar-mobile {
    display: none;
  }
}

/* ==== RESPONSIVO ==== */
@media (max-width: 1023px) {
  #slot-container, #top-slot-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .slot-bloco {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  #slot-container, #top-slot-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .slot-bloco {
    max-width: 180px;
    padding: 8px;
  }
  .btn-jogar {
    font-size: 13px;
  }
  .timer {
    font-size: 11px;
    padding: 3px 8px;
  }
}
.footer-bar-mobile a {
  display: flex;
  align-items: center;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  margin: 0 8px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  flex-shrink: 0;
}
