/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #120010;
  --bg-secondary: #1a0518;
  --bg-card: rgba(255, 182, 213, 0.06);
  --bg-card-hover: rgba(255, 182, 213, 0.1);

  --pink-50: #fff5f9;
  --pink-100: #ffe8f1;
  --pink-200: #ffc8e0;
  --pink-300: #ffa3ca;
  --pink-400: #ff7eb3;
  --pink-500: #ff5c9e;
  --pink-600: #e84393;
  --pink-700: #c92a7a;

  --rose-glow: rgba(255, 126, 179, 0.15);
  --rose-glow-strong: rgba(255, 126, 179, 0.3);

  --border-subtle: rgba(255, 126, 179, 0.1);
  --border-medium: rgba(255, 126, 179, 0.2);
  --border-strong: rgba(255, 126, 179, 0.35);
  --border-kitty: rgba(255, 182, 213, 0.25);

  --text-primary: #ffe8f1;
  --text-secondary: rgba(255, 232, 241, 0.72);
  --text-muted: rgba(255, 232, 241, 0.45);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-pixel: 'Silkscreen', monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-round: 50%;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z' fill='%23ff7eb3'/%3E%3C/svg%3E") 12 12, auto;
}

a, button { cursor: pointer; }

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 92, 158, 0.25), transparent 70%);
  top: -250px;
  right: -150px;
  animation: orbFloat1 22s ease-in-out infinite;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.2), transparent 70%);
  bottom: -200px;
  left: -150px;
  animation: orbFloat2 28s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 168, 202, 0.15), transparent 70%);
  top: 40%;
  left: 60%;
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-100px, 80px) scale(1.15); }
  66% { transform: translate(50px, -40px) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -100px) scale(1.1); }
  66% { transform: translate(-60px, 50px) scale(0.95); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

/* ===== PIXEL GRID ===== */
.pixel-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 126, 179, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 126, 179, 0.025) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== KITTY DECORATIONS ===== */
.kitty-deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.kitty-deco svg {
  fill: var(--pink-300);
}

.kitty-deco.top-right {
  top: 120px;
  right: 40px;
  animation: gentleFloat 8s ease-in-out infinite;
}

.kitty-deco.bottom-left {
  bottom: 80px;
  left: 40px;
  animation: gentleFloat 10s ease-in-out infinite 2s;
}

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

/* ===== FLOATING BOWS ===== */
.floating-bows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-bow {
  position: absolute;
  opacity: 0;
  animation: floatBow linear infinite;
}

.floating-bow svg {
  fill: var(--pink-400);
}

@keyframes floatBow {
  0% { transform: translateY(110vh) rotate(0deg) scale(0.6); opacity: 0; }
  8% { opacity: 0.12; }
  92% { opacity: 0.08; }
  100% { transform: translateY(-10vh) rotate(360deg) scale(1); opacity: 0; }
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-kitty);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  box-shadow: 0 8px 40px rgba(255, 126, 179, 0.08);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 10px 32px;
  background: rgba(18, 0, 16, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 22px;
  height: 22px;
  color: var(--pink-400);
  transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(15deg) scale(1.2);
}

.nav-logo-text {
  font-family: var(--font-pixel);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--pink-300);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  position: relative;
  background: rgba(255, 182, 213, 0.08);
  border: 1px solid var(--border-kitty);
  border-radius: 12px;
  padding: 3px;
}

.lang-option {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.lang-option.active {
  color: var(--text-primary);
}

.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: rgba(255, 126, 179, 0.18);
  border: 1px solid var(--border-medium);
  border-radius: 9px;
  transition: transform 0.35s var(--ease-spring);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BOW DIVIDER ===== */
.bow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  max-width: 400px;
  margin: 0 auto;
}

.bow-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.bow-divider svg {
  flex-shrink: 0;
  color: var(--pink-400);
  opacity: 0.5;
  animation: bowWiggle 4s ease-in-out infinite;
}

@keyframes bowWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 80px;
  min-height: 75vh;
}

