body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  cursor: url('../media/cursor.png'), auto;
}

a,
button,
input[type='button'],
input[type='submit'] {
  cursor: url('../media/cursor.png'), auto;
}

#intro {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.5s ease;
  user-select: none;
}

.intro-content p {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 0 15px #fff;
}

#intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

#main-content {
  opacity: 0;
  transition: opacity 1.5s ease;
  position: relative;
  z-index: 1;
}

#main-content.hidden {
  display: none;
}

#intro.fade-out + #main-content {
  opacity: 1;
}

header {
  padding: 2rem;
}

.title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 20px #fff, 0 0 30px #fff;
  margin: 0;
}

main {
  margin-top: 2rem;
}

.profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-wrapper {
  margin: 1.5rem;
  width: 220px;
  text-align: center;
  position: relative;
}

.profile {
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  display: block;
}

.profile:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

.profile img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.badges img {
  width: 30px;
  height: 30px;
  filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Botões de like/dislike centralizados e mais abaixo */
.like-dislike {
  position: absolute;
  left: 50%;
  top: 105.99%; /* ajusta para mais baixo ou mais alto */
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.like-dislike button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
}

.like-dislike button:hover {
  background: #fff;
  color: #000;
}
