body {
  margin: 0;
  background-color: #2b0047;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(43, 0, 71, 0.75);
  background-image: url("https://i.pinimg.com/originals/1d/15/d8/1d15d8da8b3b6f3a895828ba2663f409.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

/* Fonts */
.kalnia-glaze-<uniquifier> {
  font-family: "Kalnia Glaze", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 112.5;
}
.almendra-sc-regular {
  font-family: "Almendra SC", serif;
  font-weight: 400;
  font-style: normal;
}
.new-rocker-regular {
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
}
.balthazar-regular {
  font-family: "Balthazar", serif;
  font-weight: 400;
  font-style: normal;
}

.volcano-icon {
  font-size: 28px;
  text-align: center;
  line-height: 32px;
  filter: drop-shadow(0 0 6px rgba(255, 100, 0, 0.8));
}


/* Map and Button box side by side */
.mapbox {
  flex: 1; /* take available space */
  max-width: 900px;
  height: 530px;
  background-color: rgba(48, 0, 48, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Optional hover glow effect */
.mapbox:hover {
  border-color: #ffdd55;
  box-shadow: 0 0 25px rgba(255, 221, 85, 0.8);
}


.viewport {
  width: 100%;
  max-width: 1275px;
  height: 150px;
  margin: 40px auto 0 auto;
  background-color: rgba(48, 0, 48, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  z-index: 2;
  margin-top: 10px;
}

/* Glow hover effect like your mapbox */
.viewport:hover {
  border-color: #ffdd55;
  box-shadow: 0 0 25px rgba(255, 221, 85, 0.8);
}


.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  flex-wrap: nowrap; /* stop wrapping */
  flex-direction: row; /* ensure horizontal layout */
}


.buttonbox {
  width: 320px;
  height: 500px;
  background-color: rgba(48, 0, 48, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 70px;
  justify-items: center;
  align-items: center;
  padding: 15px;
  gap: 15px;
}


/* Emoji buttons */
.emoji-btn {
  font-size: 28px;
  width: 60px;
  height: 60px;
  background-color: #2b0047;
  border: 2px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 4px 0 #a67c00, 0 6px 8px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
}

.emoji-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #a67c00, 0 4px 6px rgba(212, 175, 55, 0.6);
}

.emoji-btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #a67c00, 0 2px 4px rgba(212, 175, 55, 0.6);
}
