:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);
  --muted2: rgba(11, 18, 32, 0.58);
  --border: rgba(15, 23, 42, 0.12);
  --border2: rgba(15, 23, 42, 0.08);
  --primary: #2563eb;
  --primary2: #1d4ed8;
  --danger: #dc2626;
  --shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
  --shadow2: 0 10px 28px rgba(2, 6, 23, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s;
  --t-mid: 0.6s;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-pill: 999px;
  --green: #16a34a;
  --green2: #22c55e;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.caption {
  font-size: 13px;
  color: var(--muted2);
}

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.86);
  filter: blur(16px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.95s var(--ease),
    filter 0.7s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.show {
  opacity: 1;
  transform: translateY(-8px) scale(1.03);
  filter: blur(0);
}
.reveal.show.pop-done {
  transform: translateY(0) scale(1);
}

.reveal.from-left {
  transform: translateX(-120px) translateY(40px) scale(0.88);
}
.reveal.from-right {
  transform: translateX(120px) translateY(40px) scale(0.88);
}
.reveal.from-left.show,
.reveal.from-right.show {
  transform: translateX(0) translateY(-8px) scale(1.03);
}
.reveal.from-left.show.pop-done,
.reveal.from-right.show.pop-done {
  transform: translateX(0) translateY(0) scale(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
}

.topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar .row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 10px 0;
}
.topbar .caption {
  color: rgba(11, 18, 32, 0.85);
  font-weight: 900;
  font-size: 13px;
}

.btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 900;
  cursor: pointer;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.86);
  text-decoration: none;
  transition:
    opacity var(--t-fast),
    transform var(--t-fast),
    color var(--t-fast);
  line-height: 1;
}
.btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.btn.primary {
  color: rgba(11, 18, 32, 0.92);
}
.btn.ghost {
  color: rgba(11, 18, 32, 0.82);
}

#btnInbox {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: rgba(11, 18, 32, 0.92);
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: -0.01em;
}
#btnInbox::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  display: block;
  transform: translateY(-2px);
}
#btnInbox:hover {
  transform: translateY(-1px);
}
.inbox-ico {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.inbox-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}

.badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.25);
}

#btnLogin,
#btnSignup {
  height: auto !important;
  padding: 6px 2px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  color: rgba(11, 18, 32, 0.86) !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(11, 18, 32, 0.18) !important;
  transition:
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
#btnLogin:hover,
#btnSignup:hover {
  color: rgba(11, 18, 32, 0.98) !important;
  border-bottom-color: rgba(11, 18, 32, 0.35) !important;
  transform: translateY(-1px);
}

#btnLogout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0;
  background: transparent;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 900;
  font-size: 13px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

#btnLogout:not([style*="display: none"]) ~ #btnLogin,
#btnLogout:not([style*="display: none"]) ~ #btnSignup {
  display: none !important;
}

.mypage-ico {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(2, 6, 23, 0.02);
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.mypage-ico:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.04);
  border-color: rgba(15, 23, 42, 0.18);
}
.mypage-ico img {
  width: 20px;
  height: 20px;
  display: block;
}

.navwrap {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navwrap .container {
  max-width: 1700px !important;
}

.navrow {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.brand-left {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  padding: 6px 10px;
}
.brand-left img {
  height: 86px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(2, 6, 23, 0.14));
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.navrow a.link {
  color: rgba(11, 18, 32, 0.78);
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.navrow a.link:hover {
  color: rgba(11, 18, 32, 0.98);
}

.dropdown {
  position: relative;
}
.drop-toggle {
  cursor: pointer;
  color: rgba(11, 18, 32, 0.78);
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.drop-toggle:hover {
  color: rgba(11, 18, 32, 0.98);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 140%;
  left: 0;
  width: 190px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.14);
  padding: 10px 0;
  z-index: 1100;
  backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(11, 18, 32, 0.86);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}
.dropdown-menu a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: rgba(11, 18, 32, 0.98);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 5;
}
.burger span {
  width: 26px;
  height: 3px;
  background: rgba(11, 18, 32, 0.82);
  border-radius: 3px;
}

.m-mypage-ico {
  display: none;
}

@media (max-width: 980px) {
  .topbar {
    display: none !important;
  }
  .navrow {
    min-height: 86px;
    padding: 14px 0;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
    padding-right: 8px;
  }
  .brand-left img {
    height: 64px !important;
    max-width: 240px !important;
  }

  .m-mypage-ico {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    text-decoration: none;
    transition:
      transform 0.2s,
      background 0.2s,
      border-color 0.2s;
  }

  .m-mypage-ico:hover {
    transform: translateY(-50%) translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.18);
  }

  .m-mypage-ico img {
    width: 20px;
    height: 20px;
    display: block;
  }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(255, 255, 255, 0.88);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text);
  text-align: center;
  z-index: 9999;
  padding: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-overlay.active {
  display: flex;
}
.mobile-overlay a {
  color: rgba(11, 18, 32, 0.92);
  text-decoration: none;
  font-size: 1.06rem;
  display: block;
  padding: 8px 0;
  font-weight: 900;
}
.mobile-divider {
  width: min(360px, 86vw);
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(340px, 82vw);
}
.mobile-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: rgba(2, 6, 23, 0.02);
  border: 1px solid var(--border);
  font-weight: 900;
  border-radius: var(--r-lg);
}
.mobile-actions a.btn.primary {
  background: var(--primary) !important;
  border-color: rgba(37, 99, 235, 0.24) !important;
  color: #fff !important;
}
#mobileMenu #mLogout {
  background: rgba(2, 6, 23, 0.02) !important;
  border: 1px solid var(--border) !important;
  color: rgba(11, 18, 32, 0.9) !important;
  border-radius: var(--r-lg) !important;
}

