
body {
  height: 100%;
  margin: 0;
  background: linear-gradient(to bottom, #000000, #0a0a0a, #111111, #000000);
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.07;
  z-index: -1;
}


#startScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  transition: opacity 0.8s ease;
}

#startScreen.hidden {
  opacity: 0;
  pointer-events: none;
}

#startScreen h1 {
  text-shadow: 0 0 10px #fff, 0 0 20px #666, 0 0 40px #888;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px #666, 0 0 20px #888;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #aaa;
  }
}

.card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.050);

  background-color: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(3px);

  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
  cursor: pointer;
  border-radius: 1rem;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.050);
  border-color: rgba(255, 0, 0, 0.050);
}

.avatar {
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease;
  transform: translateZ(30px);
}

.card:hover .avatar {
  transform: rotate(3deg) scale(1.05) translateZ(40px);
}

.badge-icon {
  width: 26px;
  height: 26px;
  margin: 2px;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none; 
}

.loading-overlay img {
  width: 80px; 
  height: auto;
}

#cardsContainer {
  display: grid;
  gap: 1rem;
}

.card a {
  transition: color 0.3s ease;
  color: #ccc;
}

.card a:hover {
  color: #fff;
}

/* ===========================
   TEXTO SANGRENTO DA STARTSCREEN
   =========================== */

@font-face {
  font-family: 'MyBloodFont';
  src: url('./fonts/shlop.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.blood-text {
  margin-top: 12px;
  text-align: center;
  color: #ff0f0f !important;
  font-family: 'MyBloodFont', "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 1px;
  user-select: none;
  pointer-events: none;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.6),
    0 6px 10px rgba(0,0,0,0.45);
  filter: drop-shadow(0 6px 6px rgba(255,0,0,0.18));
  animation: blood-drip 2.8s infinite ease-in-out;
}

@keyframes blood-drip {
  0%   { transform: translateY(0); letter-spacing: 1px; opacity: 1; }
  40%  { transform: translateY(2px); letter-spacing: 2px; opacity: 1; }
  80%  { transform: translateY(0); letter-spacing: 1px; opacity: 1; }
  100% { transform: translateY(0); }
}

#mainContent {
  position: relative;
  min-height: 100vh; /* garante que ocupa a tela toda */
  z-index: 1;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
  filter: brightness(1.25);
}