@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&display=swap');

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  background-color: #0b0b0b;
  color: white;
}

.top-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.menu-list li a:hover {
  color: #f0c040;
}

.menu-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.buy-coins {
  background: transparent;
  border: 1px solid #f0c040;
  padding: 8px 14px;
  border-radius: 8px;
  color: #f0c040;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.buy-coins:hover {
  background: #f0c04022;
}

.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #f0c040;
}

.status-circle {
  border: 1px solid #f0c040;
  border-radius: 50%;
  padding: 10px 14px;
  color: white;
  font-size: 10px;
  text-align: center;
  font-family: 'Cinzel', serif;
  line-height: 1.1;
}

/* Centraliza logo e título na tela */
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 100px; /* espaço para não sobrepor o menu */
}

.logo {
  max-width: 400px;
  width: 90%;
  height: auto;
  margin-bottom: 20px;
}

/* Estilo do título principal */
.content h1 {
  font-size: 2.8em;
  letter-spacing: 2px;
  color: #fff;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 10px #000;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa a tela toda */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-center {
  z-index: 2;
}

.logo-hero {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease;
}

.hero-title {
  font-size: 32px;
  color: #f0c040;
  text-shadow: 0 0 10px black;
  font-family: 'Cinzel', serif;
}

/* Ajusta o vídeo para não cobrir o conteúdo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  object-fit: cover;
}

.ranking-list {
  list-style: none;
  padding: 0;
  color: #f0c040;
  font-family: 'Cinzel', serif;
}

.ranking-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

