html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.canvas-container {
  text-align: center;
}

.responsive-canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

.info-section {
  position: relative;
  width: 100%;
  height: 100vh;
}
/* .hero {
  position: relative;
  z-index: 1;
} */
/* canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
} */
.header-text,
.header-sub-text,
.frame {
  z-index: 1;
  position: relative;
}

.frame {
  z-index: 5;
}

:root {
  --bg: #ffffff;
  --ink: #0b0f14;
  --floor: #f3f3f3;
}
html,
body {
  height: 100%;
  margin: 0;
  /*   background: var(--bg);
  color: var(--ink);
  font: 16px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Arial; */
}
.hero {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
}
#hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}
#hero:active {
  cursor: grabbing;
}
.ui {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #0a3f48, #8ecae6) border-box;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.hint {
  opacity: 0.7;
  font-size: 14px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