.banner-overlay {
  background: transparent !important;
  pointer-events: none;
}

.wide-card.card-bg::after {
  background: none !important;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--border2);
}
.banner-stage {
  width: 100%;
  height: 760px;
  position: relative;
}
@media (max-width: 980px) {
  .banner-stage {
    height: 420px;
  }
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(90px) scale(1.06) rotate(0.25deg);
  filter: saturate(1.18) contrast(1.14) brightness(1.02);
  transition:
    opacity 0.85s var(--ease),
    transform 1.2s var(--ease),
    filter 1s var(--ease);
  will-change: opacity, transform, filter;
}
.banner-img.show {
  opacity: 1;
  transform: translateX(-6px) scale(1.02) rotate(0deg);
  filter: saturate(1.22) contrast(1.16) brightness(1.03);
}
.banner-img:not(.show) {
  transform: translateX(-90px) scale(1.04) rotate(-0.25deg);
  filter: saturate(1.1) contrast(1.08) brightness(1.01);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.banner-box {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.banner-eyebrow {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.banner-title {
  margin: 0 0 12px 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.banner-sub {
  margin: 0 0 22px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.8;
  max-width: 640px;
  font-size: 14px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.section-pad {
  padding: 64px 0;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-h {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.96);
  text-align: center;
}
.section-p {
  margin: 0 auto 22px;
  color: rgba(11, 18, 32, 0.66);
  font-weight: 800;
  line-height: 1.9;
  max-width: 920px;
  text-align: center;
}

.wide-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  padding: 26px;
  box-shadow: var(--shadow);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.wide-card.card-bg {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.wide-card.card-bg > * {
  position: relative;
  z-index: 2;
}
.wide-card.card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: saturate(1.12) contrast(1.1) brightness(1.03);
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
}

.wide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.78);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid rgba(11, 18, 32, 0.18);
  transition:
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
}
.text-link:hover {
  color: rgba(11, 18, 32, 0.96);
  border-bottom-color: rgba(11, 18, 32, 0.34);
  transform: translateY(-1px);
}

.notice-section {
  padding: 64px 0;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.notice-wrap {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.notice-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}
.notice-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}
.notice-more {
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.notice-more:hover {
  color: rgba(11, 18, 32, 0.95);
}

.notice-line {
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(34, 197, 94, 0.35));
  margin: 0 20px 6px;
  border-radius: var(--r-pill);
}

.notice-list {
  display: grid;
}
.notice-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: rgba(11, 18, 32, 0.92);
}
.notice-item:hover {
  background: rgba(2, 6, 23, 0.02);
}
.notice-item .nt {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.notice-item .nd {
  font-weight: 900;
  color: rgba(11, 18, 32, 0.5);
  font-size: 12px;
  white-space: nowrap;
}

.quick-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quick-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow2);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: rgba(11, 18, 32, 0.92);
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast),
    border-color var(--t-fast);
  display: grid;
  grid-template-rows: 140px 1fr;
}
.quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
}
.quick-top {
  background: linear-gradient(
    180deg,
    rgba(22, 163, 74, 0.95),
    rgba(22, 163, 74, 0.75)
  );
  display: grid;
  place-items: center;
}
.quick-top img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.22));
}

.quick-card.photo .quick-top {
  background: #111;
  padding: 0;
}
.quick-card.photo .quick-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.1) brightness(1.02);
}

