@layer base {
  html {
    scroll-behavior: smooth;
    background-color: #0f0f1a;
    min-height: 100dvh;
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    background-color: #0f0f1a;
    color: #ffb7c5;
    font-family: 'Nunito', 'Quicksand', sans-serif;
    overflow-x: hidden;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  ::selection {
    background-color: #ff6ac1;
    color: #0f0f1a;
  }
}

/* ===== FONTS ===== */
.font-pixel { font-family: 'VT323', monospace; }
.font-kawaii { font-family: 'ZCOOL KuaiLe', cursive; }
.font-cute { font-family: 'Quicksand', sans-serif; font-weight: 600; }
.font-body { font-family: 'Nunito', sans-serif; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --dark-bg: #0f0f1a;
  --dark-surface: #1a1a2e;
  --dark-card: rgba(26,26,46,0.6);
  --dark-border: rgba(255,183,197,0.1);
  --neon-pink: #ff6ac1;
  --neon-cyan: #4deeea;
  --neon-purple: #c77dff;
  --neon-yellow: #ffd166;
  --neon-green: #39ff14;
  --pastel-pink: #ffb7c5;
  --pastel-lavender: #e0c3fc;
  --pastel-sky: #a5d8ff;
}

/* ===== GLOBAL BOX MODEL ===== */
*, *::before, *::after {
  box-sizing: border-box;
}
main, section, footer, nav {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== PIXEL DECORATIONS ===== */
.pixel-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pixel-heart, .pixel-star {
  position: absolute;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor, .cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  image-rendering: pixelated;
}
.custom-cursor {
  z-index: 10000;
  width: 32px;
  height: 32px;
}
.cursor-trail {
  z-index: 9000;
  width: 0;
  height: 0;
}
.custom-cursor svg {
  image-rendering: pixelated;
  shape-rendering: crispEdges;
}
.cursor-trail-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  width: 12px;
  height: 12px;
  image-rendering: pixelated;
}
@keyframes sparkleFade {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  40% { opacity: 0.7; transform: scale(0.85) rotate(10deg); }
  100% { opacity: 0; transform: scale(0.15) rotate(35deg); }
}
@media (min-width: 1024px) {
  html, body, body * {
    cursor: none !important;
  }
}
@media (max-width: 1023px) {
  .custom-cursor, .cursor-trail, .cursor-trail-particle { display: none !important; }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15,15,26,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-container {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-container { padding: 12px 32px; }
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-16px);
  pointer-events: none;
  overflow: hidden;
  max-width: 0;
}
.nav-brand.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  max-width: 240px;
  overflow: visible;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255,106,193,0.3);
  flex-shrink: 0;
}
.nav-brand span {
  font-family: 'Fredoka One', cursive;
  font-size: 1.125rem;
  color: var(--neon-pink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  margin: 0 16px;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--pastel-pink);
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,183,197,0.1);
  color: var(--neon-pink);
}
.nav-link.active {
  background: rgba(255,106,193,0.2);
  color: var(--neon-pink);
  text-shadow: 0 0 5px var(--neon-pink), 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink);
}
.lang-btn {
  margin-left: 8px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: rgba(255,183,197,0.6);
  font-family: 'VT323', monospace;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.lang-btn:hover {
  border-color: rgba(255,106,193,0.4);
  color: var(--neon-pink);
}
.nav-mobile-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav-mobile-controls { display: none; }
}
@media (max-width: 767px) {
  .nav-container { padding: 10px 14px; box-sizing: border-box; }
  .nav-brand.visible { max-width: calc(100% - 100px); overflow: hidden; }
  .nav-brand span { font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-block; max-width: 180px; }
  .nav-mobile-controls { gap: 0; flex-shrink: 0; }
  .lang-btn { padding: 7px 10px; font-size: 0.7rem; margin-left: 0; }
  .menu-toggle { width: 40px; height: 40px; }
}
.menu-toggle {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--neon-pink);
  cursor: pointer;
  padding: 0;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 9999px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open {
  display: block;
  opacity: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 0;
  z-index: 99995;
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--dark-border);
  padding: 24px 20px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu .nav-link {
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.mobile-menu.open .nav-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .nav-link:nth-child(1) { transition-delay: 50ms; }
.mobile-menu.open .nav-link:nth-child(2) { transition-delay: 100ms; }
.mobile-menu.open .nav-link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu.open .nav-link:nth-child(4) { transition-delay: 200ms; }
.mobile-menu.open .nav-link:nth-child(5) { transition-delay: 250ms; }
.mobile-menu.open .nav-link:nth-child(6) { transition-delay: 300ms; }
.mobile-menu .lang-switcher-mobile {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,183,197,0.1);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.mobile-menu.open .lang-switcher-mobile {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 350ms;
}
.mobile-menu .lang-switcher-mobile .lang-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.875rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0f0f1a, #0f0f1a, #1a1a2e);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255,106,193,0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,106,193,0.8) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-grid-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, #1a1a2e, transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 96px 16px 0;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-content { padding-top: 112px; }
}
.hero-logo-wrap {
  margin-bottom: 2rem;
}
.hero-logo-relative {
  position: relative;
  display: inline-block;
}
.hero-logo-img {
  width: 144px;
  height: 144px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255,106,193,0.4), 0 0 60px rgba(77,238,234,0.2);
}
@media (min-width: 768px) {
  .hero-logo-img { width: 192px; height: 192px; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.sparkle {
  position: absolute;
  animation: bounceSoft 2s ease-in-out infinite;
}
.sparkle-1 { top: -8px; right: -8px; }
.sparkle-2 { bottom: -4px; left: -12px; animation-delay: 0.5s; }
@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0px #ff6ac1, 6px 6px 0px rgba(0,0,0,0.3);
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
}

.hero-deco-heart {
  position: absolute;
  top: -12px;
  left: -20px;
  color: #ff6ac1;
  animation: floatSlow 5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.hero-deco-star {
  position: absolute;
  top: -8px;
  right: -16px;
  color: #ffd166;
  animation: floatSlow 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.hero-deco-sparkle {
  position: absolute;
  bottom: -6px;
  left: -14px;
  color: #4deeea;
  animation: spinSlow 8s linear infinite;
}

.hero-deco-heart-small {
  position: absolute;
  bottom: -10px;
  right: -12px;
  color: #c77dff;
  animation: floatSlow 5s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-subtitle {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 0px #4deeea, 4px 4px 0px rgba(0,0,0,0.2);
}
@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.875rem; }
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 2.25rem; }
}
.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--pastel-lavender);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .hero-tagline { font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .hero-tagline { font-size: 1.25rem; }
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.divider-line {
  height: 2px;
  width: 48px;
  background: linear-gradient(to right, transparent, rgba(255,106,193,0.5));
}
.divider-line-r {
  background: linear-gradient(to left, transparent, rgba(255,106,193,0.5));
}
.divider-icon {
  color: var(--neon-pink);
  animation: bounceSoft 2s ease-in-out infinite;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}
.cta-primary, .cta-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'VT323', monospace;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.cta-primary {
  background: rgba(255,106,193,0.2);
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(255,106,193,0.3); }
  50% { box-shadow: 0 0 20px rgba(255,106,193,0.5), 0 0 40px rgba(255,106,193,0.3); }
}
.cta-primary:hover {
  background: rgba(255,106,193,0.3);
}
.cta-secondary {
  border: 2px solid rgba(77,238,234,0.5);
  color: var(--neon-cyan);
}
.cta-secondary:hover {
  background: rgba(77,238,234,0.1);
  border-color: var(--neon-cyan);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION COMMON ===== */
section {
  position: relative;
}
.section-bg {
  position: absolute;
  inset: 0;
}
.gallery-bg {
  background: linear-gradient(to bottom, #1a1a2e, #0f0f1a, #0f0f1a);
}
.section-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 80px 16px;
}
@media (min-width: 768px) {
  .section-content { padding: 112px 32px; }
}
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}
.section-header-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'VT323', monospace;
  font-size: 1.875rem;
  color: var(--neon-pink);
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0px #c77dff;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}
.section-label {
  font-family: 'VT323', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.section-subtitle {
  font-family: 'Quicksand', sans-serif;
  color: var(--pastel-lavender);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-subtitle { font-size: 1.125rem; }
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  color: var(--pastel-pink);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.gallery-filter:hover {
  border-color: rgba(255,106,193,0.5);
  color: var(--neon-pink);
}
.gallery-filter.active {
  background: rgba(255,106,193,0.2);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--dark-border);
  background: none;
  padding: 0;
  text-align: left;
  transition: all 0.5s ease;
  cursor: pointer;
}
.gallery-item:hover {
  border-color: rgba(255,106,193,0.6);
}
.gallery-item .aspect-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.9), rgba(15,15,26,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h3 {
  font-family: 'VT323', monospace;
  color: var(--neon-pink);
  font-size: 0.875rem;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .gallery-overlay h3 { font-size: 1rem; }
}
.gallery-overlay p {
  font-family: 'Quicksand', sans-serif;
  color: var(--pastel-lavender);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-overlay p { font-size: 0.875rem; }
}
.gallery-overlay .click-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--neon-cyan);
  font-size: 0.75rem;
  font-family: 'Quicksand', sans-serif;
}
.gallery-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: transparent;
  border-style: solid;
  transition: all 0.3s ease;
}
.gallery-corner.tl { top: 8px; left: 8px; border-left-width: 2px; border-top-width: 2px; }
.gallery-corner.tr { top: 8px; right: 8px; border-right-width: 2px; border-top-width: 2px; }
.gallery-corner.bl { bottom: 8px; left: 8px; border-left-width: 2px; border-bottom-width: 2px; }
.gallery-corner.br { bottom: 8px; right: 8px; border-right-width: 2px; border-bottom-width: 2px; }
.gallery-item:hover .gallery-corner {
  border-color: rgba(255,106,193,0.6);
}

