/*
ENTRADA DESENVOLVIDO POR DOUGLAS ALBUQUERQUE ( KOMMYKUH )
RESPEITE OS CRÉDITOS.
*/

body {
  color: #fff;
  overflow-x: hidden;
}

/* BACKGROUND */
.bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.85)),
    url("background.png") center/cover no-repeat;
  z-index: -3;
}

/* RAIO */
#lightning {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

/* LOGO */
.header {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 460px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* CARDS */
.container {
  max-width: 1100px;
  margin: auto;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.card {
  width: 240px;
  min-height: 320px;
  background: linear-gradient(180deg, #140700, #060200);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;

  box-shadow: 0 0 30px rgba(255,60,0,.2);
  border: 1px solid rgba(255,120,60,.25);

  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px rgba(255,80,0,.5);
}

/* 🔥 TÍTULO RPG (MAIOR) */
.card h2 {
  font-family: 'Cinzel', serif;
  font-size: 24px;              /* ⬆️ MAIOR */
  text-align: center;
  color: #ffb347;
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-shadow:
    0 0 6px rgba(255,140,0,.8),
    0 0 12px rgba(255,80,0,.5);
}

/* LISTA (MAIOR E MAIS LEGÍVEL) */
.card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.card ul li {
  font-size: 15px;              /* ⬆️ MAIOR */
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
  text-shadow: 0 0 4px rgba(0,0,0,.8);
}

.card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: orange;
  text-shadow: 0 0 6px rgba(255,150,0,.8);
}

/* ÍCONES */
.icon-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-area img {
  width: 100px;              /* ⬆️ maior */
  max-width: 100%;
  transition: transform .3s ease, filter .3s ease;
  filter: drop-shadow(0 0 12px rgba(255,120,0,.6));
}

/* efeito no hover do card */
.card:hover .icon-area img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(255,160,0,.9));
}


/* BOTÕES */
.card-footer {
  text-align: center;
  margin-top: auto;
}

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 22px;
  font-family: 'Cinzel', serif;
  text-decoration: none;
  font-size: 14px;              /* ⬆️ levemente maior */
  letter-spacing: 1px;
  transition: .3s;
}

.site {
  background: linear-gradient(#ffcc66, #ff9900);
  color: #000;
}

.whatsapp {
  background: #25d366;
  color: #000;
}

.discord {
  background: #5865f2;
  color: #fff;
}

.btn:hover {
  transform: scale(1.08);
}
/* ANIMAÇÃO DE ENTRADA DOS CARDS */
.card {
  opacity: 0;
  transform: translateY(30px);
}

/* classe ativada via JS */
.card.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
/* TEXTO ABAIXO DOS CARDS */
.site-text {
  margin-top: 30px;   /* ⬆️ menos espaço */
  text-align: center;
  padding: 0 20px;
}


.site-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  color: #ffb347;
  margin-bottom: 10px;
  text-shadow:
    0 0 10px rgba(255,140,0,.7),
    0 0 20px rgba(255,80,0,.4);
}

.site-text p {
  font-size: 16px;
  color: #d6d6d6;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  margin-top: 30px;   /* ⬆️ menos espaço */
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,120,60,.25);
}


.footer span {
  color: #ffb347;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}
/* FOOTER RPG */
.footer {
  margin-top: 20px;
  padding: 10px 10px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,120,60,.25);
}

/* TEXTO RPG COM EFEITO */
.footer-rpg {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #ffb347;
  text-decoration: none;          /* remove sublinhado */
  cursor: pointer;

  text-shadow:
    0 0 6px rgba(255,140,0,.6),
    0 0 12px rgba(255,80,0,.4);

  animation: glowFooter 2s infinite alternate;
  transition: transform .3s ease;
}

/* pequeno feedback no hover */
.footer-rpg:hover {
  transform: scale(1.05);
}


/* ANIMAÇÃO ACENDE / APAGA */
@keyframes glowFooter {
  0% {
    opacity: 0.6;
    text-shadow:
      0 0 4px rgba(255,120,0,.4),
      0 0 8px rgba(255,60,0,.2);
  }
  100% {
    opacity: 1;
    text-shadow:
      0 0 10px rgba(255,180,80,.9),
      0 0 22px rgba(255,100,0,.8);
  }
}
