:root {
  --npl-bg: #160a3a;
  --npl-bg-2: #1d0d4f;
  --npl-card: #1b0258;
  --npl-border: #3a1f99;
  --npl-pink: #ff1e8e;
  --npl-pink-2: #e6007e;
  --npl-pink-glow: rgba(255, 30, 142, 0.45);
  --npl-text: #ffffff;
  --npl-text-muted: #c6bce6;
  --npl-text-soft: #9b91c4;
  --npl-yellow: #ffd233;
  --npl-radius: 18px;
  --npl-radius-sm: 10px;
  --npl-container: 1440px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--npl-bg);
  color: var(--npl-text);
  font-family:
    "Inter",
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

.npl-container {
  width: 100%;
  max-width: var(--npl-container);
  margin: 0 auto;
  padding: 0 20px;
}

.npl-main {
  display: block;
}

.npl-section {
  padding: 56px 0;
}

.npl-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.npl-section__title {
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
}

.npl-section__lead {
  color: var(--npl-text-muted);
  font-size: 15px;
  margin: 0;
}

.npl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3aa0 0%, var(--npl-pink-2) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  box-shadow: 0 10px 30px -10px var(--npl-pink-glow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.npl-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.npl-card-wrap {
  background: var(--npl-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 28px;
}

.npl-announcement {
  background: linear-gradient(90deg, #ff1e8e 0%, #ff5fb0 100%);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px;
  line-height: 1;
}

@media (max-width: 720px) {
  .npl-section {
    padding: 40px 0;
  }
  .npl-card-wrap {
    padding: 20px;
  }
}