/* ===== GALLERY SHOW MORE ===== */
.gallery-show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.gallery-show-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 2px solid rgba(255,106,193,0.5);
  background: none;
  color: var(--neon-pink);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.gallery-show-more-btn:hover {
  background: rgba(255,106,193,0.1);
  border-color: var(--neon-pink);
}
.gallery-show-more-btn i {
  font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 12px;
  border: 2px solid var(--dark-border);
  background: rgba(26,26,46,0.5);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255,106,193,0.3);
}
.faq-item.open {
  border-color: var(--neon-pink);
  background: rgba(255,106,193,0.05);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
@media (min-width: 768px) {
  .faq-question { padding: 20px 24px; }
}
.faq-question-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-number {
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  font-size: 0.875rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .faq-number { font-size: 1rem; }
}
.faq-question-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pastel-pink);
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question-text {
  color: var(--neon-pink);
}
@media (min-width: 768px) {
  .faq-question-text { font-size: 1rem; }
}
.faq-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: all 0.3s ease;
  background: var(--dark-surface);
}
.faq-item.open .faq-toggle {
  background: rgba(255,106,193,0.2);
  transform: rotate(45deg);
}
.faq-toggle svg {
  color: var(--neon-pink);
}
.faq-answer-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-item.open .faq-answer-wrap {
  max-height: 500px;
  opacity: 1;
}
.faq-answer {
  padding: 0 20px 20px;
}
@media (min-width: 768px) {
  .faq-answer { padding: 0 24px 24px; }
}
.faq-answer-line {
  height: 1px;
  background: rgba(255,106,193,0.2);
  margin-bottom: 16px;
}
.faq-answer-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  color: var(--pastel-lavender);
  line-height: 1.625;
}
@media (min-width: 768px) {
  .faq-answer-text { font-size: 1rem; }
}
.faq-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.faq-deco-heart { color: rgba(255,183,197,0.4); }
.faq-deco-star { color: rgba(77,238,234,0.4); }

