/* font */
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.banggooso.com/assets/fonts/PretendardVariable.woff2') format('woff2');
  font-weight: 800;
}

* {
  box-sizing: border-box;
  transform: skew(0deg);
  letter-spacing: normal;
}

button,
li,
ul,
dt,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
div,
a,
p,
span,
b {
  transform: skew(0);
}

body,
html {
  font-size: 16px;
  font-family: 'Pretendard';
}

.hidden {
  display: none !important;
}

a,
button,
.cursor-pointer {
  cursor: pointer;
}

@media (max-width: 500px) {
  body,
  html {
    font-size: 3.2vw;
  }
}

img {
  user-select: none;
  -webkit-user-drag: none; /* Safari, Chrome */
  -khtml-user-drag: none; /* 옛날 Konqueror 브라우저 */
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none; /* 구형 Opera */
  -webkit-user-drag: none;
  user-select: none; /* 텍스트처럼 선택 방지 */
  -webkit-touch-callout: none;
}

/* 로딩 페이지 */
.game-wrapper .loading-wrap {
  padding-top: 4.0625rem;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(https://cdn.banggooso.com/assets/images/game284/common/bg.png) no-repeat center / 100% 100% !important;
  left: 0;
  top: 0;
  z-index: 99999;
  display: none;
}

.game-wrapper .loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.game-wrapper .loading-content .loading-bar {
  border-radius: 0.625rem;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.8);
  height: 0.375rem;
  width: 22.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  --progress-width: 60%; /* 광고 시청 후 로딩 바가 60%부터 시작하도록 설정 (사용자에게 진행 중인 느낌을 주기 위함) */
  --progress-transition: width 0.3s ease-out;
}

.game-wrapper .loading-content .loading-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width);
  background-color: #8383fb;
  border-radius: 0.5rem;
  transition: var(--progress-transition);
}

.game-wrapper .loading-content .loading-text-1,
.game-wrapper .loading-content .loading-text-2 {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.0175rem;
}

.game-wrapper .loading-content .loading-text-3 {
  margin-top: 3rem;
  text-align: center;
  font-family: 'Pretendard';
  color: gray;
}

.game-wrapper .loading-content .loading-text-1 {
  color: #6464fa;
}

.game-wrapper .loading-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 9.25rem;
}

.game-wrapper .loading-bottom img {
  width: 1.375rem;
  height: 1.25rem;
}

.game-wrapper .loading-bottom .loading-bottom-text {
  color: #6464fa;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 1.4625rem */
  letter-spacing: -0.01125rem;
}

/* 로딩 실패 페이지 */
.game-wrapper .fail-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.game-wrapper .fail-content .fail-character-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-wrapper .fail-content .fail-character {
  width: 6.875rem;
}

.game-wrapper .fail-content .fail-message-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}

.game-wrapper .fail-content .fail-title {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.02rem;
}

.game-wrapper .fail-content .fail-description {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.0125rem;
}

.game-wrapper .fail-content .retry-button {
  display: flex;
  width: 15rem;
  padding: 1.5rem 0.5rem;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.625rem;
  border: 1px solid #000;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%
    ),
    #6464fa;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 2px 2px 0 0 rgba(0, 0, 0, 0.25) inset;
  cursor: pointer;
}

.game-wrapper .fail-content .retry-button:active {
  opacity: 0.6;
}

.game-wrapper .fail-content .retry-button img {
  width: 1.25rem;
}

.game-wrapper .fail-content .retry-button span {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.0175rem;
}

/* common */
.game-wrapper .game-intro {
  padding: 0;
}

