*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: #191724;
  color: #e0def4;
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: #eb6f92 transparent;
}

body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: transparent;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #eb6f92;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #eb6f92;
}
body::-webkit-scrollbar-corner {
  background: transparent;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246,193,119,0.08) 0%, transparent 65%);
  top: -200px; right: -200px;
}
.bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,167,231,0.08) 0%, transparent 65%);
  bottom: -150px; left: -150px;
}

nav {
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #eb6f92 0%, #d4637e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e0def4;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: #908caa;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #eb6f92; }
.nav-links .active { color: #f6c177; font-weight: 500; }

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px 48px;
}
.hero-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #f6c177 0%, #ea9d34 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(246,193,119,0.25);
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e0def4;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.hero p { color: #908caa; font-size: 0.95rem; }

.content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.card {
  background: rgba(37,35,58,0.75);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.card-header h2 {
  line-height: 1.2;
  margin: 0;
}
.card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.card-icon.pink   { background: rgba(235,111,146,0.15); color: #eb6f92; }
.card-icon.teal   { background: rgba(49,116,143,0.15);  color: #9ccfd8; }
.card-icon.gold   { background: rgba(246,193,119,0.15); color: #f6c177; }
.card-icon.purple { background: rgba(196,167,231,0.12); color: #c4a7e7; }
.card-icon.green  { background: rgba(45,149,123,0.15);  color: #31748f; }

.card h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e0def4;
}
.card p {
  color: #b6b2d1;
  line-height: 1.75;
  font-size: 0.92rem;
}
.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #b6b2d1;
  font-size: 0.92rem;
  line-height: 1.6;
}
.card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f6c177;
  margin-top: 8px;
  flex-shrink: 0;
}
.card a { color: #eb6f92; text-decoration: none; }
.card a:hover { text-decoration: underline; }

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  color: #6e6a86;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}
footer a { color: #908caa; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #eb6f92; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .card { padding: 22px 18px; }
  .nav-links { display: none; }
}