/* ===== SOCIAL ===== */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.social-card {
  position: relative;
  border-radius: 16px;
  border: 2px solid var(--dark-border);
  background: var(--dark-card);
  padding: 24px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s ease;
  display: block;
}
@media (min-width: 768px) {
  .social-card { padding: 32px; }
}
.social-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.discord-card:hover { border-color: #5865F2; }
.discord-card:hover .social-card-bg { background: rgba(88,101,242,0.05); opacity: 1; }
.fluxer-card:hover { border-color: var(--neon-cyan); }
.fluxer-card:hover .social-card-bg { background: rgba(77,238,234,0.05); opacity: 1; }
.social-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: inset 0 0 40px rgba(88,101,242,0.1);
}
.discord-card:hover .social-card-glow { opacity: 1; }
.fluxer-glow { box-shadow: inset 0 0 40px rgba(77,238,234,0.1); }
.fluxer-card:hover .fluxer-glow { opacity: 1; }
.social-card-inner {
  position: relative;
  z-index: 10;
}
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .social-icon { width: 64px; height: 64px; }
}
.social-card:hover .social-icon {
  transform: scale(1.1);
}
.discord-icon {
  background: rgba(88,101,242,0.2);
  color: #5865F2;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .discord-icon { font-size: 2.25rem; }
}
.fluxer-icon {
  background: rgba(77,238,234,0.2);
  color: var(--neon-cyan);
  font-size: 1.875rem;
}
.fluxer-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .fluxer-icon { font-size: 2.25rem; }
  .fluxer-logo-img { width: 2.5rem; height: 2.5rem; }
}
.social-card-title {
  font-family: 'VT323', monospace;
  font-size: 1.25rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .social-card-title { font-size: 1.5rem; }
}
.discord-card .social-card-title { color: #aab8f2; }
.discord-card:hover .social-card-title { color: #5865F2; }
.fluxer-card .social-card-title { color: rgba(77,238,234,0.7); }
.fluxer-card:hover .social-card-title { color: var(--neon-cyan); }
.social-card-desc {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  color: rgba(224,195,252,0.7);
  margin-bottom: 16px;
  line-height: 1.625;
}
.social-card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'VT323', monospace;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.discord-card .social-card-cta { color: #5865F2; }
.fluxer-cta { color: var(--neon-cyan); }
.social-card:hover .social-card-cta svg {
  transform: translateX(4px);
}
.social-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.social-deco-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, rgba(255,183,197,0.3));
}
.social-deco-line-r {
  background: linear-gradient(to left, transparent, rgba(255,183,197,0.3));
}
.social-deco-heart {
  color: rgba(255,183,197,0.5);
  animation: float 6s ease-in-out infinite;
}

/* ===== CONTACT ===== */
.contact-section { overflow: hidden; }
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.5), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.contact-card {
  border-radius: 12px;
  border: 2px solid var(--dark-border);
  background: var(--dark-card);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .contact-card { padding: 24px; }
}
.contact-card:hover {
  border-color: rgba(255,106,193,0.5);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}