.quick-body {
  padding: 16px 16px 14px;
  display: grid;
  gap: 8px;
}
.quick-h {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}
.quick-p {
  margin: 0;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 800;
  line-height: 1.7;
  font-size: 13px;
}
.quick-go {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.7);
}

@media (max-width: 980px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-card {
    grid-template-rows: 150px 1fr;
  }
}

.faq-section {
  background: transparent;
  padding: 64px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.faq-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 24px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.96);
}
.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(2, 6, 23, 0.02);
  margin: 10px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  font-weight: 900;
  font-size: 17px;
  color: rgba(11, 18, 32, 0.92);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
  font-weight: 900;
  border-radius: var(--r-md);
  color: rgba(11, 18, 32, 0.9);
}
.faq-body {
  padding: 0 18px 18px;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 800;
  line-height: 1.85;
  font-size: 14px;
}

.live-section {
  background: transparent;
  padding: 64px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.partners-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.section-title {
  text-align: center;
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.95);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.partner-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--shadow2);
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 120px;
  text-decoration: none;
  border-radius: var(--r-xl);
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast),
    border-color var(--t-fast);
}
.partner-card img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  transform: scale(1.06);
  filter: saturate(1.02);
}
@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border2);
}

.footer-toplinks {
  padding: 18px 0 12px;
}
.footer-toplinks .inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-toplinks a {
  color: rgba(11, 18, 32, 0.9);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.footer-toplinks a:hover {
  color: rgba(11, 18, 32, 0.98);
}
.footer-toplinks .sep {
  width: 1px;
  height: 12px;
  background: rgba(15, 23, 42, 0.18);
  display: inline-block;
}

.footer-line {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.footer-main {
  padding: 18px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 360px 1fr 320px;
  gap: 18px;
  align-items: center;
}

.f-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.f-brand .logo {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.f-brand .logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}
.f-brand .btxt {
  min-width: 0;
}
.f-brand .bname {
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: 22px;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.f-brand .bmeta {
  margin: 6px 0 0;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.5;
}

.f-info {
  display: grid;
  gap: 6px;
  color: rgba(11, 18, 32, 0.78);
  font-weight: 900;
  font-size: 12.5px;
  line-height: 1.6;
}
.f-info .row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.f-info .k {
  color: rgba(11, 18, 32, 0.92);
}
.f-info a {
  color: rgba(11, 18, 32, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 18, 32, 0.18);
}
.f-info a:hover {
  border-bottom-color: rgba(11, 18, 32, 0.35);
}

.f-contact {
  justify-self: end;
  text-align: left;
  display: grid;
  gap: 10px;
}
.f-contact .ctitle {
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
  margin: 0;
}
.f-contact .cmeta {
  display: grid;
  gap: 4px;
  color: rgba(11, 18, 32, 0.78);
  font-weight: 900;
  font-size: 12.5px;
  line-height: 1.6;
}
.f-contact .cmeta b {
  color: rgba(11, 18, 32, 0.92);
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sbtn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(2, 6, 23, 0.02);
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.sbtn:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.04);
  border-color: rgba(15, 23, 42, 0.18);
}
.sbtn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .f-contact {
    justify-self: start;
  }
}

@media (min-width: 981px) {
  .navrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .brand-left {
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 6px;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    white-space: nowrap;
  }

  .burger {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.notice-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.18);
  color: rgba(11, 18, 32, 0.92);
  font-weight: 900;
  cursor: pointer;
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
  user-select: none;
}
.notice-bubble.show {
  transform: translateY(0);
  opacity: 1;
}
.notice-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.28);
}

.rs-pop-ov {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 13000;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.rs-pop-ov.show {
  opacity: 1;
}
.rs-pop-card {
  width: min(620px, 92vw);
  max-height: min(720px, 86vh);
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.3);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.rs-pop-head {
  padding: 16px 18px;
  font-weight: 1000;
  font-size: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rs-pop-body {
  padding: 14px 18px;
  overflow: auto;
}
.rs-pop-text {
  color: rgba(11, 18, 32, 0.74);
  font-weight: 800;
  line-height: 1.7;
  font-size: 13px;
  white-space: pre-line;
}
.rs-pop-foot {
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.rs-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(2, 6, 23, 0.02);
  color: rgba(11, 18, 32, 0.92);
  font-weight: 1000;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    background 0.15s var(--ease);
}
.rs-btn:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.04);
}
.rs-btn.primary {
  background: var(--primary);
  border-color: rgba(37, 99, 235, 0.24);
  color: #fff;
}
.rs-btn.primary:hover {
  background: var(--primary2);
}
.rs-btn.gray {
  background: rgba(2, 6, 23, 0.02);
}

