body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, #354a78 0%, #101722 55%, #090f18 100%);
  color: #edf2ff;
}

body > div {
  width: min(100%, 980px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  padding: 1.75rem;
}

body > div:first-child {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.05;
}

h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #d7dce6;
}

img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  margin: 1.25rem 0 0;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, #ff8b56 0%, #ff4fa1 100%);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
}

button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 79, 161, 0.35);
  filter: brightness(1.05);
}

.button {
  font-weight: 700;
}

body > div:not(:first-child) {
  display: grid;
  gap: 1.25rem;
}

body > div:not(:first-child) h2,
body > div:not(:first-child) p {
  color: #f5f8ff;
}

@media (min-width: 900px) {
  body {
    padding: 3rem;
  }

  body > div:not(:first-child) {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
}

