/* StoryFawn SEO landers — shared nav dropdown + gift sections */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dropdown-details { position: relative; }
.nav-dropdown-toggle {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  user-select: none;
}
.nav-dropdown-toggle::-webkit-details-marker { display: none; }
.nav-dropdown-toggle::after { content: " ▾"; font-size: 11px; opacity: .7; }
.nav-dropdown-details[open] .nav-dropdown-toggle { color: #fff; background: var(--hair); }
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 200px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(14, 11, 31, .96);
  border: 1px solid var(--hair2);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 200;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: #fff; background: var(--hair); }
.gift-this-world {
  margin-top: 60px;
  padding: 36px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hair2);
  border-radius: 24px;
  text-align: center;
}
.gift-this-world h3 { font-size: 26px; margin-bottom: 12px; }
.gift-this-world p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 22px; max-width: 520px; margin-left: auto; margin-right: auto; }
.gift-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.gift-links-row a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--hair2);
}
.gift-links-row a:hover { background: var(--hair); color: #fff; }