.banner-stage {
  height: 1050px;
}
@media (max-width: 980px) {
  .banner-stage {
    height: 620px;
  }
}

.banner-img {
  object-position: center 78%;
}

.video-section {
  padding: 28px 0 54px;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.video-wrap {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 981px) {
  .nav-links .dropdown-menu {
    display: none !important;
  }

  .nav-links .dropdown:hover .dropdown-menu,
  .nav-links .dropdown:focus-within .dropdown-menu {
    display: none !important;
  }

  .site-header,
  .navwrap {
    overflow: visible;
  }

  #megaMenu.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 2200;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.18s var(--ease),
      transform 0.22s var(--ease);
  }

  #megaMenu.mega-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #megaMenu .mega-inner {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 18px;
  }

  #megaMenu .mega-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.14);
    border-radius: 18px;
    padding: 16px;
    overflow: hidden;
  }

  #megaMenu .mega-col {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.62);
    border-radius: 16px;
    padding: 12px;
  }

  #megaMenu .mega-col h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: -0.01em;
    color: rgba(11, 18, 32, 0.92);
  }

  #megaMenu .mega-col a {
    display: block;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    color: rgba(11, 18, 32, 0.78);
    transition:
      background 0.15s var(--ease),
      color 0.15s var(--ease),
      transform 0.15s var(--ease);
  }

  #megaMenu .mega-col a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: rgba(11, 18, 32, 0.95);
    transform: translateY(-1px);
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  #megaMenu .mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .video-section {
    padding: 8px 0 14px !important;
  }

  .video-wrap {
    max-width: 980px;
    margin: 0 auto;
  }

  .video-frame {
    aspect-ratio: 24 / 9;
  }
}

@media (max-width: 980px) {
  #megaMenu {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .nav-links {
    display: none !important;
  }
}

html,
body {
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

body:has(#mobileMenu.active) {
  overflow: hidden !important;
  height: 100vh !important;
}

#mobileMenu.mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  transform: none !important;
  display: none !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-sizing: border-box;
  padding: 26px 0 !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  gap: 14px !important;
}

#mobileMenu.mobile-overlay.active {
  display: flex !important;
}

#mobileMenu.mobile-overlay::before {
  content: "";
  display: block;
  width: min(300px, 78vw);
  height: 88px;
  margin: 0 auto 10px;
  background: url("/assets/img/logo1.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 22px rgba(2, 6, 23, 0.18));
  pointer-events: none;
}

#mobileMenu.mobile-overlay > a,
#mobileMenu.mobile-overlay .mobile-divider,
#mobileMenu.mobile-overlay .mobile-actions {
  width: min(360px, 86vw);
  margin: 0 auto;
  text-align: center;
}

#mobileMenu.mobile-overlay > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0 !important;
  font-size: 1.06rem !important;
  line-height: 1.2 !important;
  font-weight: 900;
}

#mobileMenu.mobile-overlay > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
}

#mobileMenu.mobile-overlay > a:last-of-type::after {
  display: none;
}

#mobileMenu.mobile-overlay .mobile-divider {
  height: 1px;
  margin: 14px auto !important;
  background: rgba(15, 23, 42, 0.14) !important;
}

#mobileMenu.mobile-overlay #mWelcome {
  margin-bottom: 10px !important;
  font-size: 1.05rem;
}

#mobileMenu.mobile-overlay .mobile-actions {
  margin-top: 8px !important;
  gap: 10px !important;
  width: min(340px, 82vw);
}

#mobileMenu.mobile-overlay .mobile-actions .mbtn {
  width: 100%;
  padding: 14px 14px !important;
  border-radius: 18px;
}

#mobileMenu.mobile-overlay .mobile-actions .mbtn.primary,
#mobileMenu.mobile-overlay #mLogout.mbtn.primary {
  background: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  color: #fff !important;
}

#mobileMenu #mInbox {
  justify-content: center !important;
  position: relative;
}

#mobileMenu #mInbox > span:first-child {
  width: 100%;
  justify-content: center !important;
}

#mobileMenu #mMsgBadge {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

#mobileMenu #mGuest > a.btn.primary[href="./signup.html"] {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

#mobileMenu #mLogout {
  width: min(360px, 86vw) !important;
  height: 56px !important;
  margin: 8px auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #2563eb !important;
  color: #fff !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  border-radius: 999px !important;
  font-weight: 1000 !important;
  font-size: 16px !important;
  letter-spacing: -0.02em !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22) !important;
}

