/* Site 13 — vibrant gradients: pink→orange, blue→purple, green→yellow */

:root {
  --n13-bg-deep: #070510;
  --n13-surface: rgba(12, 8, 22, 0.88);
  --n13-text: #f4e8ff;
  --n13-muted: #a89bc4;
  --n13-grad-pink-orange: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --n13-grad-blue-purple: linear-gradient(135deg, #3b82f6 0%, #a855f7 55%, #6366f1 100%);
  --n13-grad-green-yellow: linear-gradient(135deg, #22c55e 0%, #eab308 100%);
  --n13-grad-hero: linear-gradient(120deg, #f472b6, #fb923c, #a78bfa, #38bdf8, #4ade80);
  --n13-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

@keyframes n13_bg_shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes n13_grad_text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes n13_shimmer {
  0% { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}

@keyframes n13_wave {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-3px) scaleX(1.02); }
}

@keyframes n13_pulse_ring {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

@keyframes n13_border_spin {
  to { transform: rotate(360deg); }
}

/* ---- Page shell ---- */
body.n13-body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--n13-font);
  color: var(--n13-text);
  background: var(--n13-bg-deep);
  -webkit-font-smoothing: antialiased;
}

body.n13-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    -45deg,
    #581c87,
    #be185d,
    #c2410c,
    #1d4ed8,
    #15803d,
    #a855f7
  );
  background-size: 420% 420%;
  animation: n13_bg_shift 22s ease infinite;
  opacity: 0.42;
}

body.n13-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(168, 85, 247, 0.15), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(236, 72, 153, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(7, 5, 16, 0.25) 0%, #070510 55%, #070510 100%);
  pointer-events: none;
}

/* ---- Header ---- */
.n13_hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
  border-bottom: 1px solid rgba(168, 85, 247, 0.28);
  backdrop-filter: blur(14px);
  background: rgba(7, 5, 16, 0.88);
}

.n13_hdr_bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, rgba(236, 72, 153, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(59, 130, 246, 0.1), transparent 50%);
  pointer-events: none;
}

.n13_hdr_in {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  min-height: 60px;
}

.n13_brand {
  font-family: var(--n13-font);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  background: var(--n13-grad-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: n13_grad_text 10s linear infinite;
}

.n13_brand:hover {
  filter: brightness(1.08);
}

.n13_nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.n13_nav a {
  font-family: var(--n13-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--n13-muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.2s, background 0.2s;
}

.n13_nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--n13-grad-blue-purple);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s;
}

.n13_nav a:hover {
  color: #f9a8d4;
}

.n13_nav a:hover::before {
  opacity: 1;
}

.n13_hdr_line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), rgba(59, 130, 246, 0.5), transparent);
  opacity: 0.85;
}

@media (max-width: 640px) {
  .n13_nav { display: none; }
  .n13_ham { display: flex !important; }
}

.n13_ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  align-self: center;
  flex-shrink: 0;
}

.n13_ham span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f472b6, #a78bfa);
  transition: transform 0.3s, opacity 0.3s;
}

.n13_ham[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.n13_ham[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.n13_ham[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.n13_mobdrop {
  display: none;
  background: rgba(7, 5, 16, 0.97);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.n13_mobdrop.n13_open { display: block; }

.n13_mobnav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.n13_mobnav a {
  font-family: var(--n13-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--n13-muted);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(236, 72, 153, 0.25);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.n13_mobnav a:hover {
  color: #fce7f3;
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.45);
}

/* ---- Footer ---- */
.n13_ftr {
  margin-top: auto;
  font-family: var(--n13-font);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 6, 20, 0.95) 20%);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(236, 72, 153, 0.4), rgba(99, 102, 241, 0.4), rgba(34, 197, 94, 0.35)) 1;
}

.n13_ftr_card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1rem;
}

.n13_ftr_inner {
  position: relative;
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(14, 10, 28, 0.65);
  overflow: hidden;
}

