:root {
  --pink: #ff006e;
  --purple: #8b5cf6;
  --blue: #1da1f2;
  --yellow: #ffe600;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

header.site {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 40;
}

header.site .wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

header.site a.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-badge::before,
.logo-badge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 50%;
}

.logo-badge::after {
  inset: 14px;
  border-width: 1.5px;
}

.banner {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff5f8, #ffe8f3);
  border-left: 6px solid var(--pink);
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

h1 {
  font-size: clamp(2rem, 6vw, 2.6rem);
  margin: 24px 0 12px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 22px;
  margin: 36px 0 10px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  position: relative;
  padding-left: 14px;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
}

p, li { font-size: 16px; line-height: 1.65; }
ul { padding-left: 22px; }

a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 0, 110, 0.25);
}
a:hover { color: var(--purple); border-bottom-color: var(--purple); }

mark {
  background: #fff3cd;
  color: #1a1a1a;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

blockquote {
  margin: 14px 0;
  padding: 12px 18px;
  border-left: 4px solid var(--pink);
  background: #f7f7f7;
  color: #333333;
  border-radius: 4px;
}

.effective {
  color: #555555;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

footer.site {
  background: linear-gradient(180deg, #171717 0%, #0c0c0c 100%);
  color: rgba(255,255,255,0.75);
  padding: 28px 24px 36px;
  font-size: 13px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer.site::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--yellow));
}

footer.site a {
  color: #ffffff;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 12px;
  border-bottom: none;
}

footer.site a:hover { color: var(--pink); }
.footer-links { margin-bottom: 8px; }
</content>
</invoke>