:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090a0a;
  color: #fff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(230, 242, 3, .16), transparent 32%),
    #090a0a;
}

main {
  width: min(100%, 720px);
  overflow: hidden;
  border: 1px solid rgba(230, 242, 3, .32);
  border-radius: 24px;
  background: #121414;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .46);
}

img { width: 100%; display: block; aspect-ratio: 1200 / 630; object-fit: cover; }

section { padding: 28px; }

span {
  color: #e6f203;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1 { margin: 10px 0; font-size: clamp(30px, 7vw, 50px); line-height: 1; }
p { margin: 0 0 22px; color: #cdd3ce; line-height: 1.65; }

a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #e6f203;
  color: #090a0a;
  font-weight: 900;
  text-decoration: none;
}
