:root {
  --bg: #000000;
  --button-color: #00ff66;
  --button-shadow: rgba(0, 255, 102, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
}

.hero-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-link {
  display: block;
  width: 100%;
  min-height: 100vh;
  text-decoration: none;
}

.hero-button {
  display: none;
}

@media (max-width: 680px) {
  .page-link {
    min-height: 100vh;
  }
}
