/* ===============================
              BASE
=============================== */
* { box-sizing: border-box; font-family: 'NanumSquare', sans-serif!important;}
html, body { height: 100%; }
body{
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 50% -200px, rgba(255,106,0,.10), transparent 60%),
  radial-gradient(900px 500px at 10% 0%, rgba(0,0,0,.03), transparent 60%),
  var(--bg);
}

a { color: inherit; text-decoration: none; }
.container{
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

/* Tool */
.no-drag {
  user-select: none;
  -webkit-user-drag: none;
}

/* ===============================
            Top Bar
=============================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
}
.topbar__inner{
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand picture img{
  height: 30px;
}

.topbar__link{
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .15s ease;
}
.topbar__link:hover{
  background: var(--accent-soft);
}