html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: #111827;
  font-family: pretendard;
}

.site-content {
  min-height: 100vh;
  padding-bottom: 92px;
}

.psc-site-header {
  background: #ffffff;
}

.psc-site-header__inner {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px;
  gap: 10px;
}

.psc-site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo,
.psc-site-header__logo {
  min-width: 151px;
  height: auto;
  margin: 0 auto;
}

.psc-site-header__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.psc-site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.psc-site-header__icon-link {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}


.psc-home-category__inner {
  display: flex;
  padding: 16px 16px 0px 16px;
  align-self: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}


.psc-home-category__inner-btn {
  padding: 5px;
  max-width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.psc-home-category__inner-btn img {
  width: 45px;
  height: 45px;
}

.psc-home-category__inner-btn span {
  color: #000;
  text-decoration-line: none;
  font-size: 12px;
}

a {
  text-decoration: none;
}

.psc-home-login-banner {
  padding: 16px 16px 0 16px;
}
.psc-home-login-banner__inner {
  background: rgba(34, 67, 112, 0.06);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 16px;
}
.psc-home-login-banner__inner-left {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
}
.psc-home-login-banner__inner-right {
  background: #224371;
  border-radius: 8px;
  padding: 8px;
  display: flex;
}
.psc-home-login-banner__inner-right a{
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.psc-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  pointer-events: none;
}

.psc-bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 10px;
  border-top: 1px solid rgba(34, 67, 112, 0.10);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.psc-bottom-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  color: #333;
  border-radius: 18px;
  transition: color .2s ease, transform .2s ease, background-color .2s ease;
}

.psc-bottom-nav__item.is-active {
  color: #0088ff;
}

.psc-bottom-nav__item.is-main {
  transform: translateY(-16px);
}

.psc-bottom-nav__item.is-main .psc-bottom-nav__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #224371 0%, #3e6ab2 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(34, 67, 112, 0.24);
}

.psc-bottom-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.psc-bottom-nav__icon svg {
  width: 24px;
  height: 24px;
}

.psc-bottom-nav__label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 1024px) {
  .psc-bottom-nav {
    display: none;
  }

  .site-content {
    padding-bottom: 0;
  }
}