#mobileMenu #mLogout:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

#mobileMenu #mInbox {
  width: min(360px, 86vw) !important;
  height: 56px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  padding: 0 !important;
}

#mobileMenu #mInbox[style] {
  justify-content: center !important;
}

.hero-image-section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
  border: 0;
}

.hero-image {
  display: block;
  width: 100%;
  margin: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
}

.plan-section {
  padding: 24px 0;
  background: #eaf3e8;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.plan-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.plan-r {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pc-only {
  display: block;
}
.mo-only {
  display: none;
}
@media (max-width: 980px) {
  .pc-only {
    display: none;
  }
  .mo-only {
    display: block;
  }
}

.plan-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.16);
  background: transparent !important;
  padding: 0 !important;
  height: auto !important;
}

.plan-img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: none !important;
  opacity: 1 !important;
  transform: none !important;
  object-fit: contain !important;
  z-index: 1 !important;
}

#plan-basic:checked ~ .pc-only .plan-pc-basic,
#plan-standard:checked ~ .pc-only .plan-pc-standard,
#plan-advance:checked ~ .pc-only .plan-pc-advance,
#plan-prime:checked ~ .pc-only .plan-pc-prime,
#plan-basic:checked ~ .mo-only .plan-mo-basic,
#plan-standard:checked ~ .mo-only .plan-mo-standard,
#plan-advance:checked ~ .mo-only .plan-mo-advance,
#plan-prime:checked ~ .mo-only .plan-mo-prime {
  display: block !important;
}

.plan-hit {
  position: absolute !important;
  inset: 0 !important;
  z-index: 20 !important;
}

.plan-hit .hit {
  position: absolute;
  cursor: pointer;
  background: transparent;
}

.pc-only .plan-hit .hit {
  top: 75% !important;
  height: 25% !important;
  width: 25% !important;
}
.pc-only .plan-hit .basic {
  left: 0% !important;
}
.pc-only .plan-hit .standard {
  left: 25% !important;
}
.pc-only .plan-hit .advance {
  left: 50% !important;
}
.pc-only .plan-hit .prime {
  left: 75% !important;
}

@media (max-width: 980px) {
  .mo-only .plan-hit .hit {
    top: 75% !important;
    height: 25% !important;
    width: 25% !important;
  }
  .mo-only .plan-hit .basic {
    left: 0% !important;
    top: 75% !important;
  }
  .mo-only .plan-hit .standard {
    left: 25% !important;
    top: 75% !important;
  }
  .mo-only .plan-hit .advance {
    left: 50% !important;
    top: 75% !important;
  }
  .mo-only .plan-hit .prime {
    left: 75% !important;
    top: 75% !important;
  }

  .banner-stage {
    height: 206px !important;
  }

  .banner-title {
    font-size: 18px !important;
  }
  .banner-sub {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

.quick-card.photo .quick-top {
  height: auto !important;
}
.quick-card.photo {
  grid-template-rows: auto !important;
}
.quick-card.photo .quick-top img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

@media (min-width: 981px) {
  .hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

@media (min-width: 981px) {
  .hero-image {
    display: flex;
    justify-content: center;
    background: #fff;
  }
  .hero-image img {
    width: 100%;
    max-width: 1280px;
    height: auto;
  }
}

@media (min-width: 981px) {
  #mMyPageIcon {
    display: none !important;
  }
}

#megaMenu .mega-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quick-card.photo .quick-top {
  overflow: hidden;
}

.quick-card.photo .quick-top img {
  transform: scale(1.06);
  transform-origin: center;
}

@media (min-width: 981px) {
  .brand-left img {
    height: 56px !important;
    max-width: 220px !important;
  }

  .navrow {
    min-height: 72px !important;
    padding: 10px 0 !important;
  }
}

@media (max-width: 980px) {
  .brand-left img {
    height: 40px !important;
    max-width: 170px !important;
  }

  .navrow {
    min-height: 64px !important;
    padding: 10px 0 !important;
  }

  #mobileMenu.mobile-overlay::before {
    height: 60px !important;
    width: min(220px, 72vw) !important;
  }
}

.notice-line {
  background: linear-gradient(
    90deg,
    #ff8a00,
    rgba(255, 138, 0, 0.35)
  ) !important;
}

@media (max-width: 980px) {
  .quick-grid {
    gap: 12px !important;
    padding: 0 6px !important;
  }

  .quick-card {
    max-width: 360px;
    margin: 0 auto;
    border: 1.5px solid rgba(15, 23, 42, 0.18) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.1) !important;
  }

  .quick-card.photo .quick-top img {
    transform: scale(1.03) !important;
  }
}

