* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background-image:
    linear-gradient(
      rgba(5, 10, 18, 0.42),
      rgba(5, 10, 18, 0.72)
    ),
    url("/assets/bg-1-2ZPQvBuv.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-container {
  width: 100%;
  max-width: 920px;
}

.page-nav {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(49, 42, 36, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.page-nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 999px;
  transition: 0.2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.page-nav a:hover {
  color: #ffffff;
  background: rgba(145, 181, 143, 0.45);
  transform: translateY(-1px);
}

.content-card {
  position: relative;
  overflow: hidden;
  padding: 34px 38px;
  border-radius: 24px;
  background: rgba(7, 12, 18, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(240, 183, 212, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(120, 220, 207, 0.12), transparent 36%);
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(145, 181, 143, 0.28);
  border: 1px solid rgba(196, 230, 188, 0.24);
  color: #d9f2d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 39px;
  line-height: 1.08;
  color: #fffdf1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
}

h2 {
  margin: 24px 0 9px;
  font-size: 22px;
  line-height: 1.25;
  color: #dff1d9;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

p {
  margin: 0 0 14px;
  max-width: 830px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.72;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

ul,
ol {
  margin: 10px 0 16px 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

li {
  margin-bottom: 7px;
}

a {
  color: #c9efc1;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.inline-links {
  margin-top: 18px;
}

.page-footer {
  margin-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.6);
}

@media (max-height: 760px) {
  .page-wrapper {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }

  .page-wrapper {
    padding: 18px 12px 28px;
    align-items: flex-start;
  }

  .page-nav {
    border-radius: 18px;
    gap: 3px;
    margin-bottom: 14px;
  }

  .page-nav a {
    font-size: 11px;
    padding: 7px 8px;
  }

  .content-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}