.hero-kitty-face {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: var(--pink-400);
  filter: drop-shadow(0 0 20px rgba(255, 126, 179, 0.4));
  animation: kittyBounce 3s ease-in-out infinite;
}

@keyframes kittyBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.hero-badge {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-400);
  padding: 8px 22px;
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  background: rgba(255, 126, 179, 0.08);
  margin-bottom: 24px;
  position: relative;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink-400);
  transform: translateY(-50%);
}

.hero-badge::before { left: 8px; }
.hero-badge::after { right: 8px; }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-400), var(--pink-200), var(--pink-500));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 6s ease-in-out infinite;
  margin-bottom: 20px;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-paws {
  display: flex;
  gap: 12px;
}

.hero-paw {
  color: var(--pink-500);
  opacity: 0.5;
  animation: pawStep 2.5s ease-in-out infinite;
}

.hero-paw:nth-child(2) { animation-delay: 0.4s; opacity: 0.7; }
.hero-paw:nth-child(3) { animation-delay: 0.8s; opacity: 0.5; }

@keyframes pawStep {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.3; }
  50% { transform: scale(1.2) translateY(-3px); opacity: 0.8; }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pixel);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pink-400);
  margin-bottom: 18px;
}

.section-label svg {
  color: var(--pink-500);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header .section-label {
  justify-content: center;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== PIRACY NOTICE ===== */
.piracy-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  background: rgba(255, 126, 179, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.piracy-notice svg {
  flex-shrink: 0;
  color: var(--pink-500);
  opacity: 0.7;
}

/* ===== ABOUT ===== */
.about-layout {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.photo-frame {
  position: relative;
  width: 200px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.photo-frame:hover .photo-img {
  transform: scale(1.05);
}

.photo-frame-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-kitty);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.photo-frame:hover .photo-frame-border {
  border-color: var(--pink-400);
}

.photo-glow {
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-500), transparent, var(--pink-600));
  opacity: 0;
  z-index: -1;
  filter: blur(14px);
  transition: opacity 0.5s ease;
}

.photo-frame:hover .photo-glow {
  opacity: 0.4;
}

/* Bow decoration on photo */
.photo-bow {
  position: absolute;
  top: -10px;
  right: -8px;
  color: var(--pink-400);
  filter: drop-shadow(0 2px 8px rgba(255, 126, 179, 0.5));
  animation: bowFloat 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes bowFloat {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
}

.photo-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.photo-tag svg {
  color: var(--pink-400);
}

.about-text-col {
  flex: 1;
  min-width: 0;
}

.about-content {
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}

/* Kitty watermark inside about card */
.about-content::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -15px;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='62' rx='38' ry='32' fill='none' stroke='%23ff7eb3' stroke-width='1.2' opacity='0.06'/%3E%3Cellipse cx='38' cy='56' rx='4' ry='5' fill='%23ff7eb3' fill-opacity='0.06'/%3E%3Cellipse cx='62' cy='56' rx='4' ry='5' fill='%23ff7eb3' fill-opacity='0.06'/%3E%3Cellipse cx='50' cy='64' rx='3' ry='2.5' fill='%23ff7eb3' fill-opacity='0.08'/%3E%3Cline x1='54' y1='64' x2='68' y2='60' stroke='%23ff7eb3' stroke-width='0.8' opacity='0.05'/%3E%3Cline x1='54' y1='65' x2='66' y2='66' stroke='%23ff7eb3' stroke-width='0.8' opacity='0.05'/%3E%3Cline x1='46' y1='64' x2='32' y2='60' stroke='%23ff7eb3' stroke-width='0.8' opacity='0.05'/%3E%3Cline x1='46' y1='65' x2='34' y2='66' stroke='%23ff7eb3' stroke-width='0.8' opacity='0.05'/%3E%3Cpath d='M22 45 Q22 20 35 30' stroke='%23ff7eb3' stroke-width='1.2' fill='none' opacity='0.06'/%3E%3Cpath d='M78 45 Q78 20 65 30' stroke='%23ff7eb3' stroke-width='1.2' fill='none' opacity='0.06'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-paragraphs p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-paragraphs p:last-child {
  margin-bottom: 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.tag {
  font-family: var(--font-pixel);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 126, 179, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--pink-300);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(255, 126, 179, 0.18);
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 126, 179, 0.1);
}

/* ===== FOXIT NOTICE ===== */
.foxit-section {
  max-width: 800px;
}

.foxit-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-color: rgba(255, 92, 158, 0.3) !important;
  background: rgba(255, 92, 158, 0.05) !important;
  position: relative;
  overflow: hidden;
}

.foxit-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 92, 158, 0.06), transparent);
  pointer-events: none;
}