@media (max-width: 520px) {
  .quick-card {
    max-width: 320px;
    border-radius: 16px !important;
  }
  .quick-grid {
    padding: 0 10px !important;
  }
}

@media (min-width: 981px) {
  .brand-left img {
    height: 40px !important;
    max-width: 160px !important;
  }
}

@media (max-width: 980px) {
  .brand-left img {
    height: 28px !important;
    max-width: 120px !important;
  }
}

.m-guest-icons {
  display: none;
}

@media (max-width: 980px) {
  .m-guest-icons {
    display: none;
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
    z-index: 6;
    align-items: center;
  }

  .m-guest-ico {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition:
      transform 0.2s,
      background 0.2s,
      border-color 0.2s;
  }

  .m-guest-ico:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.18);
  }

  .m-guest-ico img {
    width: 20px;
    height: 20px;
    display: block;
  }
}

@media (min-width: 981px) {
  .m-guest-icons {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .m-guest-ico {
    width: 44px !important;
    height: 44px !important;
  }
  .m-guest-ico img {
    width: 30px !important;
    height: 30px !important;
  }
}

.ft-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(11, 18, 32, 0.18);
  transition:
    transform 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.ft-link:hover {
  color: rgba(11, 18, 32, 0.98);
  border-bottom-color: rgba(11, 18, 32, 0.35);
  transform: translateY(-1px);
}

.rt-modal-ov {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(2, 6, 23, 0.52);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rt-modal-ov.show {
  display: flex;
}

.rt-modal {
  width: min(860px, 92vw);
  max-height: min(760px, 86vh);
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.rt-modal-head {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rt-modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.92);
}
.rt-modal-close {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(2, 6, 23, 0.02);
  color: rgba(11, 18, 32, 0.92);
  font-weight: 1000;
  padding: 8px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    background 0.15s var(--ease);
}
.rt-modal-close:hover {
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.04);
}

.rt-modal-body {
  padding: 14px 18px 18px;
  overflow: auto;
}

.rt-modal-text {
  color: rgba(11, 18, 32, 0.74);
  font-weight: 800;
  line-height: 1.85;
  font-size: 13.5px;
  white-space: pre-line;
}

.rt-modal-foot {
  padding: 14px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: flex-end;
}
.rt-modal-ok {
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 1000;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    filter 0.15s var(--ease);
}
.rt-modal-ok:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

#rtPolicyModal.rt-modal-ov {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

#rtPolicyModal .rt-modal {
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

#rtPolicyModal .rt-modal-body,
#rtPolicyModal .rt-modal-text {
  overflow-x: hidden !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
  #rtPolicyModal.rt-modal-ov {
    padding: 12px !important;
  }
  #rtPolicyModal .rt-modal {
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 24px) !important;
    border-radius: 18px !important;
  }

  #rtPolicyModal .rt-modal-ok {
    width: 100% !important;
  }
}

@media (min-width: 981px) {
  .brand-left img {
    height: 78px !important;
    max-width: 320px !important;
  }
}

@media (max-width: 980px) {
  .brand-left img {
    height: 54px !important;
    max-width: 220px !important;
  }
}

@media (min-width: 981px) {
  .mypage-ico {
    border-color: rgba(11, 18, 32, 0.28);
  }
  .mypage-ico:hover {
    border-color: rgba(11, 18, 32, 0.42);
  }
}

@media (max-width: 980px) {
  .m-guest-ico {
    border: 1px solid rgba(11, 18, 32, 0.28);
  }
  .m-guest-ico:hover {
    border-color: rgba(11, 18, 32, 0.42);
  }
}

.plan-section {
  padding: 24px 0;
  background: #fff3e6;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.plan-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.plan-tab {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(11, 18, 32, 0.86);
  font-weight: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.plan-tab:hover {
  transform: translateY(-1px);
}
.plan-tab.active {
  background: #ff8a00;
  border-color: rgba(255, 138, 0, 0.35);
  color: #fff;
}
.plan-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.16);
  background: transparent;
}
.plan-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.mypage-ico,
.m-mypage-ico {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.mypage-ico img,
.m-mypage-ico img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.social .sbtn {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 34px !important;
  height: 34px !important;
}

#kakaoLink svg,
#youtubeLink svg {
  display: none !important;
}

#kakaoLink {
  background: url("../assets/img/kakao.png") center/32px 32px no-repeat !important;
}
#youtubeLink {
  background: url("../assets/img/youtube.png") center/32px 32px no-repeat !important;
}

