.mute-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.mute-button:hover {
  background-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-color: #006cfa;
  --secondary-color: #00ff2a;
  --background-color: rgba(90, 90, 90, 0.5);
  --text-color: white;
  --detail-color: #ddd;
  --discord-color: #5865F2;
  --discord-hover: #7289DA;
  --instagram-color: #E4405F;
  --instagram-hover: #FF7CA3;
  --website-color: #000000;
  --website-hover: #008cff;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background-color: black;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.profiles-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge-top-left {
  position: absolute;
  top: 13px;
  left: 305px;
  z-index: 10;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-style: preserve-3d;
}

.badge-top-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.badge-top-left:hover img {
  transform: scale(1.1);
}

.badge-top-left::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}

.badge-top-left:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}



.profile-card {
  background: var(--background-color);
  width: 300px;
  height: 425px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  perspective: 1000px;
}

.profile-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.profile-picture {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-picture:hover {
  transform: scale(1.2);
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.profile-name {
  font-size: 25px;
  margin: 0;
}

.profile-detail {
  font-size: 14px;
  color: var(--detail-color);
  margin: 0;
  position: absolute;
  z-index: 99999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
}

.profile-card:hover .profile-detail {
  opacity: 1;
  transform: translateY(-10px); 
  z-index: 99999;
  pointer-events: auto;
}

.insignias-sub {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 3px;
  position: relative;
}

.insignia {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
}

.insignia:hover {
  transform: rotateY(15deg) scale(1.1);
}

.insignia::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}

.insignia:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.insignia img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.social-button {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.social-button i {
  font-size: 18px;
  color: white;
}

.social-button.discord {
  background-color: var(--discord-color);
}

.social-button.instagram {
  background-color: var(--instagram-color);
}

.social-button.website {
  background-color: var(--website-color);
}

.social-button.discord:hover {
  background-color: var(--discord-hover);
}

.social-button.instagram:hover {
  background-color: var(--instagram-hover);
}

.social-button.website:hover {
  background-color: var(--website-hover);
}

.social-button:hover {
  transform: scale(1.2);
}

.social-button::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.300);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.social-button:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .profiles-container {
    flex-direction: column;
    gap: 20px;
  }

  .profile-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .social-button {
    width: 35px;
    height: 35px;
  }

  .social-button i {
    font-size: 18px;
  }
}
