/* 🔥 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

/* 🌌 BODY */
body {
  background: black;
  color: white;

  min-height: 100vh;

  display: flex;
  justify-content: center;
}

/* ⭐ FUNDO */
canvas {
  position: fixed;
  top: 0;
  left: 0;
}

/* 📦 CONTAINER */
.container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 400px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 100vh;

  padding: 40px 20px;
  text-align: center;
}

/* 💡 FIX iOS */
@supports (-webkit-touch-callout: none) {
  .container {
    min-height: -webkit-fill-available;
  }
}

/* 👤 AVATAR */
.avatar {
  width: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-bottom: 10px;
}

/* 📝 TEXTO */
h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

/* 🔗 LINKS */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* 🔘 BOTÕES */
.btn {
  width: 100%;
  padding: 14px;

  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  text-decoration: none;
  color: white;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.25s;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

/* ✨ HOVER */
.btn:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.15);
}

/* 👁 VIEWS */
.views {
  margin-top: 15px;
  color: #777;
  font-size: 13px;
}

/* 🔥 PRELOADER */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ⚡ RAIO */
.lightning {
  font-size: 26px;
  margin-bottom: 12px;
  animation: glow 1s infinite alternate;

  text-shadow:
    0 0 5px #fff,
    0 0 10px #ffd000;
}

/* 🎨 ÍCONES */
.fa-discord { color: #5865F2; }
.fa-youtube { color: #FF0000; }
.fa-globe { color: #1da1f2; }

/* ✨ ANIMAÇÃO */
@keyframes glow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* 🔲 BARRA */
.progress-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, #ffd000, transparent);
  animation: loading 1.2s linear infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* 📱 RESPONSIVO */
@media (max-width: 768px) {

  .avatar {
    width: 85px;
  }

  h1 {
    font-size: 20px;
  }

  .btn {
    font-size: 13px;
    padding: 13px;
  }
}

/* 📱 PEQUENOS */
@media (max-width: 400px) {

  .avatar {
    width: 70px;
  }

  h1 {
    font-size: 18px;
  }

  .btn {
    font-size: 12px;
  }
}

/* 🚀 NOVO PADRÃO MOBILE */
@supports (height: 100svh) {
  .container {
    min-height: 100svh;
  }
}