
    :root {
      --primary: #0F172A;
      --accent: #D4AF37;
      --surface: #F8FAFC;
    }
    body { 
      background-color: var(--surface);
      font-family: 'Plus Jakarta Sans', 'Pretendard', sans-serif; 
      line-height: 1.8; 
      color: #1E293B; 
      word-break: keep-all;
    }
    .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
    .glass-nav { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
    .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
    .reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
    .reveal.active { opacity: 1; transform: translateY(0); }
    h1, h2, h3 { font-weight: 800; tracking: -0.04em; }
    /* Custom Animations and Overrides */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;600;700&family=Pretendard:wght@300;400;500;700&display=swap');

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  word-break: keep-all;
}

.font-serif {
  font-family: 'Noto Serif KR', serif;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Text Selection Color */
::selection {
  background-color: #D4AF37;
  color: #fff;
}

/* Fade In Animation */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bento Grid Hover Effects */
.group:hover img {
  transform: scale(1.05);
}

  