:root {
  --primary: #ff2d70;
  --secondary: #8c52ff;
  --dark: #0a0a12;
  --darker: #07070f;
  --light: #f5f5f7;
  --accent: #ff5e9c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(140, 82, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 45, 112, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(94, 23, 235, 0.1) 0%,
      transparent 40%
    );
  z-index: -1;
}

.glass-card {
  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  z-index: -1;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.profile-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.profile-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  animation: rotateRing 12s linear infinite;
  z-index: 1;
}

.profile-ring-2 {
  width: 180px;
  height: 180px;
  top: -20px;
  left: -20px;
  border-top-color: var(--secondary);
  border-right-color: var(--primary);
  animation-duration: 15s;
  animation-direction: reverse;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.link-button {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 40, 0.7);
  z-index: -1;
  transition: all 0.3s ease;
}

.link-button:hover::before {
  background: rgba(40, 40, 50, 0.8);
}

.link-button .icon-container {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.whatsapp-btn .icon-container {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.tiktok-btn .icon-container {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.campaign-btn .icon-container {
  background: linear-gradient(135deg, var(--secondary) 0%, #5e17eb 100%);
}

.instagram-btn .icon-container {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.youtube-btn .icon-container {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.facebook-btn .icon-container {
  background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.link-button .text-content {
  flex-grow: 1;
}

.link-button .arrow {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.link-button:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.follower-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin: 0 0.4rem;
}

.social-icon:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
}

.floating-1 {
  width: 120px;
  height: 120px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  animation: float 15s ease-in-out infinite;
}

.floating-2 {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  top: 70%;
  right: 10%;
  animation: float 18s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-3 {
  width: 60px;
  height: 60px;
  background: #25d366;
  bottom: 20%;
  left: 15%;
  animation: float 12s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.header-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, var(--light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.header-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px;
}

.tagline {
  position: relative;
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border: 1px solid transparent;
  background: linear-gradient(45deg, var(--primary), var(--secondary))
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 112, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 45, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 112, 0);
  }
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0.3;
  z-index: -1;
  border-radius: 2px;
}
