@font-face {
  font-family: "PFPlayskoolPro";
  src: url("font/PF Playskool Pro.ttf") format("truetype");
  font-display: swap;
}

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

body {
  overflow: hidden;
  background: radial-gradient(circle at center, #CA002F 0%, #910022 60%, #5A0016 100%);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "PFPlayskoolPro", sans-serif;
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bauble-container {
  position: relative;
  z-index: 2;
  transform-origin: top center;
  animation: sway 5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.bauble-thread {
  width: 2px;
  height: 15vh;
  background: #ffd700;
  position: relative;
}

.bauble-thread::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: #ffd700;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bauble {
  bottom: 61px;
  width: 450px;
  height: 450px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bauble:hover {
  transform: scale(1.03);
}

.bauble .bauble-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.bauble .bauble-text {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #b6002b;
  font-size: 4.2rem;
  line-height: 0.9;
  font-weight: bold;
  text-align: center;
  width: 70%;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(180, 82, 106, 0.86), 0 0 20px rgba(255, 255, 255, 0.2);
  pointer-events: none;
  user-select: none;
}

@keyframes sway {
  0% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(6deg);
  }

  100% {
    transform: rotate(-6deg);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
}

.modal {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  max-width: 650px;
  width: 90%;
  text-align: center;
  position: relative;
  color: white;
}

.modal .close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 38px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}

.modal .close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.modal p {
  font-family: cursive;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.modal .lang-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.modal .lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffd700;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "PFPlayskoolPro", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.modal .lang-btn:hover {
  background: #ffd700;
  color: #910022;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/*# sourceMappingURL=style.css.map */