.game-wrapper .share-sns-list {
  display: flex;
  padding: 2.625rem 0 3.125rem 0;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.game-wrapper .share-sns-list .list-title {
  display: flex;
  align-items: center;
  margin: 0;
}

.game-wrapper .share-sns-list .list-title > span {
  color: #222;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.625rem;
  letter-spacing: -0.015rem;
}

.game-wrapper .share-sns-list .list-title .countBox {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.game-wrapper .share-sns-list .list-title .countBox .countImg {
  width: 1.375rem;
  height: 1.375rem;
  background: url(https://cdn.banggooso.com/assets/images/game284/common/share.png) no-repeat center / contain;
  padding-bottom: 0;
}

.game-wrapper .share-sns-list .list-title .countBox .countNumber {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.0125rem;
}

.game-wrapper .share-sns-list .list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
}

.game-wrapper .share-sns-list .list li {
  margin: 0;
}

.game-wrapper .share-sns-list .list .btn-share {
  width: 3.375rem;
  height: 3.375rem;
  background-color: #222;
  border-radius: 100%;
}

.game-wrapper .share-sns-list .list .btn-share.kakao {
  background-image: url(https://cdn.banggooso.com/assets/images/game279/share/kakao.png);
  background-size: 1.36125rem;
}

.game-wrapper .share-sns-list .list .btn-share.instagram {
  background-image: url(https://cdn.banggooso.com/assets/images/game279/share/instagram.png);
  background-size: 1.61081rem;
}

.game-wrapper .share-sns-list .list .btn-share.twitter {
  background-image: url(https://cdn.banggooso.com/assets/images/game279/share/twitter.png);
  background-size: 1.5525rem;
}

.game-wrapper .share-sns-list .list .btn-share.facebook {
  background-image: url(https://cdn.banggooso.com/assets/images/game279/share/facebook.png);
  background-size: 0.7425rem;
}

.game-wrapper .share-sns-list .list .btn-share.link-copy {
  background-image: url(https://cdn.banggooso.com/assets/images/game279/share/link.png);
  background-size: 1.591rem;
}

/* header */
.game-wrapper.basic .app-header {
  position: absolute;
  display: flex;
  width: 100%;
  height: 4.0625rem;
  padding: 0 0.5px;
  align-items: center;
  z-index: 999;
  border-bottom: 0;
  background-color: transparent !important;
}

.game-wrapper.basic .app-header .app-header-btn.back {
  width: 0.9rem;
  left: 1.5rem;
  background: url(https://cdn.banggooso.com/assets/images/game284/common/back.png) no-repeat center / contain;
}

.game-wrapper.basic .app-header .app-logo {
  width: 7.25rem;
  background: url(https://cdn.banggooso.com/assets/images/common/logo_2024.png) no-repeat center / contain;
}

/* intro */
.game-intro .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.0625rem 0 8.25rem;
  height: 100%;
}

.game-intro {
  height: auto;
  padding-bottom: 0rem;
  background: url(https://cdn.banggooso.com/assets/images/game284/common/bg.png) no-repeat center / 100% 100% !important;
}

.game-intro .intro-interact-box {
  width: 100%;
  height: 23.5rem;
  position: relative;
}

.game-intro .intro-interact-box img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.game-intro .start-button {
  border-radius: 0.625rem;
  border: 1px solid #000;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%
    ),
    #6464fa;
  display: flex;
  width: 19.875rem;
  height: 4.9375rem;
  padding: 1.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin: 1.5rem auto 2.5rem;
}

.game-intro .start-button:active {
  opacity: 0.6;
}

.game-intro .start-button p {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.035rem;
}

.game-intro .game-count {
  display: flex;
  width: 27.5rem;
  padding-bottom: 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0;
}

.game-intro .game-count .count-label {
  color: #222;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015rem;
}

.game-intro .game-count .count-label::before {
  content: none;
}

.game-intro .game-count .count-num {
  color: #222;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.0275rem;
}

.game-wrapper .game-intro .intro-line-box {
  padding: 0 1.5rem;
}

.game-wrapper .game-intro .intro-line {
  width: 100%;
}

/* 챗봇 페이지 스타일 */
.chat-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-top: 4.0625rem;
  position: relative;
  flex: 1;
}

/* 프로그레스 바 */
.progress-bar-container {
  position: absolute;
  left: 0;
  top: 4.0625rem;
  width: 100%;
  padding: 0.75rem 1.5rem 2rem;
  background: linear-gradient(180deg, #fff 10%, rgba(255, 255, 255, 0.5) 64%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.progress-bar {
  width: 100%;
  height: 0.25rem;
  border-radius: 0.625rem;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #8383fb;
  width: 0%;
  transition: width 0.3s ease;
}

/* 메시지 영역 */
.chat-messages {
  flex: 1;
  padding: 3.75rem 1.5rem 16rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.message-wrapper {
  display: flex;
  align-items: flex-start;
}

.message-wrapper.question {
  flex-direction: row;
}

.message-wrapper.user {
  flex-direction: row-reverse;
}

.message-content {
  max-width: 25rem;
  padding: 1rem 1.25rem;
  font-family: 'Pretendard';
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 140%;
  white-space: pre-line;
  border-radius: 1.25rem;
  word-break: break-word;
  border: 1px solid #000;
}

.message-wrapper.question .message-content {
  background: linear-gradient(180deg, #fff 80.87%, #d4d4d4 100%), #fff;
  border-bottom-left-radius: 0;
}

.message-wrapper.user .message-content {
  background: linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
  border-bottom-right-radius: 0;
}

/* 입력 영역 */
.chat-input {
  width: 100%;
  border-top: 1px solid #000;
  background: linear-gradient(
    180deg,
    rgba(179, 179, 179, 0.4) 0%,
    rgba(255, 255, 255, 0.4) 63.46%,
    rgba(255, 255, 255, 0.4) 77.4%,
    rgba(94, 94, 94, 0.4) 100%
  );
  padding: 1.25rem;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.input-container {
  display: flex;
  height: 4.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 3.625rem;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.message-input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015rem;
  border-radius: 0.1px;
}

.message-input::placeholder {
  opacity: 0.3;
}

.send-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 1rem 1.625rem;
  border-radius: 7rem;
  border: 1px solid #000;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%
    ),
    #6464fa;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 2px 2px 0 0 rgba(255, 255, 255, 0.7) inset,
    -2px -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.send-button.disabled {
  cursor: not-allowed;
  background: linear-gradient(0deg, #cecece 0%, #cecece 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 0) 100%),
    #6464fa;
  box-shadow: -2px -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.send-button img {
  width: 1.375rem;
  height: 1.625rem;
  flex-shrink: 0;
}

/* 선택지 버튼 */
.choice-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1.75rem;
  gap: 0.75rem;
}

.choice-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 0;
  border-radius: 2.375rem;
  border: 1px solid #000;
  background: linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
  cursor: pointer;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.choice-button:active {
  color: #fff;
  background: linear-gradient(0deg, #000 0%, #000 100%), linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
}

/* MBTI 버튼 */
.mbti-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1.75rem;
  gap: 1rem;
}

.mbti-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mbti-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.mbti-button {
  display: flex;
  align-items: center;
  padding: 1.25rem 0.5rem;
  justify-content: center;
  flex: 1;
  border-radius: 1rem;
  border: 1px solid #000;
  background: linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
  cursor: pointer;
  font-family: 'Pretendard';
  letter-spacing: -0.015rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  opacity: 1;
}

.mbti-button.selected {
  color: #fff;
  background: linear-gradient(0deg, #000 0%, #000 100%), linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
}

.mbti-button.disabled {
  opacity: 0.6;
}

.mbti-skip-button {
  position: fixed;
  bottom: 8.25rem;
  right: 1.25rem;
  padding: 0.625rem 1.25rem;
  border-radius: 3.75rem;
  background: #6464fa;
  opacity: 0.8;
  cursor: pointer;
  font-family: 'Pretendard';
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01375rem;
  text-align: center;
  z-index: 1000;
}

.generate-button-container {
  position: fixed;
  bottom: 9.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.generate-guide-text {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01375rem;
  opacity: 0;
  white-space: pre-line;
}

.generate-button-container.show-guide .generate-guide-text {
  opacity: 0.3;
}

.generate-result-button {
  width: 24.75rem;
  cursor: pointer;
  padding: 1.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 2.375rem;
  border: 1px solid #000;
  background: linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
}

.generate-result-button.disabled {
  background: linear-gradient(0deg, #cecece 0%, #cecece 100%), linear-gradient(180deg, #d1d1ff 80.87%, #a0a0ff 100%);
  box-shadow: -2px -2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.generate-result-button.disabled p {
  color: #000;
  opacity: 0.5;
}

.generate-result-button p {
  color: #6464fa;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015rem;
}

.generate-button-icon {
  width: 1.5625rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* 결과 페이지 */
.game-wrapper.basic .game-result {
  padding: 0;
}

.result-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: url(https://cdn.banggooso.com/assets/images/game284/result/result-bg.png) no-repeat center / 100% 100% !important;
}

/* 결과 고정 헤더 영역 */
.result-header-container {
  height: auto;
  width: 100%;
  padding: 4.0625rem 0 0 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 999;
}

.result-header-container .result-header-title-box {
  display: flex;
  width: 28.25rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 1.25rem 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  background: url(https://cdn.banggooso.com/assets/images/game284/result/header-deco.png) no-repeat center / contain !important;
}

.result-header-container .result-header-title-box p {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.0175rem;
}

.result-header-container .result-header-title-box span {
  color: #6464fa;
}

.result-header-container .header-img-box {
  width: 100%;
  height: 2rem;
}

.result-header-container .header-img-box img {
  width: 100%;
  height: 100%;
}

.result-content {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  height: 100%;
  padding: 0;
  background-color: #fff;
}

/* 캡쳐 영역 */
.result-content .capture-wrap {
  background-color: #fff;
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.result-content .img-object {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* 프로필 영역 */
.capture-wrap .profile-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3.75rem;
  padding: 2.5rem 1.5rem 0;
}

.capture-wrap .profile-box .idol-text {
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.0125rem;
  opacity: 0.5;
}

.capture-wrap .profile-box .profile-text {
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.02rem;
}

.capture-wrap .profile-box .profile-text span {
  color: #6464fa;
}

.capture-wrap .profile-box .ai-guide-box {
  gap: 0.25rem;
  display: flex;
  width: 26rem;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  background: rgba(100, 100, 250, 0.1);
}

.capture-wrap .profile-box .ai-guide-box img {
  width: 0.9375rem;
  height: 0.8125rem;
}

.capture-wrap .profile-box .ai-guide-box p {
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.0125rem;
}

.capture-wrap .profile-box .ai-guide-box span {
  font-weight: 700;
  color: #6464fa;
}

.capture-wrap .profile-box .info-table {
  margin-top: 1.25rem;
  border: 1px solid #6464fa;
  overflow: hidden;
  background: #fff;
}

.profile-box .info-table .info-row {
  display: flex;
  border-bottom: 1px solid #6464fa;
}

.profile-box .info-table .info-row:last-child {
  border-bottom: none;
}

.profile-box .info-table .info-label {
  flex: 0 0 30%;
  padding: 0.875rem 1.25rem;
  background: rgba(100, 100, 250, 0.1);
  color: #6464fa;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.0125rem;
  display: flex;
  align-items: center;
  border-right: 1px solid #6464fa;
}

.profile-box .info-table .info-value {
  flex: 1;
  padding: 0.875rem 1.25rem;
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.0125rem;
  display: flex;
  align-items: center;
}

/* 히스토리 영역 */
.capture-wrap .history-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1.5rem 2.5rem;
}

.capture-wrap .history-container .title-box {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.capture-wrap .history-container .title-box img {
  width: 1rem;
}

.capture-wrap .history-container .title-box p {
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015rem;
}

.capture-wrap .history-container .title-box span {
  color: #6464fa;
}

.capture-wrap .history-container .description-box {
  padding-top: 1.25rem;
}

.capture-wrap .history-container .description-box .sub-title {
  margin-bottom: 0.75rem;
  color: #333;
  font-family: 'Pretendard';
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.01125rem;
}

.capture-wrap .history-container .description-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.capture-wrap .history-container .positions .description-box ul li::before,
.capture-wrap .history-container .charm-points .description-box ul li::before {
  content: none;
}

.capture-wrap .history-container .description-box ul li {
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
  color: #333;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%; /* 1.5rem */
  letter-spacing: -0.0125rem;
}

.capture-wrap .history-container .description-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
  font-size: 1.25rem;
  line-height: 120%;
}

/* 댓글 영역 */
.capture-wrap .comment-container {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #eee;
  display: flex;
  padding: 2.5rem 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  align-self: stretch;
}

.capture-wrap .comment-container .comment-title {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.capture-wrap .comment-container .comment-title img {
  width: 1.5rem;
  height: 1.375rem;
}

.capture-wrap .comment-container .comment-title p {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015rem;
}

.capture-wrap .comment-container .comment-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

.capture-wrap .comment-container .comment-list .comment-box {
  display: flex;
  padding: 0.75rem 0.5rem 1rem 0.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}

.capture-wrap .comment-container .comment-list .comment-box .anonymity {
  color: #989898;
  font-family: 'Pretendard';
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%; /* 1.2rem */
  letter-spacing: -0.01rem;
}

.capture-wrap .comment-container .comment-list .comment-box .comment {
  color: #000;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 120%; /* 1.5rem */
  letter-spacing: -0.0125rem;
}

.result-content .download-text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.result-content .download-text-box p {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%; /* 1.875rem */
}

.result-content .download-text-box img {
  width: 0.625rem;
  height: 0.5rem;
  aspect-ratio: 5/4;
}

/* 공유 가이드 영역 */
.result-content .share-guide-box {
  width: 24.5625rem;
  margin: 3.44rem auto 0;
}

.result-content .share-guide-box img {
  width: 100%;
  height: 100%;
}

/* 푸터 영역 */
.result-content .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-content .footer .restart-btn {
  display: flex;
  width: 15rem;
  padding: 1.5rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.625rem;
  border: 1px solid #000;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.8) 80%,
      rgba(255, 255, 255, 0) 100%
    ),
    #6464fa;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 2px 2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.result-content .footer .restart-btn:active {
  opacity: 0.6;
}

.result-content .footer .restart-btn p {
  color: #000;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.0175rem;
}

.result-content .footer .restart-btn img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.result-content .footer .content-more-wrap {
  display: flex;
  padding-top: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.1875rem;
  align-self: stretch;
  margin-top: 6.25rem;
  background: #222;
}

.result-content .footer .content-more-wrap .contents-more {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: unset;
  border-radius: unset;
  margin: 0;
}

.result-content .footer .content-more-wrap .contents-more .contents-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.33331rem;
  margin: 0;
  padding: 0 2rem;
}

.result-content .footer .content-more-wrap .contents-more .contents-main .contents-logo {
  width: 8.75rem;
  height: 1.875rem;
  background: url(https://cdn.banggooso.com/assets/images/game279/common/logo_w.png) no-repeat center / cover;
}

.result-content .footer .content-more-wrap .contents-more .contents-main .contents-logo img {
  display: none;
}

.result-content .footer .content-more-wrap .contents-more .contents-main .sub-text {
  color: #fff;
  font-family: 'Pretendard';
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.16669rem;
  letter-spacing: -0.06rem;
  margin: 0;
}

.result-content .footer .content-more-wrap .contents-more .contents-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: unset;
  margin: 0;
  padding: 0;
  flex-basis: unset;
}

.result-content .footer .content-more-wrap .contents-more .contents-list .game-btn {
  display: flex;
  width: 31.25rem;
  padding: 1.66669rem 2rem;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  background-color: unset;
  border-radius: unset;
  margin: 0;
  border: unset;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.result-content .footer .content-more-wrap .contents-more .contents-list .game-btn::before {
  width: 2rem;
  height: 2rem;
  right: 2rem;
  left: unset;
  background: url(https://cdn.banggooso.com/assets/images/game279/common/arrow_right_g.png) no-repeat center / cover;
}

.result-content .footer .content-more-wrap .contents-more .contents-list .game-btn a {
  color: #fff;
  font-family: 'Pretendard';
  font-size: 1.375rem;
  font-weight: 500;
}

.result-content .footer .content-more-wrap .recommend-list.page-full {
  margin: 0;
  width: 100%;
}

.result-content .footer .content-more-wrap .recommend-list .inner .title {
  color: #fff;
  font-family: 'Pretendard';
  font-size: 1.50013rem;
  font-weight: 600;
  letter-spacing: -0.033rem;
  padding: 0;
  margin: 0;
  padding-left: 1.46rem;
  margin-bottom: 0.48rem;
}

.result-content .footer .content-more-wrap .recommend-list .swiper-container {
  padding: 0 0 3.25rem 2.15rem;
}

.result-content .footer .content-more-wrap .recommend-list .swiper-slide {
  width: 10.83406rem;
  height: 13.33425rem;
}

.result-content .footer .content-more-wrap .recommend-list .slide-box .img-box {
  height: 10.83406rem;
}

.result-content .footer .content-more-wrap .recommend-list .slide-box .slide-text {
  color: #222;
  font-family: 'Pretendard';
  font-size: 1.00006rem;
  font-weight: 500;
  letter-spacing: -0.022rem;
}

.result-content .footer .content-more-wrap .recommend-list .btn-wrap {
  padding-bottom: 4.01rem;
}

.result-content .footer .content-more-wrap .recommend-list .btn-wrap .btn-white-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15.25106rem;
  height: 4.00025rem;
  color: #2b2b2b;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 1.25006rem;
  font-weight: 700;
  letter-spacing: -0.0275rem;
}

/* 인트로 제한 모달 */
.intro-limit-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.intro-limit-modal-wrap.show {
  display: block;
}

.intro-limit-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.intro-limit-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  width: 25rem;
  padding: 0.375rem;
  gap: 0.25rem;
  border-radius: 0.25rem;
  border: 2px solid #000;
  background: linear-gradient(
      180deg,
      rgba(100, 100, 250, 0.4) 0%,
      rgba(255, 255, 255, 0.4) 22.6%,
      rgba(255, 255, 255, 0.4) 36.54%,
      rgba(149, 149, 255, 0.4) 100%
    ),
    #fff;
}

.intro-limit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-limit-modal-header .header-left {
  padding: 0 0.5rem;
  gap: 0.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-hand {
  width: 1.25rem;
  height: 1.25rem;
}

.wait-text {
  width: 2.5625rem;
}

.intro-limit-modal-title {
  font-family: 'Pretendard';
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
}

.intro-limit-modal-body {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1rem 2.25rem 1rem;
  gap: 0.69rem;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border: 2px solid #000;
  background: linear-gradient(180deg, #fff 95.77%, #d4d4d4 100%);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.intro-limit-modal-body .character {
  width: 3.75rem;
  height: 3.5rem;
}

.intro-limit-modal-body .alert-text {
  width: 100%;
}

.intro-limit-modal-close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}

.intro-limit-modal-close img {
  width: 100%;
  height: 100%;
}

.intro-limit-modal-close:hover {
  background: #6b6be0;
}

.intro-limit-modal-close:active {
  transform: translateY(2px);
}
