/* Restored local utility layer for the Avatar World site. */
:root {
  --primary: #ff1493;
  --secondary: #4169e1;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --fuchsia-50: #fdf4ff;
  --fuchsia-500: #d946ef;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --cyan-500: #06b6d4;
  --indigo-500: #6366f1;
  --rose-500: #f43f5e;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-700);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, iframe, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.font-display { font-family: Poppins, Inter, system-ui, sans-serif; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.inset-\[2px\] { inset: 2px; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-\[1000\] { z-index: 1000; }
.z-\[1001\] { z-index: 1001; }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-none { flex: none; }
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-48 { width: 12rem; }
.w-72 { width: 18rem; }
.w-\[calc\(100\%-4px\)\] { width: calc(100% - 4px); }
.h-full { height: 100%; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-\[calc\(100\%-4px\)\] { height: calc(100% - 4px); }
.min-h-screen { min-height: 100vh; }
.max-h-0 { max-height: 0; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: .125rem; }
.mt-2 { margin-top: .5rem; }
.mt-10 { margin-top: 2.5rem; }
.mr-2 { margin-right: .5rem; }
.ml-3 { margin-left: .75rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.p-\[2px\] { padding: 2px; }
.p-\[5px\] { padding: 5px; }
.p-2 { padding: .5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.gap-2 { gap: .5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-x-2 > * + * { margin-left: .5rem; }
.space-x-3 > * + * { margin-left: .75rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid transparent; }
.border-2 { border: 2px solid transparent; }
.border-b { border-bottom: 1px solid transparent; }
.border-t { border-top: 1px solid transparent; }
.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-pink-500\/30 { border-color: rgba(236, 72, 153, .3); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, .3); }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, .3); }
.bg-white { background-color: #fff; }
.bg-white\/50 { background-color: rgba(255, 255, 255, .5); }
.bg-white\/80 { background-color: rgba(255, 255, 255, .8); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, .08); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .12), 0 4px 6px -4px rgba(15, 23, 42, .12); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, .15), 0 8px 10px -6px rgba(15, 23, 42, .15); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.text-transparent { color: transparent; }
.text-white { color: #fff; }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-pink-500 { color: var(--pink-500); }
.text-purple-500 { color: var(--purple-500); }
.text-blue-500 { color: var(--blue-500); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.opacity-0 { opacity: 0; }
.transform { transform: translateZ(0); }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-transform { transition-property: transform; }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.scrollbar-hide { scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-primary, .from-fuchsia-500, .from-pink-500, .from-pink-400, .from-purple-400, .from-blue-400, .from-white\/80, .from-white\/90, .from-pink-100, .from-pink-500\/30, .from-pink-500\/90, .from-primary\/20 { --tw-gradient-from: var(--primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-fuchsia-500 { --tw-gradient-from: var(--fuchsia-500); }
.from-pink-500 { --tw-gradient-from: var(--pink-500); }
.from-pink-400 { --tw-gradient-from: var(--pink-400); }
.from-purple-400 { --tw-gradient-from: var(--purple-400); }
.from-blue-400 { --tw-gradient-from: var(--blue-400); }
.from-white\/80 { --tw-gradient-from: rgba(255, 255, 255, .8); }
.from-white\/90 { --tw-gradient-from: rgba(255, 255, 255, .9); }
.from-pink-100 { --tw-gradient-from: var(--pink-100); }
.from-pink-500\/30 { --tw-gradient-from: rgba(236, 72, 153, .3); }
.from-pink-500\/90 { --tw-gradient-from: rgba(236, 72, 153, .9); }
.from-primary\/20 { --tw-gradient-from: rgba(255, 20, 147, .2); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, transparent); }
.via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), var(--pink-500), var(--tw-gradient-to, transparent); }
.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), var(--purple-500), var(--tw-gradient-to, transparent); }
.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), var(--blue-500), var(--tw-gradient-to, transparent); }
.via-purple-500\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgba(168, 85, 247, .3), var(--tw-gradient-to, transparent); }
.via-purple-500\/90 { --tw-gradient-stops: var(--tw-gradient-from), rgba(168, 85, 247, .9), var(--tw-gradient-to, transparent); }
.to-secondary, .to-pink-500, .to-blue-500, .to-blue-100, .to-cyan-500, .to-indigo-500, .to-rose-500, .to-white\/40, .to-white\/60, .to-secondary\/20, .to-transparent, .to-blue-500\/30 { --tw-gradient-to: var(--secondary); }
.to-pink-500 { --tw-gradient-to: var(--pink-500); }
.to-blue-500 { --tw-gradient-to: var(--blue-500); }
.to-blue-100 { --tw-gradient-to: var(--blue-100); }
.to-cyan-500 { --tw-gradient-to: var(--cyan-500); }
.to-indigo-500 { --tw-gradient-to: var(--indigo-500); }
.to-rose-500 { --tw-gradient-to: var(--rose-500); }
.to-white\/40 { --tw-gradient-to: rgba(255, 255, 255, .4); }
.to-white\/60 { --tw-gradient-to: rgba(255, 255, 255, .6); }
.to-secondary\/20 { --tw-gradient-to: rgba(65, 105, 225, .2); }
.to-transparent { --tw-gradient-to: transparent; }
.to-blue-500\/30 { --tw-gradient-to: rgba(59, 130, 246, .3); }

