html {
  background-color: #2d2529;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

body {
  background-color: transparent;
}

.scene {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  max-height: 700px;
  margin: 0 auto;
}

.logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 100%;
}

.the {
  font-family: 'Impact', sans-serif;
  font-size: clamp(20px, 4vw, 35px);
  color: #e3b46a;
  text-align: center;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow:
    1px 1px 0 #b88a50,
    2px 2px 0 #a07a45,
    3px 3px 0 #8d6a38,
    4px 4px 6px rgba(0, 0, 0, 0.5);
}

.wolf {
  font-family: 'Impact', sans-serif;
  font-size: clamp(70px, 15vw, 150px);
  color: #e3b46a;
  letter-spacing: -2px;
  line-height: 0.8;
  font-weight: normal;
  text-align: center;
  text-shadow:
    1px 1px 0 #c89855,
    2px 2px 0 #b88a50,
    3px 3px 0 #a07a45,
    4px 4px 0 #8d6a38,
    5px 5px 0 #75582d,
    6px 6px 0 #5d4424,
    8px 8px 10px rgba(0, 0, 0, 0.6);
}

.den {
  font-family: 'Impact', sans-serif;
  font-size: clamp(80px, 18vw, 180px);
  color: #c8522c;
  letter-spacing: -2px;
  margin-top: -15px;
  text-shadow:
    1px 1px 0 #b04822,
    2px 2px 0 #a0401e,
    3px 3px 0 #8d3818,
    4px 4px 0 #7a3014,
    5px 5px 0 #66260f,
    6px 6px 0 #501e0a,
    8px 8px 12px rgba(0, 0, 0, 0.65);
}

.rug {
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 80%, 400px);
  height: clamp(80px, 30vw, 160px);
  border-radius: 50%;
  opacity: 0.85;
  overflow: hidden;
  background-color: #5b4659;
  background-image:
    repeating-radial-gradient(ellipse at 50% 50%,
      rgba(255, 255, 255, 0.03) 0 3px,
      rgba(0, 0, 0, 0.04) 3px 6px);
  box-shadow:
    inset 0 0 0 3px #6a5567,
    inset 0 0 0 5px #3d2d3b,
    0 4px 8px rgba(0, 0, 0, 0.5);
}

.rug-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image:
    repeating-radial-gradient(ellipse at 50% 50%,
      rgba(255, 255, 255, 0.03) 0 3px,
      rgba(0, 0, 0, 0.04) 3px 6px);
}

.rug-ring:nth-child(1) {
  width: 66%;
  height: 66%;
  background-color: #4a3848;
  box-shadow:
    inset 0 0 0 2px #5b4659,
    inset 0 0 0 3px #3d2d3b;
}

.rug-ring:nth-child(2) {
  width: 33%;
  height: 33%;
  background-color: #5b4659;
  box-shadow:
    inset 0 0 0 2px #4a3848,
    inset 0 0 0 3px #6a5567;
}

.fireplace {
  position: absolute;
  bottom: 18%;
  left: 27.5%;
  width: clamp(70px, 14vw, 140px);
  height: clamp(45px, 9vw, 90px);
  background-color: #b09c90;
  background-image:
    radial-gradient(ellipse 55% 60% at 50% 60%,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 45%,
      transparent 80%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.25) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='26'><rect width='48' height='26' fill='%23b09c90'/><rect x='0' y='1' width='22' height='10' rx='1' fill='%23845448'/><rect x='25' y='1' width='22' height='10' rx='1' fill='%238e5e52'/><rect x='-12' y='14' width='22' height='10' rx='1' fill='%238e5e52'/><rect x='13' y='14' width='22' height='10' rx='1' fill='%23845448'/><rect x='38' y='14' width='22' height='10' rx='1' fill='%238e5e52'/></svg>");
  background-size: auto, auto, 48px 26px;
  box-shadow:
    inset 0 14px 18px -4px rgba(0, 0, 0, 0.75),
    inset 0 -6px 12px rgba(0, 0, 0, 0.55),
    inset 10px 0 14px -2px rgba(0, 0, 0, 0.6),
    inset -10px 0 14px -2px rgba(0, 0, 0, 0.6);
  transform: perspective(400px) rotateY(55deg);
  overflow: hidden;
  cursor: pointer;
}