.contact-icon-pink { background: rgba(255,106,193,0.1); color: var(--neon-pink); font-size: 1.5rem; }
.contact-card:hover .contact-icon-pink { background: rgba(255,106,193,0.2); }
.contact-icon-cyan { background: rgba(77,238,234,0.1); color: var(--neon-cyan); font-size: 1.5rem; }
.contact-card:hover .contact-icon-cyan { background: rgba(77,238,234,0.2); }
.contact-icon-purple { background: rgba(199,125,255,0.1); color: var(--neon-purple); font-size: 1.5rem; }
.contact-card:hover .contact-icon-purple { background: rgba(199,125,255,0.2); }
.contact-card-title {
  font-family: 'VT323', monospace;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contact-card-title { font-size: 1rem; }
}
.contact-title-pink { color: var(--neon-pink); }
.contact-title-cyan { color: var(--neon-cyan); }
.contact-title-purple { color: var(--neon-purple); }
.contact-card-desc {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  color: rgba(224,195,252,0.7);
}
@media (min-width: 768px) {
  .contact-card-desc { font-size: 0.875rem; }
}
.blahaj-note {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(165,216,255,0.3);
  background: var(--dark-card);
  margin-top: 40px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  color: var(--pastel-sky);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .blahaj-note { margin-top: 56px; font-size: 1rem; }
}
.contact-grid-single {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.contact-grid-single .contact-card {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 32px 16px;
  border-top: 1px solid var(--dark-border);
}
@media (min-width: 768px) {
  .footer { padding: 40px 16px; }
}
.footer-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.footer-pixel {
  width: 6px;
  height: 6px;
  border-radius: 2px;
}
/* ── Footer nav (static internal links for SEO crawlers) ── */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: rgba(255,182,215,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-nav a:hover {
  color: var(--neon-pink);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}
.footer-brand-text {
  font-family: 'VT323', monospace;
  color: var(--neon-pink);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-brand-text { font-size: 1rem; }
}
.footer-tagline {
  font-family: 'Quicksand', sans-serif;
  color: rgba(224,195,252,0.5);
  font-size: 0.75rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-tagline { font-size: 0.875rem; }
}
.footer-copyright {
  font-family: 'VT323', monospace;
  color: rgba(224,195,252,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  animation: fadeIn 0.3s ease-out forwards;
}
.lightbox.hidden {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--neon-pink);
  font-size: 1.25rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  border-color: var(--neon-pink);
  background: rgba(255,106,193,0.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--neon-cyan);
  font-size: 1.25rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .lightbox-nav { width: 48px; height: 48px; }
  .lightbox-close { width: 48px; height: 48px; }
}
.lightbox-nav:hover {
  border-color: var(--neon-cyan);
  background: rgba(77,238,234,0.1);
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
@media (min-width: 768px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}
.lightbox-content {
  max-width: 48rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--dark-border);
}
.lightbox-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
.lightbox-info {
  margin-top: 16px;
  text-align: center;
}
.lightbox-info h3 {
  font-family: 'VT323', monospace;
  font-size: 1.25rem;
  color: var(--neon-pink);
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px #c77dff;
}
@media (min-width: 768px) {
  .lightbox-info h3 { font-size: 1.5rem; }
}
.lightbox-info p {
  font-family: 'Quicksand', sans-serif;
  color: var(--pastel-lavender);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .lightbox-info p { font-size: 1rem; }
}
.lightbox-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  color: rgba(255,183,197,0.6);
  font-size: 0.75rem;
  font-family: 'Quicksand', sans-serif;
}

/* ===== PARALLAX IMAGES ===== */
.parallax-img-wrap {
  position: fixed;
  pointer-events: none;
  user-select: none;
  display: none;
  z-index: 2;
  opacity: 0;
  will-change: transform, opacity;
}
@media (min-width: 768px) {
  .parallax-img-wrap { display: block; }
  #parallaxChar  { right: 0; top: 38%; width: 280px; height: 500px; transform: translateY(-50%); }
  #parallaxNew1  { left:  0; top: 42%; width: 320px; height: 560px; transform: translateY(-50%); }
  #parallaxNew2  { right: 0; top: 48%; width: 360px; height: 640px; transform: translateY(-50%); }
  #parallaxFurry { left:  0; top: 50%; width: 300px; height: 460px; transform: translateY(-50%); }
}
.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.parallax-right .parallax-img { border-radius: 12px 0 0 12px; }
.parallax-left  .parallax-img { border-radius: 0 12px 12px 0; }
.parallax-img-cover {
  object-fit: cover;
  object-position: top;
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }

/* ===== FLOATING MUSIC PLAYER ===== */
.floating-player {
  position: fixed;
  z-index: 9999;
  user-select: none;
  touch-action: none;
}
.player-body {
  background: #1a1a2e;
  border: 2px solid rgba(255,106,193,0.7);
  padding: 12px;
  width: 320px;
  box-shadow: 4px 4px 0 rgba(255,106,193,0.25);
  image-rendering: pixelated;
  cursor: grab;
}
@media (max-width: 767px) {
  .player-body {
    width: 300px;
  }
}
.player-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,183,197,0.15);
  padding-bottom: 8px;
}
.player-titlebar-text {
  font-family: 'VT323', monospace;
  font-size: 11px;
  color: #ff6ac1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.player-titlebar-btns {
  display: flex;
  gap: 4px;
}
.player-tb-btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #4deeea;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  font-size: 12px;
}
.player-tb-btn:hover {
  color: #fff;
}
.player-song-info {
  margin-bottom: 12px;
}
.player-song-title {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: #ffb7c5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-song-source {
  font-family: 'VT323', monospace;
  font-size: 10px;
  color: rgba(224,195,252,0.5);
  margin: 2px 0 0;
}
.player-interaction-badge {
  margin-bottom: 12px;
  padding: 6px 8px;
  border: 1px solid #ffd166;
  color: #ffd166;
  font-family: 'VT323', monospace;
  font-size: 11px;
  text-align: center;
  background: rgba(255,209,102,0.08);
  image-rendering: pixelated;
}
.player-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 32px;
  margin-bottom: 12px;
  padding: 0 4px;
}
.player-viz-bar {
  width: 6px;
  min-height: 4px;
  transition: height 0.1s;
  image-rendering: pixelated;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.player-play-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff6ac1;
  color: #ff6ac1;
  background: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
  flex-shrink: 0;
  image-rendering: pixelated;
}
.player-play-btn:hover {
  background: rgba(255,106,193,0.2);
}
.player-play-btn i {
  font-size: 14px;
}
.player-seek {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.player-seek-time {
  font-family: 'VT323', monospace;
  font-size: 10px;
  color: rgba(224,195,252,0.6);
  flex-shrink: 0;
}
.player-seek-track {
  flex: 1;
  position: relative;
  height: 10px;
}
.player-seek-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #ff6ac1;
  image-rendering: pixelated;
}
.player-seek-thumb {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 14px;
  background: #4deeea;
  border: 1px solid #1a1a2e;
  transform: translateX(-50%);
  image-rendering: pixelated;
}
.player-seek-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player-vol-icon {
  color: #4deeea;
  font-size: 10px;
  line-height: 1;
}
.player-volume-track {
  flex: 1;
  position: relative;
  height: 10px;
}
.player-volume-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #ff6ac1;
  width: 60%;
  image-rendering: pixelated;
}
.player-volume-thumb {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 14px;
  background: #4deeea;
  border: 1px solid #1a1a2e;
  left: 60%;
  transform: translateX(-50%);
  image-rendering: pixelated;
}
.player-volume-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.music-restore-btn {
  position: fixed;
  z-index: 9998;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,106,193,0.8);
  background: #1a1a2e;
  color: #ff6ac1;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 3px 3px 0 rgba(255,106,193,0.4);
  image-rendering: pixelated;
  padding: 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .music-restore-btn {
    bottom: 24px;
    right: 24px;
    transform: none;
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 768px) {
  .music-restore-btn {
    bottom: 24px;
    right: 24px;
    transform: none;
  }
}
.music-restore-btn:hover {
  background: rgba(255,106,193,0.2);
}
.music-restore-btn.pulse {
  animation: restorePulse 2s ease-in-out infinite;
}
@keyframes restorePulse {
  0%, 100% { box-shadow: 3px 3px 0 rgba(255,106,193,0.4), 0 0 0 0 rgba(255,106,193,0.4); }
  50% { box-shadow: 3px 3px 0 rgba(255,106,193,0.4), 0 0 20px 4px rgba(255,106,193,0.2); }
}
.music-restore-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffd166;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #1a1a2e;
  animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.music-restore-badge svg {
  width: 10px;
  height: 10px;
}
@media (max-width: 1023px) {
  .custom-cursor, .cursor-trail, .cursor-trail-particle { display: none !important; }
}
@media (min-width: 1024px) {
  body { cursor: none !important; }
  a, button, [role="button"], input, textarea, select, .cursor-pointer { cursor: none !important; }
}

