@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(75, 0, 130, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 70%
  );
}

.button-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.love-button {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 0, 200, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  text-transform: uppercase;
}

.love-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 140, 0.7) 0%,
    rgba(255, 0, 230, 0.4) 50%,
    rgba(120, 0, 255, 0.6) 100%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  0% {
    filter: brightness(1) hue-rotate(0deg);
    transform: scale(1);
  }
  100% {
    filter: brightness(1.2) hue-rotate(20deg);
    transform: scale(1.05);
  }
}

.love-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 0, 200, 0.5),
    inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.love-button:active {
  transform: scale(0.97) translateY(3px);
}

.love-button span {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  display: block;
  font-weight: 600;
}

.heart {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.heart svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 5px rgba(255, 0, 130, 0.8));
}

.heart-path {
  fill: url(#heart-gradient);
}

.heart-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
}
.heart-2 {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
.heart-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
}
.heart-4 {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
.heart-5 {
  top: 15%;
  left: 15%;
}
.heart-6 {
  top: 15%;
  right: 15%;
}
.heart-7 {
  bottom: 15%;
  right: 15%;
}
.heart-8 {
  bottom: 15%;
  left: 15%;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
  opacity: 0;
}

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.footer .creator {
  font-size: 14px;
  color: #aaa;
  font-weight: 300;
  margin: 0;
}

.footer .attribution {
  font-size: 11px;
  color: rgba(170, 170, 170, 0.6);
  font-weight: 300;
  margin: 0;
}

.footer a {
  color: #ff66a3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff0066;
  text-decoration: underline;
}