@import "https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.css";
/* [project]/app/control/tedu.css [app-client] (css) */
.tedu-root {
  --bg-0: #101215;
  --bg-1: #101215;
  --surface-1: #1c1c1e;
  --surface-2: #2c2c2e;
  --surface-3: #3a3a3c;
  --border: #2c2c2e;
  --border-strong: #48484a;
  --text-1: #fff;
  --text-2: #8e8e93;
  --text-3: #636366;
  --accent: #3a5bc8;
  --accent-ink: #a9bcf0;
  --accent-soft: #3a5bc824;
  --accent-line: #3a5bc85c;
  --live: #30d158;
  --live-soft: #30d15824;
  --warn: #ff9f0a;
  --warn-soft: #ff9f0a24;
  --danger: #ff453a;
  --danger-soft: #ff453a24;
  --belt: #e64a45;
  --r-xs: 7px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px #0006;
  --shadow-2: 0 10px 26px #00000080;
  --shadow-pop: 0 16px 44px #0000008c;
  --shadow-accent: 0 12px 26px #3a5bc852, inset 0 1px 1px #ffffff47;
  --glass-bg: #1c1c1e8c;
  --glass-solid: #141418e6;
  --glass-brd: #ffffff1a;
  --glass-hi: #ffffff1a;
  --glass-blur: blur(24px) saturate(1.5);
  --glass-shadow: 0 8px 30px #00000073;
  --glass-shadow-1: 0 3px 12px #0003;
  --glass-hi-1: #ffffff0d;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo, monospace;
  --app-w: 480px;
  font-family: var(--sans);
  background: radial-gradient(58% 36% at 16% 4%, #3a5bc829, transparent 60%),
    radial-gradient(48% 30% at 92% 22%, #e678aa1f, transparent 60%),
    radial-gradient(120% 80% at 50% -10%, #24242c 0%, var(--bg-0) 55%);
  color: var(--text-1);
  letter-spacing: -.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  justify-content: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.tedu-root.theme-light {
  --bg-0: #eef3f8;
  --bg-1: #eef3f8;
  --surface-1: #fff;
  --surface-2: #fff;
  --surface-3: #e4eaf2;
  --border: #dde4ee;
  --border-strong: #c3cbd8;
  --text-1: #111827;
  --text-2: #6b7280;
  --text-3: #9aa3b2;
  --accent-ink: #2c489e;
  --danger: #d70015;
  --danger-soft: #d7001517;
  --shadow-1: 0 1px 3px #0f172a0d;
  --shadow-2: 0 10px 24px #0f172a14;
  --shadow-pop: 0 18px 44px #0f172a21;
  --shadow-accent: 0 10px 24px #3a5bc838, inset 0 1px 1px #ffffff6b;
  --glass-bg: #ffffff94;
  --glass-solid: #ffffffdb;
  --glass-brd: #fff9;
  --glass-hi: #ffffffd9;
  --glass-blur: blur(18px) saturate(1.35);
  --glass-shadow: 0 14px 34px #1e326e1a;
  --glass-shadow-1: 0 5px 14px #1e326e0d;
  --glass-hi-1: #ffffff80;
  background: radial-gradient(66% 56% at 88% -8%, #f296af26, transparent 62%),
    radial-gradient(56% 48% at 4% -6%, #9e92e01c, transparent 62%),
    radial-gradient(84% 66% at -6% 46%, #4870de1a, transparent 64%),
    radial-gradient(70% 56% at 104% 98%, #e880b016, transparent 64%),
    var(--bg-0);
  color: var(--text-1);
}

.tedu-root.theme-light .input:focus, .tedu-root.theme-light .vsearch:focus-within {
  background: #fff;
}

.tedu-root.theme-light .tabbar {
  background: #fffffff7;
  border-color: #00000012;
  box-shadow: 0 10px 30px #00000024, inset 0 1px #fff9;
}

.tedu-root.theme-light .ctl-browse {
  background: none;
}

.tedu-root *, .tedu-root :before, .tedu-root :after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

.tedu-app {
  width: 100%;
  max-width: var(--app-w);
  background: var(--bg-1);
  flex-direction: column;
  height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tedu-root.theme-light .tedu-app, .tedu-root.theme-light .aurora-bg {
  background: radial-gradient(66% 56% at 88% -8%, #f296af26, transparent 62%),
    radial-gradient(56% 48% at 4% -6%, #9e92e01c, transparent 62%),
    radial-gradient(84% 66% at -6% 46%, #4870de1a, transparent 64%),
    radial-gradient(70% 56% at 104% 98%, #e880b016, transparent 64%),
    var(--bg-0);
}

.tedu-root .aurora-bg {
  background: var(--bg-1);
}

@media (min-width: 540px) {
  .tedu-app {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: var(--shadow-pop);
  }
}

.tedu-root .tedu-panes {
  flex-direction: row;
  height: 100%;
  min-height: 0;
  display: flex;
}

.tedu-root .tedu-rail {
  border-right: 1px solid var(--border);
  flex-direction: column;
  flex: none;
  width: 360px;
  min-width: 0;
  display: flex;
}

.tedu-root .tedu-detail {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

@media (orientation: landscape) and (min-width: 760px) and (min-height: 500px) {
  .tedu-root {
    --app-w: 100%;
  }
}

@media (orientation: portrait) {
  .tedu-root {
    --app-w: 100%;
  }
}

.tedu-root .dash-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 12px;
  display: grid;
}

@media (orientation: landscape) and (max-width: 759px), (orientation: landscape) and (max-height: 499px) {
  .tedu-root {
    --app-w: 100%;
  }

  .tedu-root .appbar {
    padding: 4px 18px 5px;
  }

  .tedu-root .appbar__title {
    font-size: 18px;
  }

  .tedu-root .tabbar {
    height: 54px;
    margin: 6px 12px max(6px, env(safe-area-inset-bottom));
    border-radius: 999px;
  }

  .tedu-root .tab__inner {
    flex-direction: row;
    gap: 6px;
    padding: 5px 13px;
    font-size: 11px;
  }

  .tedu-root .toast {
    bottom: calc(108px + env(safe-area-inset-bottom));
    top: auto;
  }

  .tedu-root .ctl-browse__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .tedu-root .dash-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 400px) {
  .tedu-root .appbar {
    gap: 4px;
    margin: 8px 5px 4px;
    padding: 9px;
  }

  .tedu-root .appbar .iconbtn {
    width: 34px;
    height: 34px;
  }

  .tedu-root .appbar .iconbtn:before {
    inset: -5px;
  }

  .tedu-root .appbar__title {
    font-size: 19px;
  }

  .tedu-root .appbar .ctl-hd-actions {
    gap: 2px;
  }
}

.tedu-app .frame__scroll {
  scrollbar-width: none;
  flex: 1;
  position: relative;
  overflow: hidden auto;
}

.tedu-app .frame__scroll::-webkit-scrollbar {
  display: none;
}

.tedu-app .frame__scroll > * {
  flex-shrink: 0;
}

.tedu-root .muted {
  color: var(--text-2);
}

.tedu-root .dim {
  color: var(--text-3);
}

.tedu-root .mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.tedu-root .tnum {
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}

.tedu-root .row {
  align-items: center;
  display: flex;
}

.tedu-root .col {
  flex-direction: column;
  display: flex;
}

.tedu-root .gap-2 {
  gap: 2px;
}

.tedu-root .gap-3 {
  gap: 3px;
}

.tedu-root .gap-4 {
  gap: 4px;
}

.tedu-root .gap-6 {
  gap: 6px;
}

.tedu-root .gap-7 {
  gap: 7px;
}

.tedu-root .gap-8 {
  gap: 8px;
}

.tedu-root .gap-9 {
  gap: 9px;
}

.tedu-root .gap-10 {
  gap: 10px;
}

.tedu-root .gap-12 {
  gap: 12px;
}

.tedu-root .gap-14 {
  gap: 14px;
}

.tedu-root .gap-16 {
  gap: 16px;
}

.tedu-root .gap-18 {
  gap: 18px;
}

.tedu-root .spacer {
  flex: 1;
}

.tedu-root .screen {
  animation: .34s cubic-bezier(.22, .61, .36, 1) tedu-screenIn;
}

@keyframes tedu-screenIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tedu-root .btn {
  appearance: none;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: -.01em;
  border-radius: var(--r-md);
  white-space: nowrap;
  word-break: keep-all;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform .12s, background .15s, border-color .15s;
  display: inline-flex;
}

.tedu-root .btn:active {
  transform: scale(.97);
}

.tedu-root .btn:disabled {
  cursor: default;
}

.tedu-root .btn--primary {
  background: var(--accent);
  color: #fff;
}

.tedu-root .btn--primary:hover {
  background: #4a68d0;
}

.tedu-root .btn--ghost {
  background: var(--surface-2);
  color: var(--text-1);
  border: 1px solid var(--border-strong);
}

.tedu-root .btn--ghost:hover {
  background: var(--surface-3);
}

.tedu-root .btn--quiet {
  color: var(--text-2);
  background: none;
  border: 1px solid #0000;
}

.tedu-root .btn--quiet:hover {
  background: var(--surface-3);
  color: var(--text-1);
}

.tedu-root .btn--quiet:disabled {
  opacity: .45;
}

.tedu-root .btn--danger {
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid color-mix(in srgb, var(--danger) 24%, transparent);
}

.tedu-root .btn--danger:hover {
  background: color-mix(in srgb, var(--danger) 16%, transparent);
}

.tedu-root .btn--danger-quiet {
  color: var(--danger);
  background: none;
  border: 1px solid #0000;
}

.tedu-root .btn--danger-quiet:hover {
  background: var(--danger-soft);
}

.tedu-root .btn--danger-quiet:disabled {
  opacity: .45;
}

.tedu-root .btn--lg {
  width: 100%;
  height: 54px;
  padding: 0 22px;
  font-size: 16px;
}

.tedu-root .btn--block {
  width: 100%;
}

.tedu-root .iconbtn, .tedu-root .tab, .tedu-root .chip, .tedu-root .side-item {
  transition: transform .13s cubic-bezier(.34, 1.25, .5, 1), background-color .16s, border-color .16s, color .15s, box-shadow .2s;
}

.tedu-root .btn:hover {
  filter: brightness(1.03);
}

.tedu-root .side-item:not(.side-item--playing):hover {
  background: var(--surface-3);
}

.tedu-root .side-item:active {
  transform: scale(.995);
}

.tedu-root button:focus-visible, .tedu-root a:focus-visible, .tedu-root select:focus-visible, .tedu-root [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.tedu-root input[type="range"]::-webkit-slider-thumb {
  transition: transform .12s, box-shadow .15s;
}

.tedu-root input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.16);
}

.tedu-root input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  .tedu-root *, .tedu-root :before, .tedu-root :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .tedu-root .btn:active, .tedu-root .iconbtn:active, .tedu-root .side-item:active, .tedu-root .ctl-play:hover, .tedu-root .ctl-play:active {
    transform: none;
  }
}

.tedu-root .ctl-hero > * {
  z-index: 1;
  position: relative;
}

.tedu-root .ctl-hero:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  filter: blur(30px);
  background: radial-gradient(at 62% 32%, #e678aa21, #0000 56%), radial-gradient(at 42% 58%, #3a5bc83d, #0000 64%);
  width: 112%;
  height: 132%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tedu-root.theme-light .ctl-hero:before {
  filter: blur(50px);
  background: radial-gradient(at 34% 22%, #4870de21, #0000 70%), radial-gradient(at 72% 80%, #e884b21c, #0000 70%);
  width: 144%;
  height: 172%;
}

.tedu-root .ctl-play {
  transition: transform .14s cubic-bezier(.34, 1.3, .5, 1), filter .15s, box-shadow .2s;
}

.tedu-root .ctl-play:hover {
  filter: brightness(1.05);
  transform: scale(1.045);
}

.tedu-root .ctl-play:active {
  transform: scale(.955);
}

.tedu-root .ctl-secondary {
  justify-content: space-around;
  align-items: flex-start;
  gap: 4px;
  padding-top: 2px;
  display: flex;
}

.tedu-root .ctl-secondary > * {
  flex: 0 auto;
}

.tedu-root .ctl-dock {
  z-index: 6;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface-1) 84%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid var(--border);
  border-radius: 22px 22px 0 0;
  flex-direction: column;
  gap: 9px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -10px 30px -12px #00000047;
}

.tedu-root .ctl-dock__sec {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  place-items: center;
  gap: 6px;
  display: grid;
}

@keyframes ctl-ab-hint {
  0% {
    opacity: 0;
    transform: translate(-50%, 5px);
  }

  10% {
    opacity: 1;
    transform: translate(-50%);
  }

  82% {
    opacity: 1;
    transform: translate(-50%);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -3px);
  }
}

.tedu-root .ctl-ab-hint {
  z-index: 5;
  background: var(--glass-solid);
  width: max-content;
  max-width: 250px;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-pop), inset 0 1px 0 var(--glass-hi);
  color: var(--text-1);
  text-align: center;
  white-space: pre-line;
  pointer-events: none;
  border-radius: 12px;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  animation: 2.4s forwards ctl-ab-hint;
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
}

.tedu-root .ctl-ab-hint:after {
  content: "";
  border: 6px solid #0000;
  border-top-color: var(--glass-solid);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tedu-root .ctl-dock__grip {
  color: var(--text-3);
  cursor: pointer;
  background: none;
  border: none;
  align-self: center;
  margin: -4px 0 -2px;
  padding: 5px 28px;
  line-height: 0;
}

.tedu-root .ctl-dock__grip:hover {
  color: var(--text-2);
}

.tedu-root .ctl-sub__sep {
  background: var(--text-3);
  opacity: .7;
  border-radius: 999px;
  flex: none;
  width: 3px;
  height: 3px;
}

.tedu-root .pcast-mini {
  --text-1: #fff;
  --text-2: #ffffffb8;
  --text-3: #ffffff80;
  --surface-3: #ffffff24;
  --danger: #ff453a;
  --danger-soft: #ff453a2e;
}

.tedu-root .ctl-statusbar {
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin: 4px 9px 6px;
  display: flex;
}

@media (max-width: 400px) {
  .tedu-root .ctl-statusbar {
    margin: 4px 7px 6px;
  }
}

.tedu-root .ctl-pill {
  box-sizing: border-box;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  height: 29px;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow-1), inset 0 1px 0 var(--glass-hi-1);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex: none;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  font-size: 13px;
  display: inline-flex;
}

.tedu-root .ctl-pill b {
  letter-spacing: .01em;
  font-weight: 700;
}

.tedu-root .ctl-pill__label {
  opacity: .8;
  font-size: 11.5px;
  font-weight: 500;
}

.tedu-root .ctl-runclock {
  color: var(--accent-ink);
}

.tedu-root .ctl-runclock .ctl-timer__dot {
  background: var(--live);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px var(--live-soft);
  border-radius: 999px;
  flex: none;
}

.tedu-root .ctl-remain {
  color: var(--warn);
}

.tedu-root.theme-light .ctl-remain {
  color: #a56a12;
}

.tedu-root .ctl-remain svg {
  opacity: .9;
  display: block;
}

.tedu-root .ctl-cheer-pop {
  background: #141418f2;
}

.tedu-root.theme-light .ctl-cheer-pop {
  background: #ffffffed;
}

.tedu-root .ctl-modemenu-item:hover, .tedu-root .ctl-modemenu-item:focus-visible {
  outline: none;
  background: var(--surface-3) !important;
}

.tedu-root .ctl-modemenu-item--primary:hover, .tedu-root .ctl-modemenu-item--primary:focus-visible {
  background: var(--accent-soft) !important;
}

.tedu-root .ctl-modemenu-item + .ctl-modemenu-item {
  position: relative;
}

.tedu-root .ctl-modemenu-item + .ctl-modemenu-item:before {
  content: "";
  background: #ffffff06;
  height: 1px;
  position: absolute;
  top: 0;
  left: 45px;
  right: 7px;
}

.tedu-root.theme-light .ctl-modemenu-item + .ctl-modemenu-item:before {
  background: #0000000d;
}

.tedu-root .ctl-hd-sticky {
  z-index: 20;
  position: sticky;
  top: 0;
}

.tedu-root .ctl-hd-sticky .appbar, .tedu-root .ctl-hd-float .appbar {
  z-index: 2;
  position: relative;
}

.tedu-root .ctl-hd-sticky .ctl-statusbar, .tedu-root .ctl-hd-float .ctl-statusbar {
  z-index: 1;
  position: relative;
}

.tedu-root .ctl-hd-float {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.tedu-root .ctl-hd-sticky:before, .tedu-root .ctl-hd-float:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(13px) saturate(1.3);
  backdrop-filter: blur(13px) saturate(1.3);
  position: absolute;
  inset: 0 0 -20px;
  -webkit-mask-image: linear-gradient(#000 62%, #0000);
  mask-image: linear-gradient(#000 62%, #0000);
}

.tedu-root .ctl-hd-sticky .appbar, .tedu-root .ctl-hd-float .appbar, .tedu-root .ctl-hd-sticky .ctl-pill, .tedu-root .ctl-hd-float .ctl-pill {
  background: linear-gradient(to bottom,
    rgba(28,28,30, calc(.3 + .52 * var(--hd-solid, 0))) 0%,
    rgba(28,28,30, calc(.4 + .48 * var(--hd-solid, 0))) 55%,
    rgba(28,28,30, calc(.52 + .4 * var(--hd-solid, 0))) 100%);
}

.tedu-root.theme-light .ctl-hd-sticky .appbar, .tedu-root.theme-light .ctl-hd-float .appbar, .tedu-root.theme-light .ctl-hd-sticky .ctl-pill, .tedu-root.theme-light .ctl-hd-float .ctl-pill {
  background: linear-gradient(to bottom,
    rgba(255,255,255, calc(.32 + .52 * var(--hd-solid, 0))) 0%,
    rgba(255,255,255, calc(.44 + .46 * var(--hd-solid, 0))) 55%,
    rgba(255,255,255, calc(.58 + .36 * var(--hd-solid, 0))) 100%);
}

.tedu-root.sheet-open .ctl-hd-sticky:before, .tedu-root.sheet-open .ctl-hd-float:before {
  display: none;
}

.tedu-root.sheet-open .ctl-hd-sticky .appbar, .tedu-root.sheet-open .ctl-hd-float .appbar, .tedu-root.sheet-open .ctl-hd-sticky .ctl-pill, .tedu-root.sheet-open .ctl-hd-float .ctl-pill {
  background: none;
}

.tedu-root .lib-datehd {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}

.tedu-root.theme-light .lib-datehd {
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  background: #eef3f89e;
  border-bottom: none;
}

.tedu-root .field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.tedu-root .field label {
  color: var(--text-2);
  padding-left: 2px;
  font-size: 13px;
  font-weight: 600;
}

.tedu-root .input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  height: 52px;
  color: var(--text-1);
  font-size: 16px;
  font-family: var(--sans);
  outline: none;
  width: 100%;
  padding: 0 16px;
  transition: border-color .15s, background .15s;
}

.tedu-root .input::placeholder {
  color: var(--text-3);
}

.tedu-root .input:focus {
  border-color: var(--accent-line);
  background: #2c2c2e;
}

.tedu-root .vsearch {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 10px 0 12px;
  transition: border-color .15s, background .15s;
  display: flex;
}

.tedu-root .vsearch:focus-within {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: #2c2c2e;
}

.tedu-root .vsearch:focus-within > svg {
  color: var(--accent);
}

.tedu-root .vsearch svg {
  flex: none;
}

.tedu-root .vsearch__input {
  min-width: 0;
  height: 100%;
  color: var(--text-1);
  font-size: 15px;
  font-family: var(--sans);
  background: none;
  border: none;
  outline: none;
  flex: 1;
}

.tedu-root .vsearch__input::placeholder {
  color: var(--text-3);
}

.tedu-root .vsearch__clear {
  background: var(--surface-3);
  width: 26px;
  height: 26px;
  color: var(--text-2);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex: none;
  place-items: center;
  display: grid;
}

.tedu-root .chip {
  border-radius: var(--r-pill);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
}

.tedu-root .chip svg {
  display: block;
}

.tedu-root .badge-dot {
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}

.tedu-root .chip--live {
  background: var(--live-soft);
  color: var(--live);
}

.tedu-root .chip--off {
  background: var(--surface-2);
  color: var(--text-3);
}

.tedu-root .chip--warn {
  background: var(--warn-soft);
  color: var(--warn);
}

.tedu-root .chip--accent {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.tedu-root .sec-head {
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
  display: flex;
}

.tedu-root .sec-title {
  color: var(--text-2);
  letter-spacing: .02em;
  font-size: 13px;
  font-weight: 700;
}

.tedu-root .switch {
  background: var(--surface-3);
  cursor: pointer;
  border: none;
  border-radius: 999px;
  flex: none;
  width: 51px;
  height: 31px;
  padding: 0;
  transition: background .2s;
  position: relative;
}

.tedu-root .switch[data-on="true"] {
  background: var(--accent);
}

.tedu-root .switch__knob {
  background: #fff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  transition: transform .2s;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px #0000004d;
}

.tedu-root .switch[data-on="true"] .switch__knob {
  transform: translateX(20px);
}

.tedu-root .appbar {
  z-index: 5;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-hi);
  border-radius: 20px;
  align-items: center;
  gap: 10px;
  margin: 8px 7px 4px;
  padding: 10px 13px;
  display: flex;
  position: relative;
}

.tedu-root .appbar__title {
  letter-spacing: -.02em;
  font-size: 22px;
  font-weight: 800;
}

.tedu-root .iconbtn {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-1);
  width: 40px;
  height: 40px;
  color: var(--text-1);
  cursor: pointer;
  flex: none;
  place-items: center;
  transition: background .15s, transform .12s;
  display: grid;
  position: relative;
}

.tedu-root .iconbtn:before {
  content: "";
  position: absolute;
  inset: -2px;
}

@media (hover: hover) {
  .tedu-root .iconbtn:hover {
    background: var(--surface-2);
  }

  .tedu-root .iconbtn--accent:hover {
    background: #3a5bc838;
  }
}

.tedu-root .iconbtn:active {
  transform: scale(.94);
}

.tedu-root .iconbtn--plain {
  background: none;
  border-color: #0000;
}

.tedu-root .iconbtn--accent {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
}

.tedu-root .pill-accent {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  cursor: pointer;
  transition: background .15s, transform .12s;
}

.tedu-root .pill-accent:hover {
  background: #3a5bc838;
}

.tedu-root .pill-accent:active {
  transform: scale(.96);
}

.tedu-root .tabbar {
  margin: 8px 14px max(16px, env(safe-area-inset-bottom));
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  background: #141418e6;
  border: 1px solid #ffffff17;
  border-radius: 999px;
  flex: none;
  align-items: center;
  gap: 4px;
  height: 62px;
  padding: 0 8px;
  display: flex;
  box-shadow: 0 10px 30px #00000073, inset 0 1px #ffffff0f;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .tedu-root .tabbar {
    background: #121216f5;
  }

  .tedu-root.theme-light .tabbar {
    background: #fffffff7;
  }
}

.tedu-root .tab {
  height: 100%;
  color: var(--text-2);
  cursor: pointer;
  flex: 1;
  justify-content: center;
  align-items: center;
  transition: color .18s;
  display: flex;
}

.tedu-root .tab__inner {
  box-sizing: border-box;
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 64px;
  padding: 6px 13px;
  font-size: 10.5px;
  font-weight: 600;
  transition: background .18s;
  display: flex;
}

.tedu-root .tab svg {
  display: block;
}

.tedu-root .tab--on {
  color: var(--accent-ink);
}

.tedu-root .tabhost {
  position: relative;
}

.tedu-root .tabhost > .tabbar {
  z-index: 30;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tedu-root .tabhost .frame__scroll {
  padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
}

.tedu-root .track {
  background: var(--surface-3);
  border-radius: 999px;
  height: 6px;
  position: relative;
  overflow: hidden;
}

.tedu-root .track__fill {
  border-radius: 999px;
  position: absolute;
  inset: 0 auto 0 0;
}

.tedu-root .ctl-seekrow {
  align-items: center;
  gap: 11px;
  display: flex;
}

.tedu-root .ctl-seekrow__t {
  font-variant-numeric: tabular-nums;
  color: var(--text-2);
  flex: none;
  font-size: 12.5px;
}

.tedu-root .ctl-seekrow__t--dim {
  color: var(--text-3);
}

.tedu-root .track--indet .track__fill {
  width: 38%;
  animation: 1.1s ease-in-out infinite tedu-indet;
}

@keyframes tedu-indet {
  0% {
    left: -42%;
  }

  100% {
    left: 100%;
  }
}

.tedu-root .poster {
  border-radius: var(--r-md);
  isolation: isolate;
  flex: none;
  place-items: center;
  display: grid;
  position: relative;
  overflow: hidden;
}

.tedu-root .poster__grad {
  z-index: -1;
  position: absolute;
  inset: 0;
}

.tedu-root .poster__img {
  object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.tedu-root .poster:after {
  content: "";
  background: linear-gradient(#0000 40%, #0000008c 100%);
  position: absolute;
  inset: 0;
}

.tedu-root .poster__hanja {
  color: #ffffffeb;
  font-weight: 800;
  line-height: .9;
}

.tedu-root .poster__label {
  z-index: 2;
  color: #fff;
  letter-spacing: -.01em;
  text-shadow: 0 1px 3px #0009;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  bottom: 8px;
  left: 10px;
}

.tedu-root .poster__dur {
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  background: #0000008c;
  border-radius: 6px;
  padding: 2px 6px;
  position: absolute;
  bottom: 7px;
  right: 7px;
}

.tedu-root .toast {
  width: fit-content;
  left: 18px;
  right: 18px;
  bottom: calc(128px + env(safe-area-inset-bottom));
  z-index: 50;
  cursor: pointer;
  background: var(--surface-3);
  color: var(--text-1);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  border-radius: var(--r-pill);
  text-align: center;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 36px);
  margin-inline: auto;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  animation: .3s cubic-bezier(.22, .61, .36, 1) tedu-toastIn;
  display: flex;
  position: absolute;
}

@keyframes tedu-toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tedu-root .toast--out {
  animation: .25s cubic-bezier(.4, 0, 1, 1) forwards tedu-toastOut;
}

@keyframes tedu-toastOut {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

.tedu-root .toast__action {
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
  margin-left: 4px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}

.tedu-root .toast__action:active {
  opacity: .8;
}

.tedu-root .toast--alert {
  text-align: left;
  border-radius: var(--r-lg);
  width: fit-content;
  min-width: 262px;
  max-width: min(360px, 100% - 40px);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  background: var(--glass-solid);
  border: 1px solid var(--glass-brd);
  color: var(--text-1);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-hi);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 18px 19px 16px;
  animation: .18s cubic-bezier(.2, .7, .3, 1) tedu-alertIn;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.tedu-root .toast--alert.toast--out {
  animation: .16s forwards tedu-alertOut;
}

@keyframes tedu-alertIn {
  0% {
    opacity: 0;
    transform: translateY(-50%)scale(.96);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%)scale(1);
  }
}

@keyframes tedu-alertOut {
  from {
    opacity: 1;
    transform: translateY(-50%)scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-50%)scale(.97);
  }
}

.tedu-root .toast__hd {
  color: var(--accent-ink);
  letter-spacing: .01em;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
}

.tedu-root .toast__msg {
  min-height: 48px;
  color: var(--text-1);
  word-break: keep-all;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
}

.tedu-root .toast--alert .toast__action {
  align-self: flex-end;
  margin: 16px 0 0;
  padding: 9px 22px;
  font-size: 14px;
}

.tedu-root .seg {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  gap: 4px;
  padding: 4px;
  display: flex;
}

.tedu-root .seg__btn {
  cursor: pointer;
  height: 34px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 9px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: background .18s, color .18s;
  display: flex;
  position: relative;
}

.tedu-root .seg__btn:before {
  content: "";
  position: absolute;
  inset: -5px 0;
}

.tedu-root .seg__btn--on {
  background: var(--surface-3);
  color: var(--text-1);
  box-shadow: var(--shadow-1);
}

.tedu-root .hr {
  background: var(--border);
  border: none;
  height: 1px;
}

.tedu-root .spin {
  animation: 1s linear infinite tedu-spin;
  display: inline-flex;
}

@keyframes tedu-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tedu-hand-pulse {
  0%, 100% {
    box-shadow: 0 0 #ff9f0a80;
  }

  50% {
    box-shadow: 0 0 0 5px #ff9f0a00;
  }
}

@keyframes tedu-hand-twinkle {
  0%, 100% {
    filter: drop-shadow(0 0 3px #ffd60af2) drop-shadow(0 0 6px #ff9f0a99);
  }

  50% {
    filter: drop-shadow(0 0 6px #fffffff2) drop-shadow(0 0 12px #ffd60af2);
  }
}

@keyframes tedu-cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tedu-root .stagger > * {
  animation: .44s cubic-bezier(.22, .61, .36, 1) both tedu-cardIn;
}

.tedu-root .stagger > :first-child {
  animation-delay: 30ms;
}

.tedu-root .stagger > :nth-child(2) {
  animation-delay: 70ms;
}

.tedu-root .stagger > :nth-child(3) {
  animation-delay: .11s;
}

.tedu-root .stagger > :nth-child(4) {
  animation-delay: .15s;
}

.tedu-root .stagger > :nth-child(5) {
  animation-delay: .19s;
}

.tedu-root .stagger > :nth-child(6) {
  animation-delay: .23s;
}

.tedu-root .stagger > :nth-child(7) {
  animation-delay: .27s;
}

.tedu-root .stagger > :nth-child(8) {
  animation-delay: .31s;
}

.tedu-root .stagger > :nth-child(n+9) {
  animation-delay: .34s;
}

@keyframes tedu-slideInL {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tedu-root .slide-in {
  animation: .34s cubic-bezier(.22, .61, .36, 1) tedu-slideInL;
}

@media (prefers-reduced-motion: reduce) {
  .tedu-root .screen, .tedu-root .stagger > *, .tedu-root .slide-in {
    animation: none !important;
  }
}

.tedu-root .sheet-wrap {
  z-index: 40;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
}

.tedu-root .sheet-scrim {
  background: #0000008c;
  animation: .25s tedu-fadeIn;
  position: absolute;
  inset: 0;
}

@keyframes tedu-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tedu-root .sheet {
  background: var(--bg-1);
  border-top-left-radius: var(--r-xl);
  border-top-right-radius: var(--r-xl);
  border-top: 1px solid var(--border);
  width: 100%;
  box-shadow: var(--shadow-pop);
  scrollbar-width: none;
  max-height: 86%;
  padding: 12px 18px 26px;
  animation: .32s cubic-bezier(.22, .61, .36, 1) tedu-sheetUp;
  position: relative;
  overflow-y: auto;
}

.tedu-root .sheet::-webkit-scrollbar {
  display: none;
}

.tedu-root.theme-light .sheet {
  background: var(--surface-1);
}

.tedu-root .sheet__grip-head {
  background: var(--bg-1);
}

.tedu-root .sheet__bar {
  z-index: 2;
  background: var(--bg-1);
  align-items: center;
  gap: 10px;
  margin: 10px -18px -26px;
  padding: 12px 18px 26px;
  display: flex;
  position: sticky;
  bottom: -26px;
  box-shadow: 0 -10px 20px -12px #00000073;
}

.tedu-root.theme-light .sheet__bar {
  background: var(--surface-1);
}

.tedu-root .sheet__bar .btn {
  width: auto;
}

.tedu-root .sheet__bar .btn--primary {
  flex: 1;
}

.tedu-root.theme-light .sheet__grip-head {
  background: var(--surface-1);
}

@keyframes tedu-sheetUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: none;
  }
}

.tedu-root .sheet__grip {
  background: var(--border-strong);
  border-radius: 999px;
  width: 38px;
  height: 4px;
  margin: 0 auto 16px;
}

.tedu-root .ctl-browse {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 0, #454550 0%, #1a1a1e 40%, #000 100%);
  flex-direction: column;
  flex: 1;
  min-height: 0;
  margin: 0 18px 18px;
  display: flex;
  overflow: hidden;
}

.tedu-root .ctl-browse__head {
  flex: none;
  justify-content: center;
  padding: 18px 16px 4px;
  display: flex;
}

.tedu-root .ctl-browse__head img {
  width: min(190px, 52%);
  height: auto;
}

.tedu-root .ctl-browse__grid {
  scrollbar-width: none;
  flex: 1;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 14px 14px 18px;
  display: grid;
  overflow-y: auto;
}

.tedu-root .ctl-browse__grid::-webkit-scrollbar {
  display: none;
}

.tedu-root .ctl-browse .game-card {
  min-height: 118px;
  padding: 14px;
  font-size: 1.05rem;
}

.tedu-root .ctl-cinema {
  flex: 1;
  gap: 20px;
  min-height: 0;
  padding: 0 20px 20px;
  display: flex;
}

.tedu-root .ctl-cinema__main, .tedu-root .ctl-cinema__side {
  padding-top: var(--ctl-chrome-h, 0px);
}

.tedu-root .ctl-cinema__main {
  scrollbar-width: none;
  flex-direction: column;
  flex: 1.7;
  gap: 14px;
  min-width: 0;
  display: flex;
  overflow-y: auto;
}

.tedu-root .ctl-cinema__main::-webkit-scrollbar {
  display: none;
}

.tedu-root .ctl-cinema__main > * {
  flex-shrink: 0;
}

.tedu-root .ctl-cinema__side {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  min-width: 0;
  max-width: 360px;
  min-height: 0;
  display: flex;
}

.tedu-root .ctl-cinema__scroll {
  scrollbar-width: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.tedu-root .ctl-cinema__scroll::-webkit-scrollbar {
  display: none;
}

.tedu-root .ctl-mirror {
  box-shadow: 0 26px 60px -18px #22367466;
}

.tedu-root .ctl-cinema__main .ctl-mirror {
  box-shadow: 0 12px 30px -18px #22367442;
}

@media (max-width: 1160px) {
  .tedu-root .ctl-cinema {
    padding-top: var(--ctl-chrome-h, 0px);
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
  }

  .tedu-root .ctl-cinema__main, .tedu-root .ctl-cinema__side {
    padding-top: 0;
  }

  .tedu-root .ctl-cinema::-webkit-scrollbar {
    display: none;
  }

  .tedu-root .ctl-cinema__main {
    flex: none;
    overflow: visible;
  }

  .tedu-root .ctl-cinema__side {
    flex: none;
    max-width: none;
    min-height: 0;
  }

  .tedu-root .ctl-cinema__scroll {
    flex: none;
    overflow: visible;
  }
}

.tedu-root .ctl-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  display: flex;
}

.tedu-root .ctl-transport {
  gap: 24px;
}

.tedu-root .ctl-transport--big {
  gap: 30px;
}

.tedu-root .ctl-cine-transport {
  justify-content: center;
  align-items: center;
  gap: min(30px, 5.5%);
  padding: 2px 4px;
  display: flex;
}

.tedu-root .ctl-cine-transport > * {
  flex: none;
  min-width: 0;
}

.tedu-root .ctl-cine-transport .ctl-transport {
  flex: auto;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  max-width: 244px;
}

.tedu-root .ctl-volslider {
  align-items: center;
  gap: 12px;
  padding: 0 4px;
  display: flex;
}

.tedu-root.theme-light .ctl-card {
  border-radius: var(--r-xl);
  background: #ffffffeb;
  border-color: #ffffffe6;
  box-shadow: 0 16px 40px #1e326e1a, inset 0 1px #ffffffe6;
}

.tedu-root.theme-light .ctl-cinema__scroll {
  border-radius: var(--r-xl);
  background: #ffffffeb;
  border: 1px solid #ffffffe6;
  padding: 14px 10px;
  box-shadow: 0 16px 40px #1e326e1a, inset 0 1px #ffffffe6;
}

.tedu-root .ctl-qhead {
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.tedu-root .ctl-qhead__name {
  letter-spacing: -.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 800;
  overflow: hidden;
}

.tedu-root .ctl-miniact {
  border-radius: var(--r-pill);
  white-space: nowrap;
  height: 30px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--sans);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-1);
  cursor: pointer;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  transition: background .15s, border-color .15s;
  display: inline-flex;
  position: relative;
}

.tedu-root .ctl-miniact:before {
  content: "";
  position: absolute;
  inset: -7px 0;
}

.tedu-root .ctl-miniact:hover {
  background: var(--surface-3);
}

.tedu-root .ctl-miniact:disabled {
  opacity: .5;
  cursor: default;
}

.tedu-root .ctl-miniact--on {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
}

.tedu-root .ctl-loadbtn {
  border-radius: var(--r-md);
  border: 1px dashed var(--border-strong);
  background: var(--surface-1);
  height: 46px;
  color: var(--text-1);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  flex: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  display: flex;
}

.tedu-root .ctl-loadbtn:hover {
  background: var(--surface-2);
}

.tedu-root .ctl-eq {
  flex: none;
  align-items: flex-end;
  gap: 2px;
  height: 15px;
  display: flex;
}

.tedu-root .ctl-eq i {
  background: var(--accent);
  transform-origin: bottom;
  border-radius: 2px;
  width: 3px;
  animation: 1s ease-in-out infinite ctl-eq-bounce;
  display: block;
}

.tedu-root .ctl-eq i:first-child {
  height: 7px;
  animation-delay: -.2s;
}

.tedu-root .ctl-eq i:nth-child(2) {
  height: 13px;
  animation-delay: -.5s;
}

.tedu-root .ctl-eq i:nth-child(3) {
  height: 9px;
}

@keyframes ctl-eq-bounce {
  0%, 100% {
    transform: scaleY(.45);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tedu-root .ctl-eq i {
    animation: none;
    transform: scaleY(.75);
  }
}

.tedu-root .sec-action {
  cursor: pointer;
  color: var(--accent);
  font-family: var(--sans);
  letter-spacing: -.01em;
  border-radius: var(--r-sm);
  background: none;
  border: none;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
}

.tedu-root .sec-action:hover {
  background: var(--accent-soft);
}

/*# sourceMappingURL=app_control_tedu_002.ptg.css.map*/