#kakaoLink,
#youtubeLink {
  filter: contrast(1.15) saturate(1.1);
}

.social .sbtn {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  isolation: isolate !important;
}

#kakaoLink svg,
#youtubeLink svg {
  display: none !important;
}

#kakaoLink,
#youtubeLink {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: transparent !important;
  opacity: 1 !important;
  filter: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

#kakaoLink {
  background-image: url("../assets/img/kakao.png") !important;
  background-size: 34px 34px !important;
}

#youtubeLink {
  background-image: url("../assets/img/youtube.png") !important;
  background-size: 34px 34px !important;
}

.social {
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
}

#mSocial.m-social {
  margin-top: auto;
  width: min(360px, 86vw);
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px 0 6px;
}

#mSocial .m-sbtn {
  width: 44px;
  height: 44px;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

#mKakaoLink svg,
#mYoutubeLink svg {
  display: none !important;
}

#mKakaoLink {
  background: url("../assets/img/kakao.png") center/34px 34px no-repeat !important;
}
#mYoutubeLink {
  background: url("../assets/img/youtube.png") center/34px 34px no-repeat !important;
}

#mobileMenu.mobile-overlay {
  justify-content: flex-start !important;
  padding: 26px 0 18px !important;
}

#mobileMenu .mobile-actions {
  margin-top: 8px !important;
}

#mSocial.m-social {
  margin-top: auto !important;
  padding: 18px 0 6px !important;
}

.m-guest-ico {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  width: 44px !important;
  height: 44px !important;
}

.m-guest-ico img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#mobileMenu.mobile-overlay .mobile-actions .mbtn.primary,
#mobileMenu.mobile-overlay #mLogout.mbtn.primary {
  background: #f97316 !important;
  border-color: rgba(249, 115, 22, 0.35) !important;
  color: #fff !important;
}

#mobileMenu #mLogout {
  background: #f97316 !important;
  border-color: rgba(249, 115, 22, 0.35) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22) !important;
}

#mobileMenu #mLogout {
  background: #f97316 !important;
  border-color: rgba(249, 115, 22, 0.35) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22) !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  touch-action: pan-y;
}

*,
*::before,
*::after {
  max-width: 100%;
  box-sizing: border-box;
}

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
}

.banner,
.site-header,
.navwrap,
section,
footer {
  overflow-x: clip;
}

.notice-bubble,
.rs-pop-ov,
.rt-modal-ov,
#mobileMenu {
  left: 0;
  right: 0;
  max-width: 100%;
}

#mobileMenu {
  width: 100%;
}

@media (max-width: 980px) {
  #mobileMenu.active {
    padding-bottom: 140px !important;
  }

  #mobileMenu.active #mSocial.m-social {
    position: absolute !important;
    left: 50% !important;
    bottom: 22px !important;
    transform: translateX(-50%) !important;

    width: min(360px, 86vw) !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;

    z-index: 100000 !important;
    background: transparent !important;
    pointer-events: auto !important;
  }

  #mobileMenu.active #mSocial .m-sbtn {
    width: 62px !important;
    height: 62px !important;
    border-radius: 999px !important;

    background-color: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    box-shadow:
      0 18px 44px rgba(2, 6, 23, 0.18),
      0 2px 10px rgba(2, 6, 23, 0.08) !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;

    transition:
      transform 0.15s ease,
      filter 0.15s ease !important;
  }

  #mobileMenu.active #mSocial .m-sbtn:active {
    transform: scale(0.96) !important;
    filter: brightness(0.98) !important;
  }

  #mobileMenu.active #mKakaoLink {
    background-size: 40px 40px !important;
  }

  #mobileMenu.active #mYoutubeLink {
    background-size: 40px 40px !important;
  }
}

@media (max-width: 980px) {
  body:has(#mobileMenu.active) {
    height: 100dvh !important;
    overflow: hidden !important;
  }

  #mobileMenu.mobile-overlay {
    height: 100dvh !important;
    max-height: 100dvh !important;
    justify-content: flex-start !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
  }

  #mobileMenu.active {
    padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
  }

  #mobileMenu.active #mSocial.m-social {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-top: auto !important;
    padding: 18px 0 6px !important;
  }
}

@media (max-width: 980px) {
  body:has(#mobileMenu.active) {
    height: 100dvh !important;
    overflow: hidden !important;
  }

  #mobileMenu.mobile-overlay {
    height: 100dvh !important;
    max-height: 100dvh !important;
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 980px) {
  #mInboxIcon.m-inbox-ico {
    right: 114px;
  }
}

