/* ==========================================================================
   1. GLOBAL REHABILITATION & CUSTOM PROPERTY ENGINE
   ========================================================================== */
@property --progress {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-green: #00dc36;
  --color-cyan: #00bed4;
  --color-mint: #38c696;
  --color-yellow: #fdcc06;
  --color-red: #c80300;
  --color-purple: #cf6cfb;
  --color-pink: #ff3eb5;
}

:root {
  background-color: #0f172a;
  --outer-spacing: 2rem;
  --amplitude: 100px;
  --damping: 0.3;
  --frequency: 0.5;
  --circle-size: 60px;
  transition: --progress 700ms;
  transition-timing-function: linear;
}

:root:has(nav input#menu-toggle:checked) {
  --progress: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   2. REFINED TYPOGRAPHY ARCHITECTURE (WITH NEON GLOW CHANNELS)
   ========================================================================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: var(--outer-spacing);
  overflow-x: hidden;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

p {
  font-family: "Iosevka Charon", monospace;
  color: #f1f1f1;
  font-size: 1em;
  letter-spacing: 0.10em;
}

h1, h2, h3 {
  font-family: "Squada One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h1 {
  color: #38C696;
  padding: 4px 0;
  border-bottom: 2px solid #38C696;
}

h2 {
  color: #00BED4;
  padding: 4px 0;
  border-bottom: 2px dashed #00BED4;
}

h3 {
  color: #FDCC06;
  padding: 3px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.img-banner {
  display: block;
  margin: 0 auto;
  max-width: 85%;
  height: auto;
}

/* ==========================================================================
    INTERACTIVE SPRING PHYSICS NAVIGATION SYSTEM
   ========================================================================== */
nav ul {
  position: fixed;
  top: 45px;
  left: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  z-index: 9999;
}

nav ul li {
  display: grid;
  place-items: center;
}

.circle {
  position: relative;
  width: var(--circle-size);
  height: var(--circle-size);
  display: grid;
  place-items: center;
  border-radius: 10%;
  border: medium solid #f1f1f1;
  background-color: #000000;
  cursor: default;
  opacity: var(--progress);
  transition: background-color 200ms;

  --oscillation-x: calc(
    ((exp(-1 * var(--damping) * var(--progress) * 25)) * var(--amplitude) *
      cos(var(--frequency) * (var(--progress) * 25 + var(--i, 0)))) * var(--progress)
  );
  --oscillation-y: calc(
    ((exp(-1 * var(--damping) * var(--progress) * 25)) * var(--amplitude) *
      sin(var(--frequency) * (var(--progress) * 25 + var(--i, 0)))) * var(--progress)
  );

  transform: translateY(var(--oscillation-y)) translateX(var(--oscillation-x));
}

.circle:hover {
  background-color: #00DC36;
  color: #f1f1f1;
}

.circle a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.circle a svg {
  width: 45%;
  height: 45%;
  fill: #CF6CFB;
  transition: fill 200ms ease;
}

.circle:hover a svg {
  fill: #ffffff;
}

.unfold {
  display: grid;
  place-items: center;
  position: relative;
  font-size: 2rem;
  color: #457b9d;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 10%;
  background-color: #FDCC06;
  transition: transform 100ms;
  z-index: 100;
}

.unfold:has(:active) {
  transform: scale(1.025);
}

.unfold svg {
  width: 60%;
  fill: #000000;
}

.unfold input#menu-toggle {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 101;
}

/* ==========================================================================
   DATA-ATTRIBUTE DRIVEN PURE CSS MENU TOOLTIPS
   ========================================================================== */
.circle a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(var(--circle-size) + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  transform-origin: left center;
  background-color: #0f172a;
  color: #00BED4;
  font-family: "Iosevka Charon", monospace;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #FF3EB5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle a::before {
  content: '';
  position: absolute;
  left: calc(var(--circle-size) + 6px);
  top: 50%;
  transform: translateY(-50%) scale(0.5);
  transform-origin: left center;
  border-width: 4px 6px 4px 0;
  border-style: solid;
  border-color: transparent #FF3EB5 transparent transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

:root:has(nav input#menu-toggle:checked) .circle:hover a::after,
:root:has(nav input#menu-toggle:checked) .circle:hover a::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ==========================================================================
   3. RESPONSIVE DASHBOARD CORE SYSTEM (MAIN CONTENT GRID)
   ========================================================================== */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--outer-spacing);
  width: 100%;
}

.dashboard-card {
  background-color: #1e293b;
  border: 1px solid #1e293b;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 250ms ease, box-shadow 250ms ease;
}

.dashboard-card.green-theme:hover { border-color: #38C696; box-shadow: 0 8px 25px rgba(56, 198, 150, 0.2); }
.dashboard-card.cyan-theme:hover { border-color: #00BED4; box-shadow: 0 8px 25px rgba(0, 190, 212, 0.2); }
.dashboard-card.pink-theme:hover { border-color: #FF3EB5; box-shadow: 0 8px 25px rgba(255, 62, 181, 0.2); }
.dashboard-card:hover { transform: translateY(-5px); }

.card-media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #0f172a;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.dashboard-card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-body p { font-size: 0.9rem; line-height: 1.5; margin-top: 0.5rem; letter-spacing: 0.05em; opacity: 0.85; }

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(15, 23, 42, 0.85);
  font-family: "Iosevka Charon", monospace;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.green-theme .card-badge { color: #38C696; border: 1px solid #38C696; }
.cyan-theme .card-badge { color: #00BED4; border: 1px solid #00BED4; }
.pink-theme .card-badge { color: #FF3EB5; border: 1px solid #FF3EB5; }
.card-action { margin-top: auto; padding-top: 1.5rem; }

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: "Squada One", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background-color 200ms ease, color 200ms ease;
}

.green-theme .card-btn { border: 1px solid #38C696; color: #38C696; background: transparent; }
.green-theme .card-btn:hover { background: #38C696; color: #0f172a; }
.cyan-theme .card-btn { border: 1px solid #00BED4; color: #00BED4; background: transparent; }
.cyan-theme .card-btn:hover { background: #00BED4; color: #0f172a; }
.pink-theme .card-btn { border: 1px solid #FF3EB5; color: #FF3EB5; background: transparent; }
.pink-theme .card-btn:hover { background: #FF3EB5; color: #0f172a; }

/* ==========================================================================
   4. BODY SHOP DOWNLOADS CORE CONTAINER SYSTEM & FILTERS
   ========================================================================== */
.filter-controller { display: none; }

.filter-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #2d3748;
  padding-bottom: 1rem;
}

.tab-label {
  font-family: "Squada One", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a0aec0;
  padding: 8px 16px;
  border: 1px solid #2d3748;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease;
}

.tab-label:hover { color: #00BED4; border-color: #00BED4; }

#tab-all:checked ~ .filter-tabs-nav label[for="tab-all"],
#tab-genetics:checked ~ .filter-tabs-nav label[for="tab-genetics"],
#tab-clothing:checked ~ .filter-tabs-nav label[for="tab-clothing"],
#tab-hair:checked ~ .filter-tabs-nav label[for="tab-hair"] {
  color: #0f172a;
  background-color: #00BED4;
  border-color: #00BED4;
  box-shadow: 0 0 12px rgba(0, 190, 212, 0.4);
}

#tab-genetics:checked ~ .download-grid .download-card:not(.cat-genetics),
#tab-clothing:checked ~ .download-grid .download-card:not(.cat-clothing),
#tab-hair:checked ~ .download-grid .download-card:not(.cat-hair) {
  display: none !important;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--outer-spacing);
  width: 100%;
}

.download-card {
  background-color: #1a202c;
  border: 1px solid #2d3748;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.download-card:hover { border-color: #00BED4; box-shadow: 0 6px 20px rgba(0, 190, 212, 0.15); }
.download-media { width: 100%; height: 220px; background-color: #0f172a; position: relative; overflow: hidden; }
.download-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.download-card:hover .download-media img { transform: scale(1.03); }

.file-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #0f172a;
  color: #00BED4;
  font-family: "Iosevka Charon", monospace;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px solid #00BED4;
}

.pack-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(15, 23, 42, 0.9);
  font-family: "Iosevka Charon", monospace;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #FDCC06;
  color: #FDCC06;
  z-index: 2;
}

.pack-badge.base-game { border-color: #38C696; color: #38C696; }
.download-body { padding: 1rem; display: flex; flex-direction: column; flex-grow: 1; }

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0.75rem;
  font-family: "Iosevka Charon", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #a0aec0;
}

.meta-item { background-color: #2d3748; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.05em; }
.download-actions { margin-top: auto; display: grid; grid-template-columns: 1fr; gap: 10px; align-items: center; }
.download-actions.split-actions { grid-template-columns: 1fr 1fr; }

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #00BED4;
  color: #0f172a;
  border: none;
  border-radius: 4px;
  padding: 10px;
  ffont-family: "Squada One", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.btn-download:hover { background-color: #00DC36; }
.btn-download svg { width: 14px; height: 14px; fill: currentColor; }

.btn-external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #FF3EB5;
  border: 1px solid #FF3EB5;
  border-radius: 4px;
  padding: 10px;
  font-family: "Squada One", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 200ms ease;
}

.btn-external:hover { background-color: #FF3EB5; color: #0f172a; box-shadow: 0 0 10px rgba(255, 62, 181, 0.4); }
.btn-external svg { width: 14px; height: 14px; fill: currentColor; }

/* ==========================================================================
   5. TV GUIDE & VIDEO STREAMING MATRIX SYSTEM
   ========================================================================== */
.tv-layout-wrapper { display: flex; flex-direction: column; gap: var(--outer-spacing); width: 100%; }
.featured-theater { background-color: #1a202c; border: 2px solid #38C696; border-radius: 8px; overflow: hidden; box-shadow: 0 0 20px rgba(56, 198, 150, 0.15); }
.video-frame-container { position: relative; width: 100%; padding-top: 56.25%; background-color: #000; }
.video-frame-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.theater-info { padding: 1.5rem; }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--outer-spacing); width: 100%; }
.video-card { background-color: #1e293b; border: 1px solid #2d3748; border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 200ms ease; }
.video-thumbnail-wrapper { position: relative; width: 100%; padding-top: 56.25%; background-color: #0f172a; }
.video-thumbnail-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

.timestamp-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #FDCC06;
  font-family: "Iosevka Charon", monospace;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #FDCC06;
}

.play-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

.play-overlay-icon svg { width: 45%; height: 45%; fill: #0f172a; margin-left: 2px; }
.video-card:hover .play-overlay-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
.video-card-body h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: 0.5rem; }
.video-card-body p { font-size: 0.85rem; line-height: 1.4; opacity: 0.8; }

/* ==========================================================================
   6. CHANNELS SEPARATION & SEGMENTATION MODULES
   ========================================================================== */
.channel-segment { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px dashed #2d3748; }
.channel-title-container { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.channel-tag { font-family: "Iosevka Charon", monospace; font-size: 0.75rem; font-weight: bold; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.05em; background-color: #0f172a; }

.chan-stories .channel-tag { color: #38C696; border: 1px solid #38C696; box-shadow: 0 0 10px rgba(56, 198, 150, 0.2); }
.chan-builds .channel-tag { color: #FDCC06; border: 1px solid #FDCC06; box-shadow: 0 0 10px rgba(253, 204, 6, 0.2); }
.chan-lab .channel-tag { color: #FF3EB5; border: 1px solid #FF3EB5; box-shadow: 0 0 10px rgba(255, 62, 181, 0.2); }

.chan-stories .video-card:hover { border-color: #38C696; box-shadow: 0 6px 20px rgba(56, 198, 150, 0.15); }
.chan-stories .play-overlay-icon { background-color: rgba(56, 198, 150, 0.95); }
.chan-builds .video-card:hover { border-color: #FDCC06; box-shadow: 0 6px 20px rgba(253, 204, 6, 0.15); }
.chan-builds .play-overlay-icon { background-color: rgba(253, 204, 6, 0.95); }
.chan-lab .video-card:hover { border-color: #FF3EB5; box-shadow: 0 6px 20px rgba(255, 62, 181, 0.15); }
.chan-lab .play-overlay-icon { background-color: rgba(255, 62, 181, 0.95); }

.channel-segment { counter-reset: video-accumulator; }
.channel-segment .video-card { counter-increment: video-accumulator; }
.channel-tag::after { content: " (QTY: " counter(video-accumulator) ")"; }
.channel-segment:hover .channel-tag::after { color: #ffffff; transition: color 200ms ease; }

/* ==========================================================================
   7. SIMS CHARACTER DIRECTORY GRAPHIC SYSTEM
   ========================================================================== */
.character-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--outer-spacing); width: 100%; }
.character-card { background-color: #1e293b; border: 1px solid #2d3748; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 250ms ease; }
.character-card:hover { transform: translateY(-5px); border-color: #00BED4; box-shadow: 0 8px 25px rgba(0, 190, 212, 0.2); }
.profile-portrait { width: 100%; height: 260px; background-color: #0f172a; position: relative; overflow: hidden; }
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 400ms ease; }
.character-card:hover .profile-portrait img { transform: scale(1.04); }

.lifestage-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #FDCC06;
  font-family: "Iosevka Charon", monospace;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #FDCC06;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.profile-subtitle { font-family: "Iosevka Charon", monospace; font-size: 0.75rem; color: #00BED4; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.profile-body p { font-size: 0.85rem; line-height: 1.5; opacity: 0.85; margin-bottom: 1.5rem; }
.personality-matrix { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 1rem; border-top: 1px dashed #2d3748; }
.trait-row { display: flex; flex-direction: column; gap: 4px; }
.trait-labels { display: flex; justify-content: space-between; font-family: "Iosevka Charon", monospace; font-size: 0.7rem; text-transform: uppercase; color: #a0aec0; letter-spacing: 0.05em; }
.stat-bar-track { width: 100%; height: 6px; background-color: #0f172a; border-radius: 3px; overflow: hidden; }
.stat-bar-fill { height: 100%; background-color: #FF3EB5; border-radius: 3px; box-shadow: 0 0 8px rgba(255, 62, 181, 0.6); width: var(--stat-val, 50%); }
.trait-row:nth-child(even) .stat-bar-fill { background-color: #38C696; box-shadow: 0 0 8px rgba(56, 198, 150, 0.6); }

/* ==========================================================================
   8. ASYNCHRONOUS SCREENSHOT MASONRY GALLERY SYSTEM
   ========================================================================== */
.gallery-container { width: 100%; margin: 0 auto; }
.masonry-grid { column-count: 1; column-gap: var(--outer-spacing); width: 100%; }

@media (min-width: 640px) { .masonry-grid { column-count: 2; } }
@media (min-width: 1024px) { .masonry-grid { column-count: 3; } }

.masonry-item { background-color: #1e293b; border: 1px solid #2d3748; border-radius: 8px; margin-bottom: var(--outer-spacing); overflow: hidden; break-inside: avoid; display: flex; flex-direction: column; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 200ms ease; }
.masonry-item:hover { transform: translateY(-4px) scale(1.01); border-color: #FF3EB5; box-shadow: 0 8px 25px rgba(255, 62, 181, 0.15); }
.story-media { width: 100%; position: relative; overflow: hidden; background-color: #0f172a; }
.story-media img { display: block; width: 100%; height: auto; object-fit: cover; transition: transform 400ms ease; }
.masonry-item:hover .story-media img { transform: scale(1.03); }
.story-body { padding: 1.25rem; display: flex; flex-direction: column; }
.story-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: #38C696; }
.story-body p { font-size: 0.85rem; line-height: 1.45; opacity: 0.85; margin-bottom: 1rem; }
.story-meta { display: flex; justify-content: space-between; align-items: center; font-family: "Iosevka Charon", monospace; font-size: 0.65rem; color: #00BED4; border-top: 1px dashed #2d3748; padding-top: 0.75rem; margin-top: auto; }
.story-date { color: #a0aec0; }

/* ==========================================================================
   9. AFFILIATES & CREATOR LINKS MATRIX SYSTEM
   ========================================================================== */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--outer-spacing);
  width: 100%;
}

.creator-card {
  background-color: #1e293b;
  border: 1px solid #2d3748;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 250ms ease;
}

.creator-card:hover {
  transform: translateY(-4px);
  border-color: #FDCC06;
  box-shadow: 0 6px 20px rgba(253, 204, 6, 0.15);
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #2d3748;
}

.creator-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #FDCC06;
}

.status-tag {
  font-family: "Iosevka Charon", monospace;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #2d3748;
  background-color: #0f172a;
}

.status-tag.site-active { color: #38C696; border-color: #38C696; }
.status-tag.site-archive { color: #00BED4; border-color: #00BED4; }
.status-tag.site-mods { color: #FF3EB5; border-color: #FF3EB5; }

.creator-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.creator-action {
  margin-top: auto;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #FDCC06;
  background-color: transparent;
  color: #FDCC06;
  font-family: "Squada One", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background-color 200ms ease, color 200ms ease;
}

.btn-visit:hover {
  background-color: #FDCC06;
  color: #0f172a;
}

.btn-visit svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   10. NEIGHBORHOODS & WORLD REGISTRY GRID SYSTEM
   ========================================================================== */
.hood-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.hood-card {
  background-color: #1e293b;
  border: 1px solid #2d3748;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

@media (min-width: 900px) {
  .hood-card {
    grid-template-columns: 45% 55%;
  }
}

.hood-card:hover {
  border-color: #00BED4;
  box-shadow: 0 8px 25px rgba(0, 190, 212, 0.15);
}

.hood-media-frame {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
}

.hood-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.hood-card:hover .hood-media-frame img {
  transform: scale(1.03);
}

.hood-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hood-details h3 {
  font-size: 1.6rem;
  color: #00BED4;
  margin-bottom: 0.25rem;
}

.hood-telemetry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.25rem;
  font-family: "Iosevka Charon", monospace;
  font-size: 0.7rem;
  color: #FDCC06;
}

.telemetry-node {
  background-color: #0f172a;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(253, 204, 6, 0.3);
}

.hood-details p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hood-routing-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  width: 100%;
}

.btn-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border-radius: 4px;
  font-family: "Squada One", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.btn-lots { border: 1px solid #38C696; color: #38C696; background-color: transparent; }
.btn-lots:hover { background-color: #38C696; color: #0f172a; }
.btn-stories { border: 1px solid #FF3EB5; color: #FF3EB5; background-color: transparent; }
.btn-stories:hover { background-color: #FF3EB5; color: #0f172a; }
.btn-characters { border: 1px solid #FDCC06; color: #FDCC06; background-color: transparent; }
.btn-characters:hover { background-color: #FDCC06; color: #0f172a; }

/* ==========================================================================
    ENHANCED VECTOR SOCIAL MEDIA FOOTER
   ========================================================================== */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 75%%;
  padding: 3rem 0 2rem 0;
  margin-top: auto;
}

.site-footer .footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.site-footer .footer-socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  transition: transform 200ms ease;
}

.site-footer .footer-socials a svg {
  width: 100%;
  height: 100%;
  fill: #00BED4;
  transition: fill 200ms ease;
}

.site-footer .footer-socials a:hover { transform: translateY(-3px); }
.site-footer .footer-socials a:hover svg { fill: #00DC36; }
.site-footer .footer-socials a:active { transform: scale(0.92); }

.site-footer .copyright {
  font-size: 11px;
  color: #f1f1f1;
  opacity: 0.7;
  display: block;
}

/* ==========================================================================
   FLOATING BACK TO TOP INTERACTIVE COMPONENT
   ========================================================================== */
.top-btn {
display: block;
 position: relative;
 bottom: 10px;
 left: 10px;
 background: transparent; /* Transparent background */
 color: var(--color-cyan); /* Default blue outline */
 border: none;
 padding: 0;
 width: 75px;
 height: 75px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 1000;

 /* Smooth color shift and lift animations */
 transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;

 /* Hidden by default */
 opacity: 0;
 pointer-events: none;
}

/* Hover state: transitions color to purple and floats up */
.top-btn:hover {
 color: var(--color-purple); /* Turns purple */
 transform: translateY(-6px);
}

/* Click state feedback */
.top-btn:active {
 transform: translateY(-1px);
}

/* Class toggled by JavaScript based on scroll position */
.top-btn.show {
 opacity: 1;
 pointer-events: auto;
}
