* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #16161a;
  --pink: #f0a8c0;
  --pink-light: #fad4e4;
  --gold: #f5e8a8;
  --gold-light: #fdf6d8;
  --green: #a8d4a0;
  --green-deep: #5a9e70;
  --coral: #e87272;
  --lime: #dde89a;
  --olive: #8fa832;
  --cream: #f8f3ee;
  --warm: #6b6662;
  --border: rgba(245, 232, 168, 0.12);
  --border-h: rgba(245, 232, 168, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --section-pad-top: clamp(80px, 10vw, 120px);
  --section-pad-bottom: clamp(60px, 8vw, 100px);
  --inner-pad: clamp(16px, 5vw, 64px);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0e0e11;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--pink) 0%,
    var(--gold) 50%,
    var(--green) 100%
  );
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--pink-light) 0%,
    var(--gold-light) 50%,
    var(--lime) 100%
  );
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0e0e11;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--lime), var(--gold));
  z-index: 999;
  pointer-events: none;
  transition: width 0.08s linear;
}
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite;
  opacity: 0;
}
.star:nth-child(3n) {
  background: rgba(240, 168, 192, 0.8);
}
.star:nth-child(3n + 1) {
  background: rgba(168, 212, 160, 0.8);
}
.star:nth-child(3n + 2) {
  background: rgba(245, 232, 168, 0.9);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
}
@keyframes sparkleAnim {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0);
  }
}
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 50px);
  height: clamp(56px, 7vw, 68px);
  background: linear-gradient(
    to bottom,
    rgba(13, 15, 14, 0.96) 0%,
    transparent 100%
  );
}
.nav-logo {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 4px;
  color: var(--pink);
  text-decoration: none;
  transition:
    text-shadow 0.3s,
    color 0.3s;
}
.nav-logo:hover {
  color: var(--pink-light);
  text-shadow: 0 0 28px rgba(240, 168, 192, 0.55);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  transition: filter 0.25s;
}
.menu-toggle-btn:hover {
  filter: drop-shadow(0 0 8px rgba(240, 168, 192, 0.5));
}
.ham-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition:
    background 0.25s,
    transform 0.3s var(--ease),
    width 0.25s,
    opacity 0.25s;
  transform-origin: center;
}
.menu-toggle-btn.active .ham-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--pink);
}
.menu-toggle-btn.active .ham-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle-btn.active .ham-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--pink);
}
#navDropdown {
  position: fixed;
  top: clamp(60px, 8vw, 76px);
  right: clamp(16px, 4vw, 50px);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 232, 168, 0.08);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 32px)
    clamp(14px, 2.5vw, 22px);
  min-width: min(260px, calc(100vw - 32px));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 168, 192, 0.03);
}
#navDropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 16px;
}
.nav-drop-list li a {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
  opacity: 0.38;
  display: block;
  padding: 7px 0;
  transition:
    opacity 0.18s,
    color 0.18s,
    transform 0.18s,
    letter-spacing 0.18s;
}
.nav-drop-list li a:hover {
  opacity: 1;
  color: var(--pink-light);
  transform: translateX(-6px);
  letter-spacing: 3px;
}
.nav-drop-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, rgba(245, 232, 168, 0.18), transparent);
  margin-bottom: 16px;
}
.nav-drop-socials {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.nav-drop-social {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  min-height: 42px;
  border: 1px solid rgba(245, 232, 168, 0.12);
  border-radius: 3px;
  color: rgba(245, 232, 168, 0.4);
  text-decoration: none;
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}
.nav-drop-social svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}
.nav-drop-social--twitch:hover {
  background: rgba(145, 70, 255, 0.85);
  border-color: rgba(145, 70, 255, 0.9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.3);
}
.nav-drop-social--x:hover {
  background: rgba(240, 168, 192, 0.85);
  border-color: rgba(240, 168, 192, 0.9);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 168, 192, 0.25);
}
.nav-drop-social--vgen:hover {
  background: rgba(143, 168, 50, 0.85);
  border-color: rgba(143, 168, 50, 0.9);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 168, 50, 0.25);
}
.section {
  position: relative;
  z-index: 1;
}
.section--home {
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
}
.section--inner {
  border-top: 1px solid rgba(245, 232, 168, 0.06);
}
.inner-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}
.section-bg-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
}
.section-bg-accent--coral {
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(232, 114, 114, 0.6) 0%,
    transparent 60%
  );
}
.section-bg-accent--lime {
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(143, 168, 50, 0.6) 0%,
    transparent 60%
  );
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.page-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.page-header-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 60%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  margin-bottom: 16px;
}
.page-header-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--pink), transparent);
}
.home-center {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.char-image {
  position: absolute;
  height: min(78vh, 78svh);
  width: auto;
  object-fit: contain;
  z-index: 5;
  top: 50%;
  left: 47.5%;
  transform: translate(-50%, -50%);
  animation: charFloat 8s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  margin-bottom: clamp(40px, 6vw, 72px);
}
@keyframes charFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}
.home-side-left {
  position: absolute;
  left: clamp(18%, 24vw, 28%);
  top: 42%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 16px);
  z-index: 10;
}
.home-side-left .home-socials-panel {
  position: relative;
  bottom: unset;
  left: unset;
  animation: none;
  margin-top: clamp(4px, 1vh, 12px);
  max-width: unset;
    margin-left: clamp(8px, 1.5vw, 20px);
}
.home-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  animation: slideInLeft 0.7s var(--ease) forwards;
  transition:
    transform 0.35s var(--ease-back),
    filter 0.3s;
  padding: 4px 0;
}
.home-menu-item:nth-child(1) {
  animation-delay: 0.15s;
}
.home-menu-item:nth-child(2) {
  animation-delay: 0.28s;
}
.home-menu-item:nth-child(3) {
  animation-delay: 0.41s;
}
.home-menu-item:hover {
  transform: translateX(8px);
  filter: drop-shadow(0 0 1vw rgba(245, 232, 168, 0.5));
}
.home-menu-item img {
  height: clamp(30px, 5vw, 50px);
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}
.home-menu-item:hover img {
  filter: brightness(1.15);
}
.home-menu-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.4);
  transition: color 0.25s;
}
.home-menu-item:hover .home-menu-label {
  color: var(--gold);
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.home-gallery-cta {
  position: absolute;
  right: clamp(12px, 18%, 22%);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-decoration: none;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
  transition: filter 0.3s, transform 0.3s;
}

.home-gallery-cta:hover {
  filter: drop-shadow(0 0 2vw rgba(245, 232, 168, 0.5));
  transform: translateY(-50%) scale(1.04);
}
.home-gallery-cta img {
  height: clamp(80px, 10vw, 120px);
  width: auto;
  object-fit: contain;
}
.home-gallery-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.35);
}
.name-display {
  position: absolute;
  left: 45%;
  top: 70%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
  animation: charFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 0 2vw rgba(245, 232, 168, 0.25));
}
.name-display img {
  height: clamp(36px, 5vw, 70px);
  width: auto;
}
.scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 1s 1s var(--ease) forwards;
}
.scroll-hint-text {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(245, 232, 168, 0.3);
}
.scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245, 232, 168, 0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  z-index: 901;
}
.lightbox-close {
  position: fixed;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 36px);
  z-index: 920;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 36, 33, 0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s var(--ease);
}
.lightbox-close:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--border-h);
  transform: rotate(90deg);
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 920;
  width: clamp(44px, 5vw, 56px);
  height: clamp(64px, 7vw, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 36, 33, 0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.lightbox-arrow:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--border-h);
}
.lightbox-prev {
  left: clamp(8px, 2vw, 28px);
}
.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lightbox-next {
  right: clamp(8px, 2vw, 28px);
}
.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}
.lightbox-inner {
  position: relative;
  z-index: 910;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.lightbox-img-wrap {
  pointer-events: auto;
}
.lightbox-img {
  max-width: min(78vw, 90vw);
  max-height: min(76vh, 76svh);
  width: auto;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease);
}
.lightbox-img.lb-loaded {
  opacity: 1;
  transform: scale(1);
}
.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  pointer-events: none;
}
.lightbox-label {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.55);
}
.lightbox-counter {
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.3);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.home-socials-panel {
  position: absolute;
  bottom: clamp(20px, 4%, 40px);
  left: clamp(16px, 4%, 50px);
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 170px;
  animation: homeSocialsIn 0.8s 0.6s var(--ease) both;
}