.n13_ftr_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #22c55e);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.n13_ftr_brand {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.45rem;
  background: var(--n13-grad-pink-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n13_ftr_note {
  font-size: 0.76rem;
  color: var(--n13-muted);
  line-height: 1.75;
  max-width: 320px;
}

.n13_ftr_nav_head {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--n13-grad-blue-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.55rem;
}

.n13_ftr_nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.n13_ftr_nav a {
  font-size: 0.79rem;
  color: #e9d5ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}

.n13_ftr_nav a::before {
  content: "→";
  color: #f472b6;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.n13_ftr_nav a:hover {
  color: #fef08a;
  gap: 0.55rem;
}

.n13_copy {
  font-size: 0.65rem;
  color: var(--n13-muted);
  text-align: center;
  padding: 0.65rem 1.25rem;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ---- Hero ---- */
.n13-hero {
  position: relative;
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  overflow: hidden;
}

.n13-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23070510' fill-opacity='0.85' d='M0 24L60 20C120 16 240 8 360 10C480 12 600 24 720 22C840 20 960 4 1080 6C1200 8 1320 28 1380 38L1440 48V48H0V24Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  animation: n13_wave 6s ease-in-out infinite;
}

.n13-hero-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--n13-grad-green-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.n13-hero-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  background: linear-gradient(90deg, #f9a8d4, #fdba74, #c4b5fd, #7dd3fc, #86efac);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: n13_grad_text 9s linear infinite;
}

.n13-hero-sub {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.92rem;
  color: var(--n13-muted);
  line-height: 1.65;
}

.n13-hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Buttons: wave + shimmer */
.n13-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--n13-font);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.n13-btn-wave {
  background: var(--n13-grad-pink-orange);
  color: #0a0612;
  box-shadow: 0 4px 24px rgba(236, 72, 153, 0.35);
  animation: n13_wave 3.5s ease-in-out infinite;
}

.n13-btn-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: n13_shimmer 2.8s ease-in-out infinite;
}

.n13-btn-wave:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
}

.n13-btn-ghost {
  background: rgba(12, 8, 22, 0.6);
  color: #e9d5ff;
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(12, 8, 22, 0.85), rgba(12, 8, 22, 0.85)), var(--n13-grad-blue-purple);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.n13-btn-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: n13_shimmer 3.2s ease-in-out infinite 0.4s;
}

.n13-btn-ghost:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Feature cards (3D tilt) ---- */
.n13-features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}

.n13-sec-title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--n13-muted);
  margin-bottom: 0.5rem;
}

.n13-sec-heading {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  background: var(--n13-grad-blue-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n13-feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .n13-feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.n13-feat-card {
  perspective: 1000px;
  min-height: 160px;
}

.n13-feat-inner {
  height: 100%;
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  background: rgba(14, 10, 28, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.n13-feat-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, #ec4899, #8b5cf6, #22c55e, #eab308, #ec4899);
  opacity: 0.12;
  animation: n13_border_spin 14s linear infinite;
}

.n13-feat-inner > * {
  position: relative;
  z-index: 1;
}

.n13-feat-card:nth-child(1) .n13-feat-inner {
  background-image: linear-gradient(145deg, rgba(236, 72, 153, 0.15), rgba(12, 8, 22, 0.9));
}

.n13-feat-card:nth-child(2) .n13-feat-inner {
  background-image: linear-gradient(145deg, rgba(59, 130, 246, 0.14), rgba(12, 8, 22, 0.9));
}

.n13-feat-card:nth-child(3) .n13-feat-inner {
  background-image: linear-gradient(145deg, rgba(34, 197, 94, 0.12), rgba(12, 8, 22, 0.9));
}

.n13-feat-card:hover .n13-feat-inner {
  transform: rotateY(10deg) rotateX(-6deg) translateY(-4px);
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.25), 0 0 0 1px rgba(236, 72, 153, 0.25);
}

.n13-feat-ico {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.35));
}

.n13-feat-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #fdf4ff;
}

.n13-feat-text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--n13-muted);
  line-height: 1.55;
}

/* ---- Black-API pick cards (no thumbnail) ---- */
.n13-pick {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(14, 10, 28, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.28);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.35s, border-color 0.25s;
}

.n13-pick:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 14px 40px rgba(236, 72, 153, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.12);
}

/* ---- Product / game grid ---- */
.n13-lobby-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.n13-lobby-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  background: var(--n13-grad-pink-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n13-lobby-sub {
  font-size: 0.82rem;
  color: var(--n13-muted);
  margin-top: 0.45rem;
}

.n13_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .n13_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.n13_card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(14, 10, 28, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.22);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.35s;
}

.n13_card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow:
    0 12px 40px rgba(236, 72, 153, 0.22),
    0 0 0 1px rgba(59, 130, 246, 0.15),
    8px 16px 32px rgba(59, 130, 246, 0.12);
}

