.smoke-streams {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.smoke-streams canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.smoke-streams h1 {
  font-size: 4.8rem;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.18em;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1.05;
}

.smoke-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.smoke-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.smoke-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.smoke-cta:hover {
  transform: translateY(-1px);
  border-color: #fff;
}

@media (max-width: 1460px) {
  .smoke-streams h1 {
    font-size: 4.4rem;
  }
}
@media (max-width: 850px) {
  .smoke-streams h1 {
    font-size: 3rem;
  }
}
@media (max-width: 650px) {
  .smoke-streams h1 {
    font-size: 1.8rem;
    letter-spacing: 0.18em;
  }

  .smoke-caption {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .smoke-cta {
    font-size: 18px;
    padding: 7px 16px;
  }
}
