body {
  font-family: "Roboto";
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(155, 123, 255, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 45px rgba(155, 123, 255, 0.9);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 rgba(155, 123, 255, 0.6);
    transform: scale(1);
  }
}

.content__of-link {
  animation: pulseGlow 2.2s infinite;
  transition: transform 0.2s ease;
}

.content__of-link:hover {
  transform: scale(1.08);
}

.content__of-link {
    background: #9b7bff;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
}

.sensitive-box {
  margin: 10px auto 20px;
  background: white;
  color: black;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  /* Animation setup */
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: 
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sensitive-box.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hidden {
  display: none;
}

.sensitive-box h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.sensitive-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 14px;	
}

.continue-btn {
    display: inline-block;
    background: black;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}







.content__video {
  position: absolute; /* Promenjeno sa fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 20px 10px;
}

.content__image {
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
}

.content__name,
.content__social-name,
.content__responds {
  display: block;
  margin-bottom: 15px;
}

.content__activity-line {
  display: flex;
  color: #33ff57;
  justify-content: center;
  gap: 15px;
}

.content__name {
  font-size: 30px;
  font-weight: 700;
}

.content__location {
  display: block;
  margin-bottom: 20px;
}

.content__model-text {
  line-height: 25px;
}

.content__of-link {
  display: inline-block;
  color: #ffffff;
  background-color: black;
  padding: 15px 25px;
  border-radius: 20px;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 15px;
}

.content__sale {
  display: block;
  color: #33ff57;
  font-weight: 600;
}

.content__timer {
  color: #ffffff;
}