@media (min-width: 981px) {
  #mInboxIcon {
    display: none !important;
  }
}

#mobileMenu .mobile-actions a.btn.primary,
#mobileMenu .mobile-actions .btn.primary,
#mobileMenu .mobile-actions .mbtn.primary {
  background: #f97316 !important;
  border-color: rgba(249, 115, 22, 0.35) !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .banner-stage {
    height: 460px !important;
  }

  .banner-img {
    object-position: center 100% !important;
    transform: none !important;
  }
}

.notice-line {
  background: linear-gradient(
    90deg,
    #2563eb,
    rgba(37, 99, 235, 0.35)
  ) !important;
}

#mobileMenu #mGuest > a.btn.primary[href="./signup.html"],
#mobileMenu .mobile-actions > a.btn.primary[href="./signup.html"] {
  background: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  color: #fff !important;
}

#mobileMenu #mGuest > a.btn.primary[href="./signup.html"],
#mobileMenu .mobile-actions > a.btn.primary[href="./signup.html"],
#mobileMenu #mLogout {
  background: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22) !important;
}

@media (min-width: 981px) {
  #megaMenu.mega-menu {
    top: calc(100% + 12px);
  }

  #megaMenu .mega-inner {
    max-width: 1700px;
    padding: 0 18px;
  }

  #megaMenu .mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.16);
    overflow: hidden;
  }

  #megaMenu .mega-col {
    border: 0;
    background: transparent;
    padding: 0;
  }

  #megaMenu .mega-col h4 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: -0.01em;
    color: rgba(11, 18, 32, 0.88);
  }

  #megaMenu .mega-col a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    color: rgba(11, 18, 32, 0.74);
    background: transparent;
    border: 1px solid transparent;
    transition:
      transform 0.15s ease,
      background 0.15s ease,
      border-color 0.15s ease,
      color 0.15s ease;
  }

  #megaMenu .mega-col a:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.14);
    color: rgba(11, 18, 32, 0.96);
    transform: translateY(-1px);
  }

  #megaMenu .mega-col a:active {
    transform: translateY(0);
  }

  #megaMenu .mega-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(
        1200px 260px at 20% 0%,
        rgba(37, 99, 235, 0.08),
        transparent 55%
      ),
      radial-gradient(
        900px 240px at 85% 10%,
        rgba(249, 115, 22, 0.07),
        transparent 60%
      );
  }

  #megaMenu.mega-menu {
    position: absolute;
  }

  #megaMenu .mega-inner,
  #megaMenu .mega-grid {
    position: relative;
  }

  .navrow a.link,
  .drop-toggle {
    position: relative;
  }

  .navrow a.link::after,
  .drop-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: rgba(37, 99, 235, 0.8);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.18s ease;
  }

  .navrow a.link:hover::after,
  .drop-toggle:hover::after {
    width: 26px;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  #megaMenu .mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

:root {
  --bg: #ffffff;
}

html,
body {
  background: #ffffff !important;
}

.banner,
.section-pad,
.notice-section,
.faq-section,
.live-section,
.video-section,
.hero-image-section,
.plan-section,
.site-footer {
  background: #ffffff !important;
}

.plan-section {
  border-top-color: rgba(15, 23, 42, 0.06) !important;
  border-bottom-color: rgba(15, 23, 42, 0.06) !important;
}

.plan-tab.active,
.tab.active,
.plan-tabs .active,
.page-nav .tab.active {
  background: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
  color: #fff !important;
}

.plan-tab.active:hover,
.tab.active:hover,
.plan-tabs .active:hover,
.page-nav .tab.active:hover {
  background: #1d4ed8 !important;
}

.banner-title {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.65);
}

.banner-sub {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.45),
    0 8px 22px rgba(0, 0, 0, 0.55);
}
@media (max-width: 980px) {
  #mSocial,
  #mSocial.m-social,
  #mSocial .m-sbtn,
  #mKakaoLink,
  #mYoutubeLink {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

.floating-kakao {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
  z-index: 999999;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.floating-kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.22);
}

.floating-kakao img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

@media (max-width: 980px) {
  .floating-kakao {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-kakao img {
    width: 32px;
    height: 32px;
  }
}

.floating-kakao {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  text-decoration: none;
}

.floating-kakao-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.14);
}

.floating-kakao-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  transform: translateY(-50%) rotate(-45deg);
}

.floating-kakao img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}

@media (max-width: 980px) {
  .floating-kakao {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-kakao-bubble {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
    max-width: 200px;
  }

  .floating-kakao img {
    width: 58px;
    height: 58px;
  }
}
