@font-face {
  font-family: "Chinese Rocks";
  src: url("fonts/chinese-rocks-font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


/* Fonte padrão */
body {
  margin: 0;
  padding: 0;
  background: url('images/background.png') center/cover no-repeat;
  font-family: "Poppins", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(172, 80, 0, 0.301); /* laranja opaco */
  z-index: 0;
  pointer-events: none;
}
.container {
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  margin: 0 auto 24px auto;
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
  transition: transform 0.3s, filter 0.3s;
}
.logo:hover {
  transform: scale(1.08) rotate(-3deg);
  
}

/* Container */
.container {
  max-width: 400px;
  width: 90%;
  padding: 20px;
}

/* Título */
.title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5c542;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Subtítulo */
.subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Botões */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: block;
  width: 100%;
  max-width: 220px;
  padding: 10px 20px;
  font-size: 1.4rem;
  background: linear-gradient(90deg, #ffb347 0%, #ff4800 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Chinese Rocks', cursive, sans-serif;
  cursor: pointer;
  margin: 0 auto 15px auto;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 0 2px #ffffff, 0 2px 8px rgba(255, 255, 255, 0.15);

}
.btn:hover {
  transform: scale(1.10);
  box-shadow: 0 0 0 3px #ffffff, 0 4px 16px rgba(255, 72, 0, 0.25);
  filter: brightness(1.08);
  color: #fff;
}

/* Cores dos botões */
.instagram {
  background-color: #d62976;
}
.instagram:hover {
  background-color: #b32063;
}

.regras {
  font-family: 'Chinese Rocks', cursive, sans-serif;
  text-decoration: none;
  border: none;
}

.regras:hover {
  background-color: #a52a2a;
}

.discord {
  background-color: #5865F2;
}
.discord:hover {
  background-color: #4752c4;
}
.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 18px 0 0 0;
}
.icon {
  width: 44px;
  height: 44px;
  transition: transform 0.2s, filter 0.2s;
}
.icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(255,120,0,0.35));
}

/* Rodapé */
.footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #ffffff;
}

.dust-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
}
.dust {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 220, 120, 0.45);
  animation: dust-move 8s linear infinite;
}
.dust:nth-child(1) { left: 10vw; top: 20vh; animation-delay: 0s; }
.dust:nth-child(2) { left: 30vw; top: 60vh; animation-delay: 2s; }
.dust:nth-child(3) { left: 50vw; top: 10vh; animation-delay: 1s; }
.dust:nth-child(4) { left: 70vw; top: 80vh; animation-delay: 3s; }
.dust:nth-child(5) { left: 90vw; top: 40vh; animation-delay: 4s; }
.dust:nth-child(6) { left: 20vw; top: 70vh; animation-delay: 2.5s; }
.dust:nth-child(7) { left: 40vw; top: 30vh; animation-delay: 1.5s; }
.dust:nth-child(8) { left: 60vw; top: 50vh; animation-delay: 3.5s; }
.dust:nth-child(9) { left: 80vw; top: 60vh; animation-delay: 5s; }
.dust:nth-child(10) { left: 50vw; top: 90vh; animation-delay: 6s; }
.dust:nth-child(11) { left: 15vw; top: 10vh; animation-delay: 1.2s; }
.dust:nth-child(12) { left: 25vw; top: 80vh; animation-delay: 2.8s; }
.dust:nth-child(13) { left: 35vw; top: 50vh; animation-delay: 3.1s; }
.dust:nth-child(14) { left: 45vw; top: 20vh; animation-delay: 4.3s; }
.dust:nth-child(15) { left: 55vw; top: 70vh; animation-delay: 5.5s; }
.dust:nth-child(16) { left: 65vw; top: 30vh; animation-delay: 6.7s; }
.dust:nth-child(17) { left: 75vw; top: 60vh; animation-delay: 7.9s; }
.dust:nth-child(18) { left: 85vw; top: 40vh; animation-delay: 8.2s; }
.dust:nth-child(19) { left: 95vw; top: 90vh; animation-delay: 9.4s; }
.dust:nth-child(20) { left: 10vw; top: 50vh; animation-delay: 10.6s; }
.dust:nth-child(21) { left: 20vw; top: 20vh; animation-delay: 11.8s; }
.dust:nth-child(22) { left: 30vw; top: 70vh; animation-delay: 12.1s; }
.dust:nth-child(23) { left: 40vw; top: 40vh; animation-delay: 13.3s; }
.dust:nth-child(24) { left: 50vw; top: 60vh; animation-delay: 14.5s; }
.dust:nth-child(25) { left: 60vw; top: 10vh; animation-delay: 15.7s; }
.dust:nth-child(26) { left: 70vw; top: 80vh; animation-delay: 16.9s; }
.dust:nth-child(27) { left: 80vw; top: 30vh; animation-delay: 17.2s; }
.dust:nth-child(28) { left: 90vw; top: 60vh; animation-delay: 18.4s; }
.dust:nth-child(29) { left: 25vw; top: 90vh; animation-delay: 19.6s; }
.dust:nth-child(30) { left: 75vw; top: 10vh; animation-delay: 20.8s; }
@keyframes dust-move {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  80% { opacity: 0.7; }
  100% { transform: translateY(-120px) scale(0.7); opacity: 0; }
}
@media (max-width: 900px) {
  .logo {
    max-width: 220px;
    margin-bottom: 18px;
  }
  .btn {
    font-size: 1.5rem;
    padding: 12px 20px;
    max-width: 220px;
  }
  .icon {
    width: 32px;
    height: 32px;
  }
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 600px) {
  .logo {
    max-width: 140px;
    margin-bottom: 12px;
  }
  .btn {
    font-size: 1.1rem;
    padding: 8px 12px;
    max-width: 140px;
  }
  .icon {
    width: 22px;
    height: 22px;
  }
  .container {
    padding: 0 4px;
  }
  .footer {
    font-size: 0.9rem;
  }
}