/* Track selector styles */
.player-nav-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4deeea;
  color: #4deeea;
  background: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
  flex-shrink: 0;
  image-rendering: pixelated;
}
.player-nav-btn:hover {
  background: rgba(77, 238, 234, 0.2);
}
.player-nav-btn i {
  font-size: 12px;
}

/* ===== TEAM ===== */
.team-section {
  position: relative;
  background: linear-gradient(to bottom, #0f0f1a, #1a1a2e, #1a1a2e);
  overflow: hidden;
}
.team-title {
  color: #4deeea;
  text-shadow: 2px 2px 0px #4deeea;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(5, 1fr); gap: 24px; }
}
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  border: 2px solid rgba(255,183,197,0.1);
  background: rgba(26,26,46,0.6);
  padding: 20px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(32px);
}
.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-card:hover {
  border-color: rgba(77,238,234,0.4);
  background: rgba(26,26,46,0.8);
}
.team-avatar {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 2px solid;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .team-avatar { width: 108px; height: 108px; }
}
.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-avatar-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  object-position: top;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .team-initials { font-size: 1.875rem; }
}
.team-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 4px;
  left: 4px;
}
.team-corner.tr { top: 4px; right: 4px; left: auto; }
.team-corner.bl { bottom: 4px; left: 4px; top: auto; }
.team-corner.br { bottom: 4px; right: 4px; left: auto; top: auto; }
.team-name {
  font-family: 'VT323', monospace;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .team-name { font-size: 1.25rem; }
}
.team-role {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  /* color and border-color are set per-member via inline styles */
  border-radius: 9999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid transparent;
}
.team-bio {
  font-family: 'Quicksand', sans-serif;
  color: #e0c3fc;
  font-size: 0.75rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .team-bio { font-size: 0.875rem; }
}
.team-hover-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.team-card:hover .team-hover-glow {
  opacity: 1;
}