@font-face {
  font-family: "Giga";
  src: url("./fonts/Gigafont.otf?v=2") format("opentype");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Giga", Arial, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0f0f0f 100%);
  color: #ffffff;
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 20px;
}

.hero {
  margin-bottom: 40px;
}

h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin: 0 0 10px 0;
  letter-spacing: -1.2px;
}

h2 {
  font-size: clamp(18px, 3.5vw, 24px);
  margin-top: 40px;
  opacity: 0.9;
}

p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

li {
  margin: 10px 0;
}

a {
  color: #7ab8ff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #7ab8ff;
  transition: width 0.25s ease;
}

a:hover::after {
  width: 100%;
}

.footer {
  margin-top: 60px;
  font-size: 13px;
  opacity: 0.35;
}

.container::before {
  content: "";
  position: fixed;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122,184,255,0.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 16px;
  }

  h1 {
    font-size: clamp(32px, 8vw, 44px);
  }
}