@keyframes homeSocialsIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.home-social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 232, 168, 0.15);
  border-radius: 3px;
  color: rgba(245, 232, 168, 0.45);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.22s var(--ease);
  text-decoration: none;
}

.home-social-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.home-social-icon--twitch:hover   { background: rgba(145,70,255,0.85); border-color: rgba(145,70,255,0.9); color: #fff; box-shadow: 0 4px 14px rgba(145,70,255,0.3); transform: translateY(-2px); }
.home-social-icon--x:hover        { background: rgba(240,168,192,0.85); border-color: rgba(240,168,192,0.9); color: #0d0d0d; box-shadow: 0 4px 14px rgba(240,168,192,0.25); transform: translateY(-2px); }
.home-social-icon--vgen:hover     { background: rgba(143,168,50,0.85); border-color: rgba(143,168,50,0.9); color: #0d0d0d; box-shadow: 0 4px 14px rgba(143,168,50,0.25); transform: translateY(-2px); }
.home-social-icon--tiktok:hover   { background: rgba(0,0,0,0.9); border-color: rgba(255,255,255,0.3); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.4); transform: translateY(-2px); }
.home-social-icon--patreon:hover  { background: rgba(255,102,0,0.85); border-color: rgba(255,102,0,0.9); color: #fff; box-shadow: 0 4px 14px rgba(255,102,0,0.3); transform: translateY(-2px); }
.home-social-icon--instagram:hover{ background: rgba(228,64,95,0.85); border-color: rgba(228,64,95,0.9); color: #fff; box-shadow: 0 4px 14px rgba(228,64,95,0.3); transform: translateY(-2px); }
.home-social-icon--bluesky:hover  { background: rgba(0,133,255,0.85); border-color: rgba(0,133,255,0.9); color: #fff; box-shadow: 0 4px 14px rgba(0,133,255,0.3); transform: translateY(-2px); }
.home-social-icon--kofi:hover     { background: rgba(255,94,91,0.85); border-color: rgba(255,94,91,0.9); color: #fff; box-shadow: 0 4px 14px rgba(255,94,91,0.3); transform: translateY(-2px); }