:root {
  --rich-gold: #d8b653;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background-image: url('https://onionmadder.xyz/sundari/assets/bg4.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100vh;
  background-attachment: fixed;
  background-color: black;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.goddess-image {
  position: fixed;
  top: 52%;
  left: 52%;
  transform: translate(-50%, -50%);
  height: 920px;
  width: auto;
  z-index: -1;
  pointer-events: none;
}


.garland {
  position: fixed;
  top: 0;
  height: 100vh;
  width: auto;
  pointer-events: none;
  z-index: 0;
}


.garland-left {
  left: 300px;
}


.garland-right {
  right: 300px; 
  transform: scaleX(-1);
  transform-origin: top center;
}




.response-text {
  position: fixed;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(160, 44, 44, 0.45); 
  border: 2px solid var(--rich-gold);
  color: var(--rich-gold);
  font-size: 1.4rem;
  font-style: italic;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(160, 44, 44, 0.6), 0 0 8px rgba(216, 182, 83, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 100;
  max-width: 80%;
  min-height: 4rem;
  pointer-events: none;
  white-space: pre-wrap;
}


:root {
  --rich-gold: #d8b653;
}


#btn-offer {
  position: fixed;
  bottom: 200px;
  left: 545px;
  z-index: 10;
}

#btn-listen {
  position: fixed;
  bottom: 200px;
  left: 755px;
  z-index: 10;
}

#btn-glance {
  position: fixed;
  bottom: 200px;
  left: 965px;
  z-index: 10;
}

#btn-touch {
  position: fixed;
  bottom: 200px;
  left: 1175px;
  z-index: 10;
}

#btn-worship {
  position: fixed;
  bottom: 100px;
  left: 860px; 
  z-index: 10;
}

.shrine-button {
  width: 200px;
  
  letter-spacing: normal;
  text-rendering: auto;
  
  text-align: center;
  background: linear-gradient(to bottom, #b03535, #8a1f1f);
  color: var(--rich-gold);
  border: 2px solid var(--rich-gold);
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 3px 8px rgba(80, 20, 20, 0.15);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.shrine-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.15);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}

.shrine-button:hover {
  background: linear-gradient(to bottom, #8a1f1f, #6c1a1a);
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 18px rgba(216, 182, 83, 0.4);
}

.shrine-button::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.shrine-button:hover::after {
  opacity: 0.5;
  animation: gleam 1.2s ease-in-out forwards;
}

@keyframes gleam {
  from {
    transform: translateX(-100%) rotate(25deg);
  }
  to {
    transform: translateX(100%) rotate(25deg);
  }
}

