* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cinzel', serif;
}
html {
  scroll-behavior: smooth;
}


body {
  background: #050505;
  color: #fff;
}

/* ===== TOPO ===== */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.55); /* MAIS TRANSPARENTE */
  backdrop-filter: blur(6px);      /* efeito moderno */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
}
.topbar .logo img {
  height: 45px;
}

.topbar nav a {
  color: #ddd;
  margin: 0 22px;      /* MAIS ESPAÇO ENTRE ITENS */
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px; /* deixa mais elegante */
}

.topbar nav a:hover {
  color: #f5c16c;
}

.auth a {
  margin-left: 15px;
  text-decoration: none;
  color: #ddd;
}

.btn-register {
  padding: 8px 16px;
  border: 1px solid #f5c16c;
  color: #f5c16c;
}

.btn-register:hover {
  background: #f5c16c;
  color: #000;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url('img/backgraund.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.title {
  font-size: 64px;
  color: #f5c16c;
  margin-bottom: 10px;
}

.status {
  font-size: 26px;
  color: #00ff55;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-play {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #f5c16c, #b07a1c);
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
}

.btn-play:hover {
  filter: brightness(1.1);
}
/* ============================= */
/* HERO - TAMANHO E IMPACTO */
/* ============================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* OVERLAY MAIS ESCURO */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

/* TAMANHOS MAIORES */
.hero .title {
  font-size: 68px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero .status {
  font-size: 26px;
  color: #00f6ff;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #00f6ff;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 45px;
  color: #d0d6df;
}

/* BOTÃO MAIOR */
.btn-play {
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 40px;
  letter-spacing: 2px;
}

/* ============================= */
/* ANIMAÇÃO DE ENTRADA */
/* ============================= */

.hero-anim {
  opacity: 0;
  transform: translateY(40px);
}

/* quando ativa */
.hero-anim.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s ease;
}

/* delays */
.hero-anim:nth-child(1) { transition-delay: 0.2s; }
.hero-anim:nth-child(2) { transition-delay: 0.5s; }
.hero-anim:nth-child(3) { transition-delay: 0.8s; }
.hero-anim:nth-child(4) { transition-delay: 1.1s; }
/* ============================= */
/* BOTÕES HERO - RPG */
/* ============================= */

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* BASE */
.btn-rpg {
  position: relative;
  padding: 16px 40px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  min-width: 240px;
  text-align: center;
}

/* BOTÃO CONTORNO (Criar conta) */
.btn-outline {
  color: #e8c88a;
  border: 2px solid #e8c88a;
  background: rgba(40, 25, 15, 0.6);
  box-shadow: 0 0 15px rgba(232, 200, 138, 0.25);
}

.btn-outline:hover {
  background: rgba(232, 200, 138, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(232, 200, 138, 0.45);
}

/* BOTÃO DOURADO (Migrar) */
.btn-gold {
  color: #3a250f;
  background: linear-gradient(135deg, #d8b36a, #f1d08a);
  box-shadow: 0 0 20px rgba(216, 179, 106, 0.45);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(241, 208, 138, 0.7);
}

/* EFEITO DE BRILHO SUAVE */
.btn-rpg::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 40%;
  height: 220%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.7s ease;
}

.btn-rpg:hover::before {
  left: 130%;
}

/* CLICK */
.btn-rpg:active {
  transform: scale(0.97);
}
/* ============================= */
/* FAIXA RPG - HERO */
/* ============================= */

.hero-ribbon {
  display: inline-block;
  padding: 14px 40px;
  margin-bottom: 25px;

  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #e8c88a;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("img/wood-texture.jpg"); /* opcional */

  background-size: cover;
  background-position: center;

  border-radius: 30px;
  border: 1px solid rgba(232, 200, 138, 0.6);

  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.7),
    0 0 15px rgba(232, 200, 138, 0.25);
}