.mantel {
  position: absolute;
  top: -2%;
  left: -8%;
  right: -8%;
  height: 18%;
  background: linear-gradient(180deg,
    #6d5d4f 0%,
    #5d4e41 55%,
    #4a3e34 100%);
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(220, 200, 180, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.mantel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: #3a3028;
}

.column {
  position: absolute;
  top: 14%;
  bottom: 0;
  width: 13%;
  background: linear-gradient(90deg,
    #3a3028 0%,
    #5d4e41 35%,
    #6d5d4f 55%,
    #4a3e34 100%);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25);
  z-index: 4;
}

.column.left { left: 0; }
.column.right { right: 0; }

.logs {
  position: absolute;
  bottom: 8%;
  left: 22%;
  right: 22%;
  height: 18%;
}

.log {
  position: absolute;
  height: 50%;
  background: linear-gradient(to bottom, #3a2a1c 0%, #2a1d12 50%, #1a1108 100%);
  border-radius: 5px;
  box-shadow:
    0 -2px 5px rgba(255, 130, 40, 0.3),
    inset 0 1px 0 rgba(255, 110, 40, 0.25);
  opacity: 0.9;
}

.fireplace.off .log {
  background: linear-gradient(to right, #5d4e41, #7a6957, #5d4e41);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  opacity: 0.8;
}

.log:nth-child(1) {
  bottom: 0;
  left: 15%;
  width: 80%;
  transform: rotate(359deg);
}

.log:nth-child(2) {
  bottom: 40%;
  left: 20%;
  width: 75%;
  transform: rotate(7deg);
}

.log:nth-child(3) {
  bottom: 20%;
  right: 15%;
  width: 60%;
  transform: rotate(349deg);
}

.fire {
  position: absolute;
  top: 28%;
  left: 22%;
  right: 22%;
  bottom: 20%;
  overflow: visible;
  transition: opacity 0.3s ease;
}

.fire::before {
  content: '';
  position: absolute;
  inset: -15% -10% -5% -10%;
  background: radial-gradient(ellipse at 50% 85%,
    rgba(255, 150, 60, 0.35) 0%,
    rgba(255, 100, 30, 0.18) 30%,
    rgba(255, 60, 10, 0.06) 55%,
    transparent 80%);
  filter: blur(8px);
  animation: glow 3.4s ease-in-out infinite;
  pointer-events: none;
}

.fireplace.off .fire {
  opacity: 0;
}

.flame {
  position: absolute;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 95%,
    #ffe6a3 0%,
    #ffc068 12%,
    #ff8c30 35%,
    #c2400d 65%,
    rgba(150, 30, 5, 0) 92%);
  border-radius: 45% 45% 25% 25% / 75% 75% 25% 25%;
  filter: blur(2px);
  transform-origin: 50% 100%;
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: flicker 3s ease-in-out infinite;
}

.flame:nth-child(1) {
  left: 12%;
  width: 32%;
  height: 50%;
  animation-delay: 0s;
  animation-duration: 2.8s;
}

.flame:nth-child(2) {
  left: 32%;
  width: 38%;
  height: 65%;
  animation-delay: 0.7s;
  animation-duration: 3.4s;
  z-index: 2;
}

.flame:nth-child(3) {
  left: 56%;
  width: 30%;
  height: 45%;
  animation-delay: 0.4s;
  animation-duration: 3.1s;
}

@keyframes flicker {
  0%, 100% {
    transform: translateY(0) scaleY(1) scaleX(1) skewX(0deg);
    opacity: 0.85;
  }
  25% {
    transform: translateY(-1px) scaleY(1.04) scaleX(0.97) skewX(-1deg);
    opacity: 0.92;
  }
  55% {
    transform: translateY(0.5px) scaleY(0.96) scaleX(1.03) skewX(0.5deg);
    opacity: 0.78;
  }
  80% {
    transform: translateY(-0.5px) scaleY(1.02) scaleX(0.99) skewX(1deg);
    opacity: 0.88;
  }
}

@keyframes glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.chair-group {
  position: absolute;
  bottom: 8%;
  right: 30%;
  transform-origin: bottom center;
  animation: rock 5s ease-in-out infinite;
  z-index: 100;
}

.chair {
  position: relative;
  width: clamp(50px, 12vw, 106px);
  height: clamp(90px, 18vw, 180px);
}

.chair-seat {
  position: absolute;
  bottom: 26%;
  left: -4%;
  width: 108%;
  height: 16%;
  background: linear-gradient(180deg,
    #6d5d4f 0%,
    #5d4e41 55%,
    #3f342c 100%);
  border-radius: 6px 6px 4px 4px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(220, 200, 180, 0.2),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.chair-back {
  position: absolute;
  bottom: 40%;
  left: 6%;
  width: 88%;
  height: clamp(60px, 12vw, 120px);
  background: linear-gradient(180deg,
    #6d5d4f 0%,
    #5d4e41 55%,
    #4a3e34 100%);
  border-radius: 14px 14px 4px 4px;
  transform: rotate(0deg);
  transform-origin: center bottom;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(220, 200, 180, 0.2),
    inset -2px 0 3px rgba(0, 0, 0, 0.25),
    inset 2px 0 3px rgba(0, 0, 0, 0.25);
}

.chair-back::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 15%;
  right: 15%;
  bottom: 18%;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.15) 100%);
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.chair-back::after {
  content: '';
  position: absolute;
  top: -8%;
  left: 10%;
  right: 10%;
  height: 18%;
  background: linear-gradient(180deg,
    #76665a 0%,
    #5d4e41 70%,
    #4a3e34 100%);
  border-radius: 50% 50% 6px 6px / 70% 70% 6px 6px;
  box-shadow:
    0 2px 3px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(220, 200, 180, 0.2);
}

.rocker {
  position: absolute;
  bottom: 13%;
  left: -22%;
  width: 143%;
  height: 12%;
  background: linear-gradient(180deg,
    #6d5d4f 0%,
    #5d4e41 35%,
    #3f342c 100%);
  border-radius: 4px 4px 50% 50% / 6px 6px 100% 100%;
  box-shadow:
    0 2px 3px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(220, 200, 180, 0.18),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3);
}

.chair::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: -8%;
  width: 18%;
  height: 24%;
  background: linear-gradient(90deg,
    #4a3e34 0%,
    #5d4e41 50%,
    #3f342c 100%);
  border-radius: 50% 30% 4px 6px / 70% 40% 4px 6px;
  box-shadow: inset 0 1px 0 rgba(220, 200, 180, 0.15);
  z-index: 3;
}

.chair::after {
  content: '';
  position: absolute;
  bottom: 22%;
  right: -8%;
  width: 18%;
  height: 24%;
  background: linear-gradient(90deg,
    #3f342c 0%,
    #5d4e41 50%,
    #4a3e34 100%);
  border-radius: 30% 50% 6px 4px / 40% 70% 6px 4px;
  box-shadow: inset 0 1px 0 rgba(220, 200, 180, 0.15);
  z-index: 3;
}

.wolf-character {
  position: absolute;
  bottom: 8%;
  right: 0;
  width: clamp(53px, 10.5vw, 105px);
  height: clamp(88px, 17.5vw, 175px);
  z-index: 2;
  transform-origin: bottom center;
  cursor: pointer;
}

.chat-bubble {
  position: absolute;
  top: -60%;
  left: -90%;
  background-color: white;
  border-radius: 15px;
  padding: clamp(8px, 2vw, 15px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.chat-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 25%;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 3px 3px 5px rgba(0,0,0,0.05);
  z-index: -1;
}

.chat-bubble-text {
  display: block;
  margin-top: 5px;
}

.chat-bubble a {
  color: #c8522c;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}

.chat-bubble a:hover {
  color: #e3b46a;
  text-decoration: underline;
}

.wolf-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 67%;
  height: 37%;
  background-color: #8c7a6b;
  border-radius: 25px 25px 20px 20px;
}

.wolf-ear {
  position: absolute;
  width: 31%;
  height: 54%;
  background-color: #8c7a6b;
  border-radius: 80% 80% 0 0;
  clip-path: polygon(50% 0%, 85% 80%, 15% 80%);
}

.wolf-ear.left {
  top: -28%;
  left: 11%;
  transform: rotate(-25deg);
}

.wolf-ear.right {
  top: -28%;
  right: 11%;
  transform: rotate(25deg);
}

.wolf-snout {
  position: absolute;
  width: 25%;
  height: 20%;
  background-color: #605247;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px 15px 50px 50px;
}

.wolf-eye {
  position: absolute;
  width: 15%;
  height: 5%;
  background-color: #2d3c4f;
  top: 38%;
}

.wolf-eye::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
}

.wolf-eye.left {
  left: 24%;
}

.wolf-eye.right {
  right: 24%;
}

.glasses {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20%;
  z-index: 3;
}

.glasses-frame {
  position: absolute;
  width: 100%;
  height: 55%;
  display: flex;
  justify-content: space-between;
}

.glasses-lens {
  width: 40%;
  height: 90%;
  background-color: rgba(200, 220, 255, 0.1);
  border: 1.5px solid #413329;
  border-radius: 40%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.glasses-bridge {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 6%;
  background-color: #413329;
  border-radius: 1px;
}

.glasses-arm {
  position: absolute;
  top: 30%;
  width: 20%;
  height: 5%;
  background-color: #413329;
  border-radius: 1px;
}

.glasses-arm.left {
  left: -15%;
  transform: rotate(-5deg);
}

.glasses-arm.right {
  right: -15%;
  transform: rotate(5deg);
}

.wolf-body {
  position: absolute;
  top: 34%;
  left: 14%;
  width: 67%;
  height: 46%;
  background-color: #f8f4e8;
  border-radius: 10px;
  overflow: hidden;
}

.wolf-vest {
  position: absolute;
  top: 6%;
  left: 1%;
  right: 1%;
  bottom: 38%;
  background-color: #6a5c52;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wolf-tie {
  position: absolute;
  top: 14%;
  left: 46%;
  width: 14%;
  height: 57%;
  background-color: #5b4659;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.wolf-tie-knot {
  position: absolute;
  top: 1%;
  left: 43%;
  width: 23%;
  height: 14%;
  background-color: #5b4659;
  border-radius: 50%;
}

.wolf-pants {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background-color: #2d3c4f;
  border-radius: 0 0 5px 5px;
}

.wolf-belt {
  position: absolute;
  bottom: 38%;
  left: 0;
  right: 0;
  height: 4%;
  background-color: #5d4e41;
}

.wolf-arm {
  position: absolute;
  width: 17%;
  height: 34%;
  background-color: #f8f4e8;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

.wolf-arm.left {
  top: 37%;
  left: 5%;
  transform: rotate(15deg);
}

.wolf-arm.right {
  top: 37%;
  right: 5%;
  transform: rotate(-15deg);
}

.wolf-arm::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background-color: #8c7a6b;
}

.wolf-legs {
  position: absolute;
  bottom: 0;
  width: 57%;
  height: 29%;
  right: 19%;
  display: flex;
  justify-content: space-between;
  padding: 0 14%;
}

.wolf-leg {
  width: 30%;
  height: 100%;
  background-color: #2d3c4f;
  border-radius: 0 0 8px 8px;
  position: relative;
}


.wolf-leg.left {
  transform: none;
}

.wolf-leg.right {
  transform: none;
}


.wolf-shoe {
  position: absolute;
  bottom: -1%;
  width: 30%;
  height: 9%;
  background: linear-gradient(180deg, #5d4030 0%, #3a2515 100%);
  border-radius: 60% 25% 25% 60% / 80% 45% 45% 80%;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transform-origin: bottom right;
}

.wolf-shoe.left {
  left: -5%;
  transform: rotate(11deg);
}

.wolf-shoe.right {
  right: 33%;
  transform: rotate(4deg);
}

.wolf-tail {
  position: absolute;
  bottom: 26%;
  right: -11%;
  width: 29%;
  height: 29%;
  background-color: #8c7a6b;
  border-radius: 50%;
  transform: rotate(30deg);
  z-index: -1;
}

.wolf-tail::before {
  content: '';
  position: absolute;
  top: -16%;
  left: 27%;
  width: 73%;
  height: 80%;
  background-color: #8c7a6b;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.wolf-tail::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 17%;
  width: 60%;
  height: 60%;
  background-color: #8c7a6b;
  border-radius: 50%;
  transform: rotate(15deg);
}

.table {
  position: absolute;
  bottom: 15%;
  right: 42%;
  width: clamp(40px, 8vw, 80px);
  height: clamp(38px, 7.5vw, 75px);
  isolation: isolate;
}

.table-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 24%;
  background: linear-gradient(180deg,
    #6d5d4f 0%,
    #5d4e41 55%,
    #4a3e34 100%);
  border-radius: 50%;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(220, 200, 180, 0.2),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3);
}

.table-leg {
  position: absolute;
  top: 24%;
  left: 50%;
  margin-left: -7%;
  width: 14%;
  height: clamp(14px, 2.8vw, 28px);
  background: linear-gradient(90deg,
    #3a3028 0%,
    #5d4e41 35%,
    #6d5d4f 55%,
    #4a3e34 100%);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25);
}

.table-foot {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 7%;
  height: 45%;
  margin-left: -3.5%;
  background: linear-gradient(90deg, #4a3e34 0%, #5d4e41 50%, #4a3e34 100%);
  border-radius: 40% 40% 30% 30% / 25% 25% 30% 30%;
  transform-origin: top center;
}

.table-foot.left {
  transform: rotate(-55deg);
}

.table-foot.right {
  transform: rotate(55deg);
}

.table-foot.front {
  height: 28%;
  z-index: -1;
}

.lamp {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18px, 3.5vw, 35px);
  height: clamp(25px, 5vw, 50px);
  cursor: pointer;
}

.lamp-base {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 37%;
  height: 18%;
  background-color: #1a1a1a;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.lamp-stem {
  position: absolute;
  bottom: 18%;
  left: 47%;
  width: 5%;
  height: 22%;
  background-color: #1a1a1a;
}

.lamp-shade {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  height: 52%;
  background: linear-gradient(180deg,
    #f0c878 0%,
    #e3b46a 55%,
    #c89855 92%,
    #8d6a38 92%,
    #8d6a38 100%);
  clip-path: polygon(28% 0%, 72% 0%, 96% 88%, 96% 100%, 4% 100%, 4% 88%);
  filter:
    drop-shadow(0 0 10px rgba(227, 180, 106, 0.75))
    drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  transition: background 0.3s ease, filter 0.3s ease;
}

.lamp.off .lamp-shade {
  background: linear-gradient(180deg, #76633f 0%, #6b5a3e 55%, #5a4a33 92%, #3e3322 92%, #3e3322 100%);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

@keyframes rock {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.shadow {
  display: none;
}

.aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 75% at 50% 50%,
      rgba(255, 230, 170, 0.09) 0%,
      rgba(255, 215, 150, 0.06) 30%,
      rgba(255, 200, 130, 0.03) 55%,
      transparent 85%),
    radial-gradient(ellipse 30% 28% at 35% 70%,
      rgba(255, 200, 130, 0.07) 0%,
      rgba(255, 180, 110, 0.03) 45%,
      transparent 80%);
  transition: opacity 0.5s ease;
}

body.lamp-off .aura {
  opacity: 0.55;
}

body.fire-off .aura {
  opacity: 0.55;
}

body.lamp-off.fire-off .aura {
  opacity: 0;
}

.darkness {
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.5s ease;
}

body.lamp-off .darkness {
  opacity: 0.45;
}

body.fire-off .darkness {
  opacity: 0.45;
}

body.lamp-off.fire-off .darkness {
  opacity: 0.92;
}

/* Media Queries for very small screens */
@media (max-width: 400px) {
  .scene {
    height: 90vh;
  }

  .logo {
    top: 2%;
  }
}