.foxit-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 92, 158, 0.1);
  border: 1px solid rgba(255, 92, 158, 0.2);
  color: var(--pink-400);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 158, 0); }
  50% { box-shadow: 0 0 20px rgba(255, 92, 158, 0.15), 0 0 40px rgba(255, 92, 158, 0.05); }
}

.foxit-content {
  flex: 1;
  min-width: 0;
}

.foxit-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-300);
  margin-bottom: 6px;
}

.foxit-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.foxit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 16px rgba(255, 92, 158, 0.25);
  white-space: nowrap;
}

.foxit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 92, 158, 0.4);
}

/* ===== GALLERY ===== */
.gallery {
  max-width: 1060px;
  padding-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.art-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-kitty);
  transition: all 0.45s var(--ease-out);
  position: relative;
}

.art-card::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M12 4c-2 0-3.5-3-6-3C3.5 1 1.5 3 1.5 5.5c0 3 3.5 5.5 6 5.5 1.8 0 3-1 4.5-1s2.7 1 4.5 1c2.5 0 6-2.5 6-5.5C22.5 3 20.5 1 18 1c-2.5 0-4 3-6 3z' fill='%23ff7eb3' opacity='0.15'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.art-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow:
    0 20px 50px rgba(255, 92, 158, 0.12),
    0 0 0 1px var(--border-medium);
}

.art-card:hover::before {
  opacity: 0;
}

.art-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-secondary);
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.65) saturate(0.7);
  transform: scale(1.15);
  transition: all 0.5s var(--ease-out);
}

.art-card:hover .art-card-image img {
  filter: blur(8px) brightness(0.75) saturate(0.9);
  transform: scale(1.2);
}

.art-card-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 0, 16, 0.1) 0%,
    rgba(18, 0, 16, 0.35) 60%,
    rgba(18, 0, 16, 0.7) 100%
  );
  pointer-events: none;
}

.art-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.art-card:hover .art-card-hover {
  opacity: 1;
}

.art-card-hover-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background: rgba(255, 126, 179, 0.15);
  border: 1px solid var(--border-medium);
  color: var(--pink-200);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease-spring);
}

.art-card:hover .art-card-hover-icon {
  transform: scale(1.1);
}

.art-card-hover-text {
  font-family: var(--font-pixel);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--pink-200);
  text-transform: uppercase;
}

.art-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.art-card-number {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--pink-500);
}

.art-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  flex: 1;
}

.art-card-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 126, 179, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--pink-400);
  text-decoration: none;
  transition: all 0.3s var(--ease-spring);
}

.art-card-dl:hover {
  background: rgba(255, 126, 179, 0.22);
  border-color: var(--border-medium);
  transform: scale(1.12);
  color: var(--pink-300);
  box-shadow: 0 4px 16px rgba(255, 126, 179, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 28px 24px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--pink-400);
}

.footer-brand svg {
  color: var(--pink-500);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-kitty {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--pink-400);
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foxit-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .foxit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .about-text-col {
    width: 100%;
  }

  .about-content {
    padding: 20px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .navbar.scrolled {
    padding: 8px 16px;
  }

  .hero {
    padding: 140px 20px 50px;
    min-height: auto;
  }

  .section {
    padding: 20px 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .floating-bows { display: none; }

  .kitty-deco { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .art-card-info {
    padding: 10px 12px;
  }

  .art-card-title {
    font-size: 11px;
  }

  .hero-name {
    letter-spacing: -1px;
  }

  .lang-option {
    font-size: 11px;
    padding: 5px 12px;
  }
}
