* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212; 
  cursor: url('yo.cur'), auto;
  font-family: 'Monserrat', sans-serif; 
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  color: #e6e6e6;
  overflow: hidden;
}

.click-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#clickMeText {
  font-size: 3rem;
  cursor: url('yo.cur'), auto;
  color: #f0f0f0;
  font-weight: bold;
  text-align: center;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

#clickMeText:hover {
  transform: scale(1.1);
  color: #ff4d4d; 
}

.hidden {
  display: none;
}

.background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%) contrast(1.2) grayscale(0%); 
  z-index: -1;
  opacity: 0.9;
  animation: fadeIn 2s ease-out;
}

.cards-container {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  z-index: 1;
}

.card {
  background: rgba(0, 0, 0, 0.8); 
  border-radius: 15px;
  padding: 20px;
  width: 230px;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(255, 0, 0, 0.9); 
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(50%) contrast(110%);
}

.card:hover .profile-img {
  transform: scale(1.1);
  filter: brightness(100%) contrast(120%); 
}

.user-info h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ff4d4d; 
}

.tele-link, .insta-link {
  margin: 5px;
  display: inline-block;
  transition: transform 0.2s ease;
  border-radius: 5px;
}

.tele-link:hover, .insta-link:hover {
  transform: scale(1.2);
}

.tele-icon, .insta-icon {
  width: 35px;
  height: 35px;
  transition: filter 0.2s ease;
  filter: brightness(0.5) contrast(1.1); 
}

.tele-link:hover .tele-icon, .insta-link:hover .insta-icon {
  filter: brightness(1.2); 
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

.show {
  display: block !important;
}

.word {
  position: absolute;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  color: #ff3333; 
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
  opacity: 0.8;
}

@keyframes drop {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(50px) scale(0.8);
    opacity: 0;
  }
}

.word {
  position: absolute;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  color: #ff3333; 
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
  opacity: 0.8;
}

@keyframes fall {
  0% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(50px);
    opacity: 0;
  }
}