.hover\:text-fuchsia-500:hover, .group:hover .group-hover\:text-fuchsia-500 { color: var(--fuchsia-500); }
.group:hover .group-hover\:text-white\/90 { color: rgba(255, 255, 255, .9); }
.hover\:border-fuchsia-200:hover { border-color: #f5d0fe; }
.hover\:border-fuchsia-500:hover { border-color: var(--fuchsia-500); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(15, 23, 42, .12), 0 4px 6px -4px rgba(15, 23, 42, .12); }
.hover\:shadow-fuchsia-500\/20:hover { box-shadow: 0 10px 20px rgba(217, 70, 239, .2); }
.hover\:bg-gradient-to-r:hover { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.hover\:bg-gradient-to-br:hover { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.hover\:from-fuchsia-50:hover { --tw-gradient-from: var(--fuchsia-50); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:to-pink-50:hover { --tw-gradient-to: var(--pink-50); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:max-h-24 { max-height: 6rem; }
.group:hover .group-hover\:max-h-40 { max-height: 10rem; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:space-y-0 > * + * { margin-top: 0; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.site-header {
  position: sticky;
}

.site-header__inner {
  min-height: 4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav > * + * {
  margin-left: 0;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  border: 1px solid rgba(217, 70, 239, .22);
  box-shadow: 0 10px 22px rgba(217, 70, 239, .16);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.site-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(217, 70, 239, .22);
}

.site-button--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--pink-500), var(--purple-500), var(--blue-500));
}

.site-button--light {
  color: var(--gray-700);
  background: rgba(255, 255, 255, .82);
}

.hero-actions {
  flex-wrap: wrap;
}

.page-hero,
.content-band,
.feature-panel,
.contact-card,
.policy-card {
  border: 1px solid rgba(229, 231, 235, .85);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 40px rgba(217, 70, 239, .12);
  backdrop-filter: blur(8px);
}

.page-hero {
  padding: 3rem;
  border-radius: 1rem;
}

.page-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--fuchsia-500);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(90deg, var(--pink-500), var(--purple-500), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.page-lead {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: var(--gray-600);
  font-size: 1.08rem;
  line-height: 1.7;
}

.content-band {
  padding: 2rem;
  border-radius: 1rem;
}

.section-title {
  margin: 0 0 1rem;
  color: transparent;
  background: linear-gradient(90deg, var(--fuchsia-500), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  line-height: 1.15;
}

.body-copy {
  color: var(--gray-600);
  line-height: 1.75;
}

.feature-panel {
  overflow: hidden;
  border-radius: .9rem;
}

.feature-panel img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
}

.feature-panel__body {
  padding: 1.25rem;
}

.feature-panel__body h3 {
  margin: 0 0 .5rem;
  color: var(--gray-900);
}

.feature-panel__body p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-card,
.policy-card {
  padding: 1.5rem;
  border-radius: .9rem;
}

.contact-card h3,
.policy-card h3 {
  margin: 0 0 .6rem;
  color: var(--gray-900);
}

.contact-card p,
.policy-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
}

.simple-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-600);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .site-header__inner {
    height: auto;
    padding: .75rem 0;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .site-nav {
    width: 100%;
    gap: .75rem 1rem;
  }

  .site-nav a {
    font-size: .82rem;
  }

  .page-hero {
    padding: 1.5rem;
  }

  .flex.justify-center.space-x-6.overflow-x-auto {
    justify-content: flex-start;
  }

  .space-x-6 > * + * {
    margin-left: 1rem;
  }
}
