
:root {
  --ww-bg: #0f172a;
  --ww-surface: rgba(15, 23, 42, 0.82);
  --ww-surface-border: rgba(255,255,255,0.10);
  --ww-text: #e5e7eb;
  --ww-muted: #94a3b8;
  --ww-accent: #10b981;
  --ww-accent-rgb: 16,185,129;
  --ww-font: 'Inter', 'Pretendard', 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: var(--ww-text);
  font-family: var(--ww-font);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img, video, canvas, svg { max-width: 100%; }
.ww-shell-root {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.ww-shell-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--ww-surface-border);
}
.ww-shell-header-inner,
.ww-shell-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ww-shell-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ww-shell-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ww-shell-header-cta {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(var(--ww-accent-rgb), 0.32);
  background: rgba(var(--ww-accent-rgb), 0.18);
}
.ww-shell-search {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ww-surface-border);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.74);
  font-size: 24px;
  line-height: 1;
}
.ww-shell-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ww-shell-link,
.ww-shell-footer-nav a,
.ww-shell-drawer-link {
  color: var(--ww-muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.ww-shell-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.ww-shell-link:hover,
.ww-shell-link.is-active {
  color: #fff;
  border-color: rgba(var(--ww-accent-rgb), 0.34);
  background: rgba(var(--ww-accent-rgb), 0.12);
}
.ww-shell-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ww-surface-border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  padding: 10px;
  gap: 5px;
}
.ww-shell-menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 999px;
}
.ww-shell-drawer {
  display: none;
  padding: 0 20px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ww-shell-drawer-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ww-shell-main {
  max-width: none;
  margin: 0 auto;
  padding: 0 0 56px;
  width: 100%;
  overflow-x: hidden;
}
.ww-shell-page {
  display: none;
  width: 100%;
  overflow-x: hidden;
}
.ww-shell-page.is-active { display: block; }
.ww-shell-page [id="gjs"] {
  min-height: auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.ww-shell-footer {
  border-top: 1px solid var(--ww-surface-border);
  background: rgba(2, 6, 23, 0.92);
}
.ww-shell-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 24px 20px 36px;
}
.ww-shell-footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.ww-shell-footer-brand p {
  margin: 0;
  color: var(--ww-muted);
  line-height: 1.7;
}
.ww-shell-footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--ww-muted);
}
.ww-shell-footer-meta {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.ww-shell-footer-nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ww-shell-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  min-width: 260px;
}
.ww-shell-footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ww-muted);
}
.ww-shell-footer-hours strong { color: #fff; }
.ww-shell-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ww-shell-footer-social a {
  color: var(--ww-muted);
  text-decoration: none;
}
.ww-shell-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 1000;
  width: min(560px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.38);
}
.ww-shell-bottom-link {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 16px;
  color: var(--ww-muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}
.ww-shell-bottom-link span {
  font-size: 16px;
  line-height: 1;
}
.ww-shell-bottom-link strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ww-shell-bottom-link:hover,
.ww-shell-bottom-link.is-active {
  color: #fff;
  background: rgba(var(--ww-accent-rgb), 0.18);
}
.ww-shell-style-app_bottom_nav .ww-shell-header {
  border-bottom: 0;
  background: rgba(2, 6, 23, 0.72);
}
.ww-shell-style-app_bottom_nav .ww-shell-header-inner {
  min-height: 58px;
  max-width: 720px;
  justify-content: center;
  position: relative;
}
.ww-shell-style-app_bottom_nav .ww-shell-brand {
  font-size: 16px;
  letter-spacing: -0.04em;
}
.ww-shell-style-app_bottom_nav .ww-shell-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 74px;
}
.ww-shell-style-app_bottom_nav .ww-shell-menu {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
}
.ww-shell-style-app_bottom_nav .ww-shell-main {
  padding-bottom: 110px;
}
.ww-shell-style-app_bottom_nav .ww-shell-footer {
  padding-bottom: 82px;
}
@media (max-width: 768px) {
  .ww-shell-nav { display: none; }
  .ww-shell-header-cta { display: none; }
  .ww-shell-menu {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ww-shell-drawer[data-open="true"] { display: block; }
  .ww-shell-footer-inner { grid-template-columns: 1fr; }
  .ww-shell-footer-meta { justify-items: start; }
  .ww-shell-footer-nav { justify-content: flex-start; }
  .ww-shell-main { padding-top: 0; }
}