.n13_card_img_wrap {
  position: relative;
  overflow: hidden;
}

.n13_card_img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}

.n13_card:hover .n13_card_img {
  transform: scale(1.06);
}

.n13_card_img_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(236, 72, 153, 0.15);
  pointer-events: none;
}

.n13_card_body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.n13_card_prov {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: var(--n13-grad-blue-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n13_card_name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: #faf5ff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.n13_card_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
}

.n13_free {
  font-size: 0.68rem;
  color: var(--n13-muted);
  font-weight: 500;
}

.n13_cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #f9a8d4;
  transition: color 0.2s;
}

.n13_card:hover .n13_cta {
  color: #fde047;
}

.n13_cta::after {
  content: "→";
  transition: transform 0.2s;
}

.n13_card:hover .n13_cta::after {
  transform: translateX(4px);
}

/* ---- Testimonials (gradient border) ---- */
.n13-testimonials {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.n13-testi-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .n13-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.n13-quote-wrap {
  padding: 2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ec4899, #a855f7, #f97316);
  background-size: 200% 200%;
  animation: n13_bg_shift 12s ease infinite;
}

.n13-quote-inner {
  border-radius: 16px;
  background: rgba(10, 6, 18, 0.94);
  padding: 1.25rem 1.2rem;
  height: 100%;
}

.n13-quote-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #e9d5ff;
}

.n13-quote-meta {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--n13-grad-green-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- CTA pulse ---- */
.n13-cta-band {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(99, 102, 241, 0.15), rgba(234, 179, 8, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.n13-cta-band p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #faf5ff;
}

.n13-btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--n13-font);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  color: #0a0612;
  border-radius: 999px;
  background: linear-gradient(135deg, #f472b6, #fb923c);
  animation: n13_pulse_ring 2.2s ease-out infinite;
  position: relative;
  overflow: hidden;
}

.n13-btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: n13_shimmer 2.5s ease-in-out infinite;
}

.n13-btn-pulse:hover {
  filter: brightness(1.05);
}

/* ---- Featured iframe block ---- */
.n13-featured-wrap {
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: rgba(12, 8, 22, 0.55);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.08);
}

.n13-featured-wrap h2 {
  font-family: var(--n13-font);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: var(--n13-grad-pink-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.n13-iframe-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(236, 72, 153, 0.25);
  background: #000;
  box-shadow: 0 12px 48px rgba(236, 72, 153, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* ---- Policy / content blocks (homepage) ---- */
.n13-policy-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.n13-policy-card {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 2.75rem;
  border-radius: 16px;
  background: rgba(14, 10, 28, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.n13-policy-card::before {
  content: "“";
  position: absolute;
  left: 0.65rem;
  top: 0.35rem;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  background: var(--n13-grad-blue-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.65;
}

/* ---- Secondary pages ---- */
.n13-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

.n13-page-hero {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.n13-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0;
  background: var(--n13-grad-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: n13_grad_text 10s linear infinite;
}

.n13-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #d8c8ee;
}

.n13-prose h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  color: #fda4af;
}

.n13-prose ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.n13-prose li {
  margin: 0.35rem 0;
}

.n13-prose p {
  margin: 0 0 1rem;
}

.n13-prose a {
  color: #f9a8d4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.n13-prose a:hover {
  color: #fde047;
}

/* ---- Forms (contact) ---- */
.n13-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.n13-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n13-muted);
  margin-bottom: 0.35rem;
}

.n13-input-wrap {
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.7), rgba(99, 102, 241, 0.7), rgba(34, 197, 94, 0.5));
}

.n13-input,
.n13-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--n13-font);
  font-size: 0.9rem;
  color: var(--n13-text);
  background: rgba(10, 6, 18, 0.95);
  border: none;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: box-shadow 0.2s;
}

.n13-textarea {
  min-height: 140px;
  resize: vertical;
}

.n13-input:focus,
.n13-textarea:focus {
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.35);
}

.n13-form .n13-btn-wave {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.n13-play-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0.5rem 0 0;
  background: var(--n13-grad-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: n13_grad_text 10s linear infinite;
}

/* Play page iframe accent */
.n13-play-frame {
  border-radius: 18px;
  border: 1px solid rgba(168, 85, 247, 0.35) !important;
  box-shadow: 0 16px 60px rgba(236, 72, 153, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.12);
}
