* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #3da1f0 rgba(17,24,39,0.5);
}

html, body {
  /* overflow: hidden; */
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, Segoe UI, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(61,161,240,.15), transparent),
    linear-gradient(135deg, #070b12, var(--bg) 70%);
  color: var(--text);
}

.construction-container {
  overflow-x: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.construction h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.construction p {
  font-size: 20px;
  color: #bbb;
  margin-bottom: 20px;
}

.bubble {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(61, 161, 240, 0.3);
  border-radius: 50%;
  animation: rise 8s infinite ease-in;
  bottom: -50px;
  pointer-events: none;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}