@charset "UTF-8";

/* S: 바운스 버튼 */
button.scroll-down {
    z-index: 9999;
    position: fixed;
    bottom: 80px;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    visibility: visible;
    transition: opacity 0.5s, transform 0.5s; /* transform 추가 */
    opacity: 0; /* 기본적으로는 숨김 */
    pointer-events: none; /* 숨겨졌을 때 클릭 방지 */
}
.scroll-down.show {
  opacity: 1;
  pointer-events: auto;
  animation: bounce 1.5s infinite;
}
.scroll-down.upside-down {
    left: auto;
    right: 0px;
    transform: translateX(-50%) rotate(180deg);
    animation: bounce-upside 1.5s infinite;
}

/* 1. 기본 바운스 (아래 방향) */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* 2. 뒤집힌 바운스 (위 방향 + 180도 회전 상태 유지) */
@keyframes bounce-upside {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(180deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(180deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(180deg) translateY(-5px);
  }
}

@media (max-width: 430.98px) {
    button.scroll-down {
        bottom: 73px;
        width: 30px;
        height: 30px;
    }
}

button.scroll-down::before {
    content: "";
    background: url(../img/about/bt_arw_down.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button.scroll-down::before:active {
    box-shadow: 5px 5px 3px var(--yellow3);
}
/* E: 바운스 버튼 */

.screen-0.reserv .header .user {
    gap: 5px;
}

.screen-0.reserv .section-1 {
    background-color: #000;
}

.screen-0.reserv .main-content {
    width: 100%;
    max-width: 750px;
    height: auto;
    transform: translate(-50%, -55%);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .main-content {
        transform: translate(-50%, -60%);
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .main-content {
        transform: translate(-50%, -65%);
        top: 52vh;
        top: 58svh;
    }
}

.screen-0.reserv .bg-wrap {
    position: absolute;
    top: 0;
    isolation: isolate;
}

.screen-0.reserv .bg-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 20, 0.60);
  z-index: 1;
  pointer-events: none;
}
.screen-0.reserv .bg-wrap.new::after {
    background: rgba(4, 9, 20, 0.40);
}

.screen-0.reserv .bg-wrap .bg-group {
    position: absolute;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.screen-0.reserv .bg-wrap .bg-group img {
    width: 100%;
    object-fit: cover;
}

.screen-0.reserv .bg-wrap video.bg {
    position: relative;
    z-index: -1;
}

.screen-0.reserv button.link-home {
    position: absolute;
    right: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--font-default);
    width: max-content;
    padding: 9px 10px 9px 14px;
    text-align: left;
    border-radius: 6px;
    border: 1px solid rgba(255, 239, 185, 0.50);
    background: rgba(4, 9, 20, 0.60);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .user-profile {
        position: absolute;
        right: 10px;
        width: 80px;
    }
    .screen-0.reserv .user-profile .change-lang {
        position: absolute;
        right: 0;
    }
    .screen-0.reserv  button.link-home {
        position: absolute;
        left: 0;
    }
}

@media (max-width: 430.98px) {
    .screen-0.reserv  button.link-home {
        gap: 0;
        font-size: 0;
        width: 50px;
        padding: 10px;
    }
}

.screen-0.reserv  button.link-home:hover,
.screen-0.reserv  button.link-home:active {
    color: var(--yellow2);
    border: 1px solid rgba(255, 203, 33, 0.5);
    background: rgba(4, 9, 20, 1);
}

.screen-0.reserv button.link-home .icon-link {
    width: 14px;
    height: 16px;
    aspect-ratio: 1/1;
    background: url(../img/reserv/link.svg) no-repeat;
    background-size: contain;
}
@media (max-width: 430.98px) {
    .screen-0.reserv button.link-home .icon-link {
        width: 16px;
        background: url(../img/reserv/icon_home.svg) no-repeat;
        background-size: contain;
    }
}
.screen-0.reserv button.link-home:hover .icon-link,
.screen-0.reserv button.link-home:active .icon-link {
    background: url(../img/reserv/link_on.svg) no-repeat;
    background-size: contain;
}
@media (max-width: 430.98px) {
    .screen-0.reserv button.link-home:hover .icon-link,
    .screen-0.reserv button.link-home:active .icon-link {
        background: url(../img/reserv/icon_home_on.svg) no-repeat;
        background-size: contain;
    }
}

.screen-0.reserv .logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo {
        gap: 0;
    }
}

.screen-0.reserv .logo h1 {
    width: 100%;
    max-width: none;
    font-family: "DungeonFighterOnlineBeatBeat", "Work Sans", Helvetica;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 0.95;
    background: var(--gradiant-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.4));
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo h1 {
        font-size: 3rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo h1 {
        font-size: 1.8rem;
    }
}
.screen-0.reserv .rewards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-width: 170px;
    margin: 20px 0;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .rewards {
        margin: 0;
    }
}

.screen-0.reserv .rewards .box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid var(--default);
    font-size: 1rem;
    color: var(--default);
    background-color: rgba(0, 0, 0, 0.60);
}
.screen-0.reserv .rewards .num-main {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--yellow);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    border: 1px solid var(--yellow);
    background-color: rgba(0, 0, 0, 0.30);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .rewards .num-main {
        bottom: -5px;
    }
}

.screen-0.reserv .logo .frame {
    width: 100%;
    height: auto;
    gap: 10px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo .frame {
        padding: 0 20px;
        gap: 20px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo .frame {
        gap: 10px;
    }
}

.screen-0.reserv .logo .view-2 {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: auto;
}
.screen-0.reserv .logo .view-2:first-child {
    width: 80%;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo .view-2:first-child {
        position: relative;
        top: 1vh;
        width: 85%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo .view-2:first-child {
        height: 45px;
    }
}

.screen-0.reserv .logo .view-2 .line {
    position: relative;
    top: auto;
    bottom: 9px;
    width: 30%;
    height: 2px;
    background-color: var(--font-default);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo .view-2 .line {
        left: auto;
        bottom: 10px;
        width: 15%;
        height: 1px;
        transform: none;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo .view-2 .line {
        bottom: 11px;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .logo .view-2 .line {
        bottom: 9px;
        width: 25%;
    }
}
@media (max-width: 320.98px) {
    .screen-0.reserv .logo .view-2 .line {
        bottom: 7px;
        width: 30%;
    }
}

.screen-0.reserv .logo .frame .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 40%;
    text-align: center;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo .frame .column {
        width: 220px;
    }
}

.screen-0.reserv .logo .frame .column h3 {
    font-size: 1.5625rem;
    font-family: "DungeonFighterOnlineBeatBeat", "Pretendard", "Work Sans", Helvetica;
    color: var(--font-default);
}
@media (max-width: 390.98px) {
    .screen-0.reserv .logo .frame .column h3 {
        font-size: 1.25rem;
    }
}
@media (max-width: 320.98px) {
    .screen-0.reserv .logo .frame .column h3 {
        font-size: 1rem;
    }
}

.screen-0.reserv .logo .frame .rectangle {
    position: relative;
    top: auto;
    left: auto;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .logo .frame .rectangle {
        transform: none;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .logo .frame .rectangle {
        transform: none;
        width: 48px;
        height: 48px;
    }
}

.screen-0.reserv .dungeon-cross {
    width: 100%;
    max-width: 530px;
    object-fit: contain;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .dungeon-cross {
        width: 80%;
        max-width: 400px;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .dungeon-cross {
        width: 80%;
    }
}

.screen-0.reserv .logo {
    width: 100%;
}

.screen-0.reserv .logo .btn-SNS {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3vh;
}
@media (max-width: 360.98px) {
    .screen-0.reserv .logo .btn-SNS {
        margin-top: 1vh;
    }
}

.screen-0.reserv .logo .btn-SNS button {
    width: 33.3333%;
}
@media (max-width: 390.98px) {
    .screen-0.reserv .logo .btn-SNS button {
        width: 40%;
    }
}

.screen-0.reserv .logo .btn-SNS button img {
    width: 100%;
    object-fit: contain;
}
.screen-0.reserv .logo .btn-SNS button:hover img,
.screen-0.reserv .logo .btn-SNS button:active img {
  filter: brightness(1.8);
}

.screen-0.reserv .bottom-menu {
    z-index: 11;
    /* position: absolute; */
    position:fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 239, 185, 0.50);
    background: linear-gradient(180deg, rgba(255, 239, 185, 0.12) 0%, rgba(0, 0, 0, 0.00) 100%), rgba(0, 0, 0, 0.80);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .bottom-menu {
        padding: 0 10px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .bottom-menu {
        padding: 0;
    }
}

.screen-0.reserv .bottom-menu.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.screen-0.reserv .bottom-menu .navi {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.screen-0.reserv .bottom-menu .button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 25%;
    margin-top: -1px;
    margin-bottom: -1px;
    border-right-width: 1px;
    border-right-style: solid;
    border-color: #ffefb933;
    opacity: 1;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .bottom-menu .button {
        padding: 0 3px;
    }
}

.screen-0.reserv .bottom-menu .button:last-child {
    border: 0;
}

.screen-0.reserv .bottom-menu .button .event .type {
    color: rgba(255, 249, 230, 0.5);
}

.screen-0.reserv .bottom-menu .button .event .text {
    color: rgba(255, 249, 230, 0.5);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .bottom-menu .button .event .text {
        display: none;
    }
}

.screen-0.reserv .bottom-menu .event {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    height: 36px;
    margin-top: -0.5px;
    font-weight: 400;
    font-size: .9375rem;
    text-align: center;
    letter-spacing: -0.2px;
    line-height: 1.2;
    color: var(--font-default);
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .bottom-menu .event {
        font-size: .8125rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .bottom-menu .event {
        font-size: .75rem;
    }
}

.screen-0.reserv .bottom-menu .button:hover .event,
.screen-0.reserv .bottom-menu .button:active .event {
    transform: scale(1.05);
}

.screen-0.reserv .bottom-menu .button.on .event .type,
.screen-0.reserv .bottom-menu .button:hover .event .type,
.screen-0.reserv .bottom-menu .button:active .event .type {
    color: var(--font-default);
}
.screen-0.reserv .bottom-menu .button.on .event .text,
.screen-0.reserv .bottom-menu .button:hover .event .text,
.screen-0.reserv .bottom-menu .button:active .event .text {
    color: var(--yellow);
}

.screen-0.reserv .bottom-menu .type {
  font-weight: 600;
  letter-spacing: -0.03px;
}

.screen-0.reserv .bottom-menu .text {
  font-weight: 500;
  letter-spacing: -0.03px;
}

.screen-0.reserv .coin {
    z-index: 2;
    position: absolute;
    top: 25%;
    left: 72%;
    width: 10%;
    transform: translateX(0%);
    transition: all 0.3s ease-in-out;
    animation: coinMoving 10s ease-in-out 0s infinite alternate;
}
@media (min-width: 1920.98px) {
    .screen-0.reserv .coin {
        left: 74%;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .coin {
        left: 81%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .coin {
        top: 30%;
        left: 87%;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .coin {
        top: 24%;
        left: 76%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .coin {
        top: 24vh;
        top: 15svh;
        left: 85%;
    }
}
.screen-0.reserv .coin img {
    object-fit: cover;
}
.screen-0.reserv .coin.two {
    z-index: 3;
    top: 430px;
    left: 66%;
    /* width: 220px; */
    width: 30%;
    animation: coinMoving 5s ease-in-out 0s infinite alternate;
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .coin.two {
        top: 420px;
        left: 72%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .coin.two {
        top: 390px;
        left: 77%;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .coin.two {
        top: 54vh;
        top: 57svh;
        left: 76%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .coin.two {
        top: 54vh;
        top: 65svh;
        left: 76%;
    }
}

.screen-0.reserv .coin.three {
    width: 150px;
    top: 300px;
    left: 25%;
    animation: coinMoving 12s ease-in-out -2s infinite alternate;
}
@media (min-width: 1920.98px) {
    .screen-0.reserv .coin.three {
        top: 340px;
        left: 30%;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .coin.three {
        top: 160px;
        left: 19%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .coin.three {
        top: 200px;
        left: 8%;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .coin.three {
        top: 30vh;
        top: 29svh;
        left: -5%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .coin.three {
        top: 21vh;
        top: 24svh;
        left: -20%;
    }
}

.screen-0.reserv .coin.four {
    width: 170px;
    top: 270px;
    left: 10%;
    animation: coinMoving 9s ease-in-out -4s infinite alternate;
}
@media (min-width: 1920.98px) {
    .screen-0.reserv .coin.four {
        top: 430px;
        left: 21%;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .coin.four {
        top: 290px;
        left: 6%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .coin.four {
        top: 350px;
        left: 3%;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .coin.four {
        top: 430px;
        left: -6%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .coin.four {
        left: -20%;
    }
}

@keyframes coinMoving {
    0% {
        transform: translate(10px, 10px); /* 오른쪽 위로 살짝 이동, 약간 커짐 */
        /* transform: translate(10px, 10px) scale(1.05); */
        opacity: 1;
    }
    50% {
        transform: translate(0, 0) scale(1); /* 아래로 이동, 원래 크기 */
        opacity: 1;
    }
    100% {
        transform: translate(-10px, 10px) scale(0.95); /* 왼쪽으로 이동, 약간 작아짐 */
        opacity: 0.9;
    }
}
.screen-0.reserv .cha-group {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
}

.screen-0.reserv .cha {
    z-index: 2;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(10%);
    width: 800px;
    transition: all 0.3s ease-in-out;
    animation: none;
}
@media (min-width: 1920.98px) {
    .screen-0.reserv .cha {
        width: 1000px;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .cha {
        transform: translateX(5%);
    }
}
@media (max-width: 1024.98px) {
    .screen-0.reserv .cha {
        transform: translateX(5%);
    }
    .screen-0.reserv .cha.more {
        transform: translateX(-5%);
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha {
        transform: translateX(-9%);
    }
    .screen-0.reserv .cha.more {
        transform: translateX(-17%);
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .cha {
        transform: translateX(-18%);
    }
    .screen-0.reserv .cha.more {
        transform: translateX(-25%);
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .cha {
        top: 7vh;
        top: 7svh;
        transform: translateX(-24%);
    }
    .screen-0.reserv .cha.more {
        transform: translateX(-30%);
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .cha.more {
        top: 3vh;
        top: 3svh;
    }
}
@keyframes chaMoving {
    0% {
        transform: translate(0, 0) scale(1); /* X, Y, 크기 */
        opacity: 0.9;
    }
    25% {
        transform: translate(4px, -4px) scale(1.02); /* 오른쪽 위로 살짝 이동, 약간 커짐 */
        opacity: 1;
    }
    50% {
        transform: translate(0, 2px) scale(1); /* 아래로 이동, 원래 크기 */
        opacity: 0.95;
    }
    75% {
        transform: translate(-2px, 2px) scale(0.98); /* 왼쪽으로 이동, 약간 작아짐 */
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) scale(1); /* 원래 위치와 크기 */
        opacity: 0.9;
    }
}

.screen-0.reserv .cha.two {
    z-index: 3;
    top: 14%;
    left: 50%;
    transform: translateX(-110%);
    width: 700px;
    animation: none;
    filter:brightness(0.75);
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out 0.3s;
}
.screen-0.reserv .cha.two.more {
    transform: translateX(-116%);
}
@media (min-width: 1920.98px) {
    .screen-0.reserv .cha.two {
        top: 12%;
        width: 1000px;
        transform: translateX(-100%);
    }
    .screen-0.reserv .cha.two.more {
        transform: translateX(-110%);
    }
}
@media (max-width: 1748px) {
    .screen-0.reserv .cha.two {
        transform: translateX(-105%);
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .cha.two {
        transform: translateX(-99%);
    }
    .screen-0.reserv .cha.two.more {
        transform: translateX(-110%);
    }
}
@media (max-width: 1024.98px) {
    .screen-0.reserv .cha.two {
        transform: translateX(-90%);
    }
    .screen-0.reserv .cha.two.more {
        transform: translateX(-100%);
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.two {
        display: none;
    }
}

@keyframes chaMoving2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translate(4px, -4px) scale(1.02);
        opacity: 1;
    }
    50% {
        transform: translate(0, 2px) scale(1);
        opacity: 0.95;
    }
    75% {
        transform: translate(-2px, 2px) scale(0.98);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
}
.screen-0.reserv .cha.three {
    z-index: 4;
    top: 21%;
    left: 46%;
    width: 1000px;
    animation: chaMoving3 8s ease-in-out -2s infinite alternate;
    transition: left 0.3s ease-in-out;
}
@media (max-width: 1748px) {
    .screen-0.reserv .cha.three {
        left: 42%;
    }
}
@media (max-width: 1484.98px) {
    .screen-0.reserv .cha.three {
        left: 39%;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .cha.three {
        left: 32%;
    }
}
@media (max-width: 998.98px) {
    .screen-0.reserv .cha.three {
        left: 25%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.three {
        top: 18vh;
        top: 18svh;
        left: 27%;
        width: 750px;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .cha.three {
        top: 18vh;
        top: 18svh;
        left: 10%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .cha.three {
        top: 12vh;
        top: 12svh;
        left: -2%;
        width: 700px;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .cha.three {
        left: -7%;
    }
}
@media (max-width: 320.98px) {
    .screen-0.reserv .cha.three {
        left: -25%;
    }
}
@keyframes chaMoving3 {
    0% {
        transform: translate(0, 0) scale(1); /* X, Y, 크기 */
        opacity: 0.9;
    }
    25% {
        transform: translate(4px, -4px) scale(1.02); /* 오른쪽 위로 살짝 이동, 약간 커짐 */
        opacity: 1;
    }
    50% {
        transform: translate(0, 2px) scale(1); /* 아래로 이동, 원래 크기 */
        opacity: 0.95;
    }
    75% {
        transform: translate(-2px, 2px) scale(0.98); /* 왼쪽으로 이동, 약간 작아짐 */
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) scale(1); /* 원래 위치와 크기 */
        opacity: 0.9;
    }
}
.screen-0.reserv .cha.four {
    z-index: 4;
    top: 17%;
    left: -4%;
    width: 950px;
    animation: chaMoving2 10s ease-in-out -2s infinite alternate;
    transition: left 0.3s ease-in-out;
    transform: scaleX(-1);
}
@media (max-width: 1484.98px) {
    .screen-0.reserv .cha.four {
        left: -9%;
    }
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .cha.four {
        left: -20%;
    }
}
@media (max-width: 998.98px) {
    .screen-0.reserv .cha.four {
        left: -35%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.four {
        display: none;
    }
}

.screen-0.reserv .cha.five {
    z-index: 3;
    top: 13%;
    left: 57%;
    width: 420px;
    animation: chaMoving2 12s ease-in-out -2s infinite alternate;
    transition: left 0.3s ease-in-out;
    opacity: 0.6;
}
@media (max-width: 1484.98px) {
    .screen-0.reserv .cha.five {
        left: 52%;
    }
}
@media (max-width: 998.98px) {
    .screen-0.reserv .cha.five {
        left: 47%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.five {
        display: none;
    }
}

.screen-0.reserv .cha.six {
    z-index: 3;
    top: 13%;
    left: 16%;
    width: 540px;
    animation: chaMoving 14s ease-in-out -2s infinite alternate;
    transition: left 0.3s ease-in-out;
    opacity: 0.6;
}
@media (max-width: 1180.98px) {
    .screen-0.reserv .cha.six {
        left: 10%;
    }
}
@media (max-width: 998.98px) {
    .screen-0.reserv .cha.six {
        left: 2%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.six {
        top: 27vh;
        top: 27svh;
        left: -22%;
        width: 540px;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .cha.six {
        top: 27vh;
        top: 27svh;
        left: -61%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .cha.six {
        top: 25vh;
        top: 25svh;
        left: -60%;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .cha.six {
        top: 23vh;
        top: 23svh;
        left: -64%;
    }
}
@media (max-width: 360.98px) {
    .screen-0.reserv .cha.six {
        left: -79%;
    }
}

.screen-0.reserv .cha.seven {
    z-index: 3;
    top: 10%;
    left: 68%;
    width: 440px;
    animation: chaMoving 15s ease-in-out -2s infinite alternate;
    transition: left 0.3s ease-in-out;
    opacity: 0.6;
}
@media (max-width: 1484.98px) {
    .screen-0.reserv .cha.seven {
        left: 65%;
    }
}
@media (max-width: 998.98px) {
    .screen-0.reserv .cha.seven {
        left: 61%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .cha.seven {
        top: 11vh;
        left: 0%;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .cha.seven {
        top: 11vh;
        left: -11%;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .cha.seven {
        top: 13vh;
        top: 13svh;
        left: -20%;
        width: 400px;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .cha.seven {
        left: -16%;
        width: 300px;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .cha.seven {
        left: -24%;
    }
}

.screen-0.reserv .cha img {
    width: 100%;
}

.screen-0.reserv .ctt {
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt {
        top: 20vh;
        top: 20svh;
        transform: translateX(-50%);
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt {
        gap: 0;
        top: 12vh;
        top: 12svh;
    }
}

.screen-0.reserv .ctt .ctt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.screen-0.reserv .ctt .ctt-wrap .num {
    color: var(--yellow);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.312px;
    text-transform: uppercase;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .ctt-wrap .num {
        font-size: 1.125rem;
    }
}

.screen-0.reserv .ctt .ctt-wrap h1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    word-break: keep-all;
    text-align: center;
    font-family: "WAGURI", "Pretendard";
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -1px;
    color: var(--font-default);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.60);
    gap: 5px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt .ctt-wrap h1 {
        font-size: 2.25rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .ctt-wrap h1 {
        font-size: 1.875rem;
    }
}
.screen-0.reserv .ctt .ctt-wrap .text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.312px;
    color: var(--font-default);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.60);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt .ctt-wrap .text {
        font-size: 1.125rem;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 1);
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .ctt .ctt-wrap .text {
        font-size: 1rem;
    }
}

.screen-0.reserv .ctt .ctt-wrap .date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 550px;
    margin-top: 10px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt .ctt-wrap .date {
        margin-top: 0;
    }
}

.screen-0.reserv .ctt .ctt-wrap .date .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 249, 230, 0.30);
}

.screen-0.reserv .ctt .ctt-wrap .date p {
    width: 100%;
    text-align: center;
    white-space: wrap;
    color: var(--font-default);
    font-weight: 500;
    font-size: 1.25rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .ctt-wrap .date p {
        font-size: .875rem;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 1);
    }
}

.screen-0.reserv .ctt .ctt-wrap button.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 49px;
    text-align: center;
    color: var(--darkgray);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    background: url(../img/reserv/bt_goHomepage.png) no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .ctt-wrap button.btn {
        height: 40px;
        font-size: .875rem;
    }
}
.screen-0.reserv .ctt .ctt-wrap button.btn:hover,
.screen-0.reserv .ctt .ctt-wrap button.btn:active {
    transform: translateY(-3px);
}

.screen-0.reserv .ctt .rewards {
    display: flex;
    flex-direction: column;
    /* background: url(../img/reserv/bg_itemBox2.png) no-repeat; */
    background-size: contain;
    background-position: 50% 50%;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt .rewards {
        margin: 20px 0;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .rewards {
        margin: 10px 0;
    }
}

.screen-0.reserv .ctt .rewards .box {
    top: 0%;
}

.screen-0.reserv .ctt .rewards .num {
    position: relative;
    top: -1.5vh;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--yellow);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 1.25rem;
    text-shadow: none;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .ctt .rewards .box {
        font-size: .875rem;
    }
    .screen-0.reserv .ctt .rewards .num {
        font-size: 1rem;
    }
}

.screen-0.reserv .ctt .rewards .table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.screen-0.reserv .ctt .rewards .table .tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    width: 100%;
}

.screen-0.reserv .ctt .rewards .table .td {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 7px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.60);
}

.screen-0.reserv .ctt .rewards .table .td .subj {
    width: 100%;
    padding: 5px 3px 8px;
    background: url(../img/reserv/bar_s.png) no-repeat;
    background-position: center bottom;
    background-size: contain;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .rewards .table .td .subj {
        font-size: .875rem;
    }
}

.screen-0.reserv .ctt .rewards .table .td .contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 8px;
}

.screen-0.reserv .ctt .rewards .cross {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    background: url(../img/reserv/item_cross3.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.screen-0.reserv .ctt .rewards .table .td p {
    color: var(--cross);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .rewards .table .td p {
        font-size: .875rem;
    }
}

.screen-0.reserv .ctt .rewards .other {
    border-radius: 7px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .ctt .rewards .other {
        font-size: .675rem;
    }
}

.screen-0.reserv .section-3 {
    overflow: visible;
}

.screen-0.reserv .section-3 .bg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.screen-0.reserv .section-3 .bg img {
    object-fit: cover;
}

.screen-0.reserv .section-3 .ctt {
    gap: 30px;
    max-width: none;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-3 .ctt {
        gap: 15px;
    }
}

.screen-0.reserv .section-3 .ctt .ctt-wrap .num {
    color: var(--font-default);
}

.screen-0.reserv .section-3 .ctt .ctt-wrap h1 {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(150deg, #EBBE51 17.45%, #FFEAB7 50.92%, #EBBE51 84.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.screen-0.reserv .scroll {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1300px;
    min-width: 0;
    padding-bottom: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-mask-image: linear-gradient(to right, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
.screen-0.reserv .scroll.day-7 {
    margin-top: 30px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .scroll.day-7 {
        margin-top: 10px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .scroll.day-7 {
        margin-top: 0px;
    }
}

.screen-0.reserv .scroll::-webkit-scrollbar {
    height: 5px;
}

.screen-0.reserv .scroll::-webkit-scrollbar-track {
  background: transparent;
}

.reward-wrap {
    position: relative;
    width: 1265px;
    height: auto;
    overflow: visible;
}

.screen-0.reserv .progress {
    z-index: 4;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(118deg, #EBBE51 28.14%, #FFEAB7 50%, #EBBE51 71.86%);
}

.reward-wrap .bg-gradi {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 1300px;
    height: 39vh;
    height: 39svh;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: transparent;
    border-image: linear-gradient(
        172deg,
        rgba(235, 190, 81, 1) 0%,
        rgba(255, 234, 183, 1) 50%,
        rgba(235, 190, 81, 1) 100%
        ) 1;
    background: radial-gradient(85.95% 85.95% at 50% 8.97%, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
}
@media (max-width: 768.98px) {
    .reward-wrap .bg-gradi {
        width: 1020px;
    }
}

.reward-wrap .list {
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    width: auto;
    height: auto;
}
@media (max-width: 768.98px) {
    .reward-wrap .list {
        grid-template-columns: repeat(6, 160px);
    }
}
.reward-wrap .list.day-7 {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.reward-wrap .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 10px;
    position: relative;
    width: 100%;
    padding: 11px 0 0;
}
@media (max-width: 768.98px) {
    .reward-wrap .item {
        gap: 3px;
        padding: 10px 0 0;
    }
}
@media (max-width: 430.98px) {
    .reward-wrap .item {
        gap: 5px;
        padding: 12px 0 0;
    }
}

.reward-wrap .item .dia-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.reward-wrap .item .dia-wrap .img {
    width: 15px;
    height: 44px;
    background: url(../img/reserv/icon_dia.svg) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.reward-wrap .item.on .dia-wrap .img,
.reward-wrap .item .dia-wrap.on .img {
    background: url(../img/reserv/icon_dia_on.svg) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
@media (max-width: 768.98px) {
    .reward-wrap .item .dia-wrap .img {
        width: 11px;
        height: 32px;
    }
}

.reward-wrap .item .item-bg {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 29px 3px 15px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    background: url(../img/reserv/bg_list.png?v=2) no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
@media (max-width: 768.98px) {
    .reward-wrap .item .item-bg {
        padding: 18px 3px 22px;
    }
}
@media (max-width: 430.98px) {
    .reward-wrap .item .item-bg {
        padding: 18px 3px 24px;
    }
}

.reward-wrap .item .item-bg.simple {
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid #EBBE51;
    background: rgba(0, 0, 0, 0.70) url(../img/event/bg_item.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.reward-wrap .item.on .item-bg {
    background: url(../img/reserv/bg_list_on.png?v=2) no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}
@media (max-width: 768.98px) {
    .reward-wrap .item.on .item-bg {
        background-position: center top;
    }
}

.reward-wrap .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  padding: 13px 7px;
  background: linear-gradient(360deg, rgba(255, 191, 88, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 768.98px) {
    .reward-wrap .title {
          padding: 8px 3px;
    }
}

.reward-wrap .text-wrapper {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: var(--font-default);
    letter-spacing: -0.31px;
    white-space: wrap;
    overflow: hidden;
}
@media (max-width: 768.98px) {
    .reward-wrap .text-wrapper {
        font-size: .875rem;
    }
}

.reward-wrap .group {
  position: relative;
  width: 100%;
  height: 100%;
}

.reward-wrap .group .reward-image {
    position: relative;
    display: flex;
    width: 200px;
    height: 193px;
    background: url(../img/reserv/reward1.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 768.98px) {
    .reward-wrap .group .reward-image {
        width: 100%;
        height: 144px;
    }
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image {
        background-position: 50% 20%;
    }
}
.reward-wrap .item .item-bg.simple .reward-image {
    width: 170px;
    height: 173px;
    background: url(../img/event/1day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
@media (max-width: 768.98px) {
    .reward-wrap .item .item-bg.simple .reward-image {
        width: 130px;
        height: 144px;
    }
}
.reward-wrap .item .item-bg.simple .reward-image.two {
    background: url(../img/event/2day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
.reward-wrap .item .item-bg.simple .reward-image.three {
    background: url(../img/event/3day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
.reward-wrap .item .item-bg.simple .reward-image.four {
    background: url(../img/event/4day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
.reward-wrap .item .item-bg.simple .reward-image.five {
    background: url(../img/event/5day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
.reward-wrap .item .item-bg.simple .reward-image.six {
    background: url(../img/event/6day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}
.reward-wrap .item .item-bg.simple .reward-image.seven {
    background: url(../img/event/7day_item.png) no-repeat;
    background-size: contain;
    background-position: 50% 40%;
}

.reward-wrap .item.on .group .reward-image {
    background: url(../img/reserv/reward1_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .item.on .group .reward-image {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image.two {
    background: url(../img/reserv/reward2.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}

.reward-wrap .item.on .group .reward-image.two {
    background: url(../img/reserv/reward2_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image.two {
        background-position: 50% 20%;
    }
    .reward-wrap .item.on .group .reward-image.two {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image.three {
    background: url(../img/reserv/reward3.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}

.reward-wrap .item.on .group .reward-image.three {
    background: url(../img/reserv/reward3_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image.three {
        background-position: 50% 20%;
    }
    .reward-wrap .item.on .group .reward-image.three {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image.four {
    background: url(../img/reserv/reward4.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}

.reward-wrap .item.on .group .reward-image.four {
    background: url(../img/reserv/reward4_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image.four {
        background-position: 50% 20%;
    }
    .reward-wrap .item.on .group .reward-image.four {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image.five {
    background: url(../img/reserv/reward5.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}

.reward-wrap .item.on .group .reward-image.five {
    background: url(../img/reserv/reward5_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image.five {
        background-position: 50% 20%;
    }
    .reward-wrap .item.on .group .reward-image.five {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image.six {
    background: url(../img/reserv/reward6.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}

.reward-wrap .item.on .group .reward-image.six {
    background: url(../img/reserv/reward6_clear.png) no-repeat;
    background-size: contain;
    background-position: 50% 10%;
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image.six {
        background-position: 50% 20%;
    }
    .reward-wrap .item.on .group .reward-image.six {
        background-position: 50% 20%;
    }
}

.reward-wrap .group .reward-image p {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 40px;
    padding: 0 5px;
    text-align: center;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.312px;
    background: linear-gradient(150deg, #EBBE51 17.45%, #FFEAB7 50.92%, #EBBE51 84.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 1));
}
@media (max-width: 768.98px) {
    .reward-wrap .group .reward-image p {
        bottom: -1.5vh;
        font-size: .75rem;
    }
}
@media (max-width: 430.98px) {
    .reward-wrap .group .reward-image p {
        bottom: -1.2vh;
    }
}

.reward-wrap .complete {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 100%;
    background: url(../img/reserv/complete.png) no-repeat;
    background-size: contain;
    background-position: 50% 20%;
}

.reward-wrap .item.on .reward-image .complete {
    display: block;
}

.screen-0.reserv .section-3 .ctt .notice-list,
.screen-0.reserv .section-6 .ctt .notice-list {
    list-style-type: disc;
    padding: 0 20px;
}

.screen-0.reserv .section-3 .ctt .notice-list li,
.screen-0.reserv .section-6 .ctt .notice-list li {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.312px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-3 .ctt .notice-list li,
    .screen-0.reserv .section-6 .ctt .notice-list li {
        font-size: .8125rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-3 .ctt .notice-list li,
    .screen-0.reserv .section-6 .ctt .notice-list li {
        font-size: .6875rem;
    }
}

.screen-0.reserv .section-3 .ctt .notice-list li span,
.screen-0.reserv .section-6 .ctt .notice-list li span {
    color: var(--yellow2);
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite ease-in-out;
}

.star.small { width: 2px; height: 2px; }
.star.medium { width: 3px; height: 3px; }
.star.large { width: 5px; height: 5px; }

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.screen-0.reserv .section-4 .reserv-bg {
    width: 100%;
    height: 100%;
}
.screen-0.reserv .section-4 .reserv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-0.reserv .section-4 .cha {
    z-index: 2;
    position: absolute;
    top: 12%;
    left: 53%;
    width: 800px;
    animation: chaMoving4 8s ease-in-out infinite alternate;
    transition: left 0.3s ease-in-out;
}
@media (max-width: 980.98px) {
    .screen-0.reserv .section-4 .cha {
        top: 12%;
        left: 40%;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-4 .cha {
        left: 30%;
    }
}
@media (max-width: 575.98px) {
    .screen-0.reserv .section-4 .cha {
        left: 10%;
    }
}
@media (max-width: 482.98px) {
    .screen-0.reserv .section-4 .cha {
        top: 5%;
        left: -45%;
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .section-4 .cha {
        top: 2%;
        left: -55%;
    }
}

@keyframes chaMoving4 {
    0% {
        transform: translate(0, 0) scale(1); /* X, Y, 크기 */
        opacity: 0.9;
    }
    25% {
        transform: translate(20px, -10px) scale(1.02); /* 오른쪽 위로 살짝 이동, 약간 커짐 */
        opacity: 1;
    }
    50% {
        transform: translate(0, 15px) scale(1); /* 아래로 이동, 원래 크기 */
        opacity: 0.95;
    }
    75% {
        transform: translate(-15px, 5px) scale(0.98); /* 왼쪽으로 이동, 약간 작아짐 */
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) scale(1); /* 원래 위치와 크기 */
        opacity: 0.9;
    }
}

.screen-0.reserv .section-4 .ctt {
    transform: translate(-50%, -40%);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-4 .ctt {
        max-width: none;
        width: 100%;
        padding: 0 10px;
        top: 30vh;
        top: 34svh;
        transform: translateX(-50%);
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-4 .ctt {
        gap: 15px;
    }
}

.screen-0.reserv .section-4 .cha img {
    width: 100%;
}

.screen-0.reserv .section-4 .ctt-wrap {
    position: relative;
    width: 100%;
}

.screen-0.reserv .section-4 .ctt-wrap .text {
    font-size: 1rem;
}

.screen-0.reserv .section-4 .ctt-bg {
    position: relative;
    left: 50%;
    transform: translateX(-60%);
    width: 760px;
    min-height: 400px;
    margin-top: 10%;
    text-align: center;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: transparent;
    border-image: linear-gradient(
        172deg,
        rgba(235, 190, 81, 1) 0%,
        rgba(255, 234, 183, 1) 50%,
        rgba(235, 190, 81, 1) 100%
        ) 1;
    background: radial-gradient(85.95% 85.95% at 50% 8.97%, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
    
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1; /* 초기 상태는 보이도록 */
}
@media (max-width: 980.98px) {
    .screen-0.reserv .section-4 .ctt-bg {
        transform: translateX(-50%);
        width: 700px;
    }
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-4 .ctt-bg {
        transform: translateX(-50%);
        width: 650px;
        min-height: auto;
        margin-top: 5%;
    }
    .screen-0.reserv .section-4 #dday .your-clock {
        width: 100%;
        transform: scale(1.05);
    }
}
@media (max-width: 683.98px) {
    .screen-0.reserv .section-4 .ctt-bg {
        overflow: hidden;
    }
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.9);
    }
}
@media (max-width: 551.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.8);
    }
}
@media (max-width: 499.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.7) translateY(-50px);
    }
}
@media (max-width: 431.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.6) translateY(-50px);
    }
}
@media (max-width: 390.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        height: 200px;
        transform: scale(0.55) translateY(-50px);
    }
}
@media (max-width: 344.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.5) translateY(-50px);
    }
}
@media (max-width: 330.98px) {
    .screen-0.reserv .section-4 #dday .your-clock {
        transform: scale(0.45) translateY(-50px);
    }
}

.screen-0.reserv .section-4 .ctt-bg h5 {
    display: none;
}
.screen-0.reserv .section-4 .ctt-bg .deco {
    z-index: 4;
    position: absolute;
    top: -8px;
    left: -13px;
    width: 30px;
    height: 15px;
    background: url(../img/about/icon_goldDia.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.screen-0.reserv .section-4 .ctt-bg .deco.right {
    left: auto;
    right: -13px;
}

.screen-0.reserv .section-5 .ctt {
    max-width: 1000px;
    transform: translate(-50%, -53%);
    gap: 20px;
    background: url(../img/reserv/bg_coins.png) no-repeat;
    background-size: contain;
    background-position: 0 100%;
}

.screen-0.reserv .section-5.mission .bg {
    left: 50%;
    transform: translateX(-50%);
}
.screen-0.reserv .section-5.mission .ctt {
    background: none;
}

@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .ctt {
        top: 10vh;
        top: 10svh;
        transform: translateX(-50%);
        gap: 15px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt {
        top: 11vh;
        top: 11svh;
        gap: 10px;
        padding: 0 10px;
    }
}

.screen-0.reserv .section-5 .ctt-wrap {
    text-align: center;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .ctt-wrap {
        gap: 0;
    }
}

.screen-0.reserv .section-5 .ctt-wrap .text {
    color: var(--font-default);
    font-family: "Work Sans";
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .text {
        font-size: 1.25rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .text {
        font-size: 1rem;
    }
}

.screen-0.reserv .section-5 .ctt-wrap .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .title {
        gap: 0;
    }
}

.screen-0.reserv .section-5.mission .ctt-wrap .title {
    gap: 0;
}

.screen-0.reserv .section-5 .ctt-wrap .num {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    padding: 5px 30px 4px;
    border-radius: 30px;
    background: var(--red);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .num {
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .num {
        padding: 3px 20px 2px;
        font-size: .875rem;
    }
}

.screen-0.reserv .section-5.mission .ctt-wrap .num {
    max-width: 486px;
    width: 100%;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: none;
    gap: 9px;
}
@media (max-width: 554.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num {
        gap: 5px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num {
        max-width: none;
        width: 90%;
    }
}

.screen-0.reserv .section-5.mission .ctt-wrap .num img {
    max-width: 290px;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num img {
        max-width: 250px;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num img {
        max-width: 200px;
    }
}

.screen-0.reserv .section-5.mission .ctt-wrap .num span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 7px;
    color: #FFF;
    text-align: center;
    font-family: "Press Start 2P", "Pretendard", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    text-transform: uppercase;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num span {
        margin-top: 8px;
        font-size: 1rem;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .num span {
        margin-top: 6px;
        font-size: .8125rem;
        font-weight: 500;
    }
}

.screen-0.reserv .section-5 .ctt-wrap .main-name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name {
        gap: 2px;
    }
}

.screen-0.reserv .section-5 .ctt-wrap .main-name img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name img {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 320.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name img {
        width: 28px;
        height: 28px;
    }
}

.screen-0.reserv .section-5 .ctt-wrap .main-name p {
    text-align: center;
    font-family: "DungeonFighterOnlineBeatBeat";
    font-size: 3.125rem;
    line-height: normal;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #FF7A2D 1%, #FFE926 25.54%, #FFE926 50.08%, #FFE926 74.61%, #FF7A2D 99.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name p {
        font-size: 2.5rem;
    }
}
@media (max-width: 470.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name p {
        font-size: 1.875rem;
    }
}
@media (max-width: 320.98px) {
    .screen-0.reserv .section-5 .ctt-wrap .main-name p {
        font-size: 1.5rem;
    }
}

.screen-0.reserv .section-5.mission .ctt-wrap .main-name p {
    text-align: center;
    font-family: "Pretendard";
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1px;
    background: linear-gradient(181deg, #F9F1A6 15.49%, #F7CB6C 67.96%, #D39832 89.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .main-name p {
        font-size: 3rem;
    }
}
@media (max-width: 554.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .main-name p {
        font-size: 2.25rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .ctt-wrap .main-name p {
        font-size: 2rem;
    }
}

.screen-0.reserv .section-5.mission .mission-tr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.screen-0.reserv .section-5.mission .mission-tr .sub-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.screen-0.reserv .section-5.mission .mission-tr .sub-title img {
    height: 41px;
    object-fit: cover;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .mission-tr .sub-title img {
        height: 41px;
    }
}

.screen-0.reserv .section-5.mission .mission-tr .sub-title p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 355px;
    height: 41px;
    padding: 0 10px 3px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    color: var(--font-default);
    background: url(../img/reserv/bg_title1_center.png) repeat-x;
    background-size: contain;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .mission-tr .sub-title p {
        min-width: 255px;
        padding: 0 10px 1px;
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-tr .sub-title p {
        min-width: 255px;
        padding: 0 10px 3px;
        font-size: .875rem;
    }
}

.screen-0.reserv .section-5.mission .mission-tr .sub-title p.two {
    background: url(../img/reserv/bg_title2_center.png) repeat-x;
    background-size: contain;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-tr .sub-title p {
        min-width: 200px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt {
    display: flex;
    max-width: 540px;
    width: 100%;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(4, 0, 22, 0.00) 0%, rgba(4, 0, 22, 0.70) 10%, rgba(4, 0, 22, 0.70) 50%, rgba(4, 0, 22, 0.70) 90%, rgba(4, 0, 22, 0.00) 100%);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt {
        padding: 10px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt.box {
    display: flex;
    padding: 20px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid #EBBE51;
    background: rgba(4, 0, 22, 0.70);
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt.box {
        padding: 10px 20px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr {
        gap: 5px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt.box .tr {
    justify-content: flex-start;
    padding: 3px 0;
    border-bottom:1px solid rgba(255, 239, 185, 0.20);
}
@media (max-width: 430.98px) {
.screen-0.reserv .section-5.mission .mission-ctt.box .tr {
    width: 100%;
    justify-content: center;
}
}
.screen-0.reserv .section-5.mission .mission-ctt.box .tr:last-child {
    border-bottom: 0;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr p.title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    line-height: 120%;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt.box .tr p.title {
        width: 100%;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr img.dot {
    width: 10px;
    height: 10px;
    aspect-ratio: 1/1;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr img.level {
    width: 37px;
    height: 37px;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr img.arw {
    width: 40px;
    height: 40px;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr img.level {
        width: 25px;
        height: 25px;
    }
    .screen-0.reserv .section-5.mission .mission-ctt .tr img.arw {
        width: 25px;
        height: 25px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr img.cross {
    width: 95px;
    height: 27px;
    object-fit: contain;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr img.cross {
        width: 70px;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr p {
    color: var(--font-default);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    line-height: 100%;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr p {
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr p {
        font-size: .75rem;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr p span.yellow {
    margin-right: 5px;
    color: var(--yellow3);
    white-space: nowrap;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr p span.yellow.two {
    margin-left: 5px;
    white-space: normal;
    word-break: break-word;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr p span.yellow.three {
    display: inline-block;
    margin-left: 5px;
    line-height: 110%;
    white-space: normal;
    word-break: break-all;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr span.sky {
    color: var(--cross);
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5.mission .mission-ctt .tr span.sky {
        font-size: .8125rem;
    }
}

.screen-0.reserv .section-5.mission .mission-ctt .tr .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.screen-0.reserv .section-5.mission .mission-ctt .tr .row.two {
    gap: 2px;
}


.screen-0.reserv .section-5 .ctt .rewards {
    gap: 10px;
    margin: 0;
}
.screen-0.reserv .section-5 .ctt .rewards .prize-gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: end;
}
@media (max-width: 320.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .prize-gird {
        gap: 5px;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .td {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    min-width: 200px;
    position: relative;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td {
        min-width: auto;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .td:nth-child(1) {
    padding-bottom: 30px;
}
.screen-0.reserv .section-5 .ctt .rewards .td:nth-child(3) {
    padding-bottom: 15px;
}

.screen-0.reserv .section-5 .ctt .rewards .td .subj {
    display: flex;
    padding: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background: var(--green3);
    color: var(--font-default);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 0.8;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj {
        gap: 3px;
        padding: 5px;
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj {
        font-size: .875rem;
    }
}
.screen-0.reserv .section-5.mission .ctt .rewards .noti-grid .td .subj.blue {
    background: var(--darkblue);
}

.screen-0.reserv .section-5 .ctt .rewards .td .subj .img-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj .img-text {
        flex-direction: row;
    }
}
.screen-0.reserv .section-5 .ctt .rewards .td .subj img {
    height: 30px;
    object-fit: contain;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj img {
        height: 25px;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj img {
        height: 16px;
        gap: 1px;
    }
}
.screen-0.reserv .section-5 .ctt .rewards .tb-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.screen-0.reserv .section-5 .ctt .rewards .tb-btn-group .td {
    padding-bottom: 0;
}
.screen-0.reserv .section-5 .ctt .rewards .tb-btn-group .subj {
    background: var(--green2);
}

.screen-0.reserv .section-5 .ctt .rewards .td .subj p {
    font-size: .8125rem;
    text-align: center;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj p {
        font-size: .75rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .subj p {
        font-size: .625rem;
    }
}
.screen-0.reserv .section-5 .ctt .rewards .td .contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 11px 5px;
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--green3);
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .td .contents {
        font-size: .875rem;
    }
}

.screen-0.reserv .section-5.mission .ctt .rewards .td .contents {
    padding: 11px 8px 11px 5px;
    border: 1px solid var(--darkblue);
}

.screen-0.reserv .section-5 .ctt .rewards .td .contents p:nth-child(1) {
    color: var(--yellow2);
    font-weight: 700;
}

button.apply,
button.prereg {
    display: flex;
    width: 100%;
    max-width: 250px;
    padding: 15px 5px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #FF8787 7.21%, #FF5959 24.52%, #FF5959 70.67%, #C02929 100%);
    color: #FFF;
    text-align: center;
    font-family: "DungeonFighterOnlineBeatBeat";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

button.prereg{
    margin-top: 15px;
}

button.hidden{ visibility: hidden; }
#stringtable { display: none }

button.apply.green,
button.prereg.green {
    background: linear-gradient(180deg, #17B494 7.21%, #15967C 24.52%, #0F836B 70.67%, #0E5143 100%);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
button.apply.green.first {
    margin-top: 15px;
}

@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards button.apply {
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards button.apply {
        padding: 7px 10px;
        font-size: .875rem;
    }
    button.apply.green.first {
        margin-top: 25px;
    }
}
.screen-0.reserv .section-5 .ctt .rewards button.apply:hover,
.screen-0.reserv .section-5 .ctt .rewards button.apply:active {
    transition: all 0.3s ease;
    filter: contrast(1.5);
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid {
    display: grid;
    gap: 10px;
    position: relative;
    justify-content:center;

}


@media (max-width: 320.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid {
        gap: 5px;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td{
    max-width: 700px;
}

.screen-0.reserv .section-5.mission .ctt .rewards .noti-grid {
    grid-template-columns: 1fr;
}

.screen-0.reserv .section-5 .ctt .rewards .td-noti-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
}

.screen-0.reserv .section-5 .ctt .rewards .td-noti-group .td:nth-child(1) {
    padding-bottom: 0;
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .subj {
    flex-direction: row;
    padding: 7px 20px 3px;
    gap: 5px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 0.8;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .subj {
        font-size: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .subj {
        padding: 7px 10px 3px;
        font-size: .8125rem;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .subj img {
    position: relative;
    top: -1px;
    height: 25px;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .subj img {
        height: 20px;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents {
    align-items: flex-start;
    align-self: stretch;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25rem;
    padding-left: 8px;
    color: var(--font-default);
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents {
        font-size: .75rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents {
        line-height: .875rem;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents li::before {
    content: "✓";
    display: inline-block;
    width: 1em;
    margin-right: 3px;
}
.screen-0.reserv .section-5.mission .ctt .rewards .noti-grid .td .contents li::before {
    content: "·";
    width: auto;
    margin-right: 5px;
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents li {
    font-size: .875rem;
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents li {
        font-size: .75rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents li {
        font-size: .625rem;
    }
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .td .contents li b {
    color: var(--yellow3);
    font-weight: 700;
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .notice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.screen-0.reserv .section-5 .ctt .rewards .noti-grid .notice .date {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .noti-grid .notice .date {
        gap: .3125rem;
    }
}
.screen-0.reserv .section-5 .ctt .rewards .date .subj {
    display: flex;
    align-self: stretch;
    min-width: 140px;
    padding: 1px 5px;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 5px;
    background: #002A21;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.125rem;
    color: var(--font-default);
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .date .subj {
        min-width: 100px;
        font-size: .75rem;
        font-weight: 700;
        line-height: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .date .subj {
        min-width: auto;
        width: 80px;
        font-size: .625rem;
        line-height: .875rem;
    }
}
.screen-0.reserv .section-5 .ctt .rewards .date .date-ctt {
    text-shadow: 0 1px 1px #000;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.125rem;
    color: var(--font-default);
}
@media (max-width: 550.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .date .date-ctt {
        font-size: .75rem;
        line-height: 1rem;
    }
}
@media (max-width: 430.98px) {
    .screen-0.reserv .section-5 .ctt .rewards .date .date-ctt {
        font-size: .625rem;
        line-height: .875rem;
    }
}

.screen-0.reserv .section-5 button.hidden-btn {
    display: none;
    width: 100%;
    max-width: 100px;
    padding: 6px 10px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: linear-gradient(180deg, #FF8787 7.21%, #FF5959 24.52%, #FF5959 70.67%, #C02929 100%);
    color: #FFF;
    font-family: "DungeonFighterOnlineBeatBeat";
    font-size: .875rem;
    letter-spacing: 1px;
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 button.hidden-btn {
        display: flex;
    }
}
@media (max-width: 360.98px) {
    .screen-0.reserv .section-5 button.hidden-btn {
        margin-top: 3px;
    }
}

.screen-0.reserv .section-5 .my-ticket-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 23.625rem;
    width: 100%;
    padding: 10px;
    border-radius: 0.625rem;
    background: rgba(0, 0, 0, 0.30);
}

/* --- 닫기 버튼 --- */
.screen-0.reserv .section-5 .my-ticket-section button.bt-close {
    z-index: 10003;
    display: none;
    position: absolute;
    left: auto;
    top: -33px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: url(../img/reserv/bt-close-normal.png) no-repeat;
    background-size: contain;
}

@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .my-ticket-section button.bt-close {
        display: flex;
    }
    .screen-0.reserv .section-5 .my-ticket-section {
        display: flex;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 90%;
        max-width: 23.625rem;
        height: auto;
        background: #1a1a1a;
        border: 1px solid var(--default);
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .screen-0.reserv .section-5 .my-ticket-section.active {
        z-index: 10002;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }
    .screen-0.reserv .section-5 .my-ticket-section.hide {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9); /* 살짝 작아지는 효과 */
        visibility: hidden;    /* 완전히 사라진 후 클릭 방지 */
        pointer-events: none;  /* 애니메이션 도중 클릭 방지 */
    }
}

.screen-0.reserv .section-5 .my-ticket-section .ticket-header {
    position: relative;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 249, 230, 0.40);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.125rem;
    color: var(--font-default);
}

.screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -3px;
    right: 0;
    padding: 4px 15px 3px;
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #4b5563 0%, #1f2937 100%);
    color: #FFE625;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}
.screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge:hover,
.screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
}
@media (max-width: 768.98px) {
    .screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge {
        right: 5px;
    }
}

.screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge:hover,
.screen-0.reserv .section-5 .my-ticket-section .ticket-header button.badge:active {
    filter: brightness(1.5);
}

.ball-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    height: 70px;
    margin-top: 10px;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
@media (max-width: 768.98px) {
    .ball-container {
        height: auto;
        padding: 5px 0;
        -webkit-mask-image:unset;
        mask-image: unset;
    }
}

.ball-container.results {
    height: auto;
}
@media (max-width: 768.98px) {
    .ball-container.results {
        padding-bottom: 10px;
    }
}

.ball-container .ball-coloum {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
@media (max-width: 768.98px) {
    .ball-container .ball-coloum {
        gap: 5px;
    }
}

.ball-container.results .ball-coloum {
    gap: 7px;
}

.ball-container .ball-coloum .ball {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 2.5rem;
    background: linear-gradient(181deg, #FFF8F0 0.99%, #DDC9B7 75.92%);
    color:#010E2C;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.125rem; /* 69.231% */
}

.ball-container.results .ball-coloum .ball {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background: var(--1, linear-gradient(180deg, #3BC9AC 0%, #11866E 100%));
    color: var(--font-default);
    font-size: 1.25rem;
    font-weight: 700;
}

.popup-wrapper.lotto {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.70);
  display: none;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 390.98px) {
    .popup-wrapper.lotto {
        padding: 5px;
    }
}

.popup-wrapper.lotto.active {
  display: flex;
}

.popup-wrapper.cbt_new.active {
  display: flex;
}

.popup-wrapper.lotto .view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 95%;
    max-width: 900px;
    height: auto;
    min-height: 6.25rem;
    padding: 20px;
    border-radius: 1.875rem;
    background: var(--font-default);
}
@media (max-width: 500.98px) {
    .popup-wrapper.lotto .view {
        padding: 15px 20px 20px;
    }
}
.popup-wrapper.lotto.mini .view {
    justify-content: center;
    max-width: 400px;
    min-height: 250px;
    padding: 15px;
}
.popup-wrapper.lotto.mini .view .text-wrapper {
    top: 25px;
}
.popup-wrapper.lotto.mini .view .line {
    top: 65px;
}
.popup-wrapper.lotto.mini .view p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 30px;
    min-height: 150px;
    padding: 0 10px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
}

/* --- 닫기 버튼 --- */
.popup-wrapper.lotto .bt-close {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 15px;
  left: auto;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: url(../img/popup/bt-close-normal.png) no-repeat;
  background-size: contain;
}
@media (max-width: 390.98px) {
    .popup-wrapper.lotto .bt-close {
        top: 14px;
        right: 10px;
    }
}

/* 아이템 Select 박스 */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 17.25rem;
    align-items: center;
    gap: 0.625rem;
    user-select: none;
}
@media (max-width: 768.98px) {
    .custom-select-wrapper {
        max-width: 17.5rem;
    }
}
@media (max-width: 455.98px) {
    .custom-select-wrapper {
        max-width: 12.5rem;
    }
}


.native-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 0.5rem;
    border: 1px solid #BDACA0;
    background: #E6DEC6;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-select-trigger:hover {
  background-color: #ddc496;
}

.selected-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected-option img {
  width: 24px;
  height: 24px;
}

.selected-option span {
    color: #4D4B45;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}
@media (max-width: 768.98px) {
    .selected-option span {
        font-size: .875rem;
    }
}

.custom-select-wrapper .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #a0a0a0;
  border-bottom: 2px solid #a0a0a0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: #E6DEC6;
  color: #4D4B45;
  border-radius: 10px;
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-option:hover {
  background-color: #ddc496;
}
.custom-option img { width: 24px; height: 24px; }
.custom-option span { color: #4D4B45; font-weight: 500; }
.custom-option:first-child { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.custom-option:last-child { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }


/* --- 열렸을 때(.is-open) 상태 스타일 --- */
.custom-select-wrapper.is-open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-wrapper.is-open .arrow {
  transform: rotate(225deg);
}

.lotto-results-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}
.lotto-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}
.lotto-table.three {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 430.98px) {
    .lotto-table.three {
        grid-template-columns: 150px 1fr;
    }
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 10px;
    border: 0.5px solid #5e5b54; /* 셀 간의 얇은 라인 */
    font-size: .875rem;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5px);
}
@media (max-width: 768.98px) {
    .grid-item {
        padding: 10px 5px;
        font-size: .75rem;
    }
}

.grid-item.header {
  background-color: var(--green2);
  font-weight: bold;
  font-size: 15px;
}
@media (max-width: 768.98px) {
    .grid-item.header {
        font-size: .75rem;
    }
}

.grid-item.prize {
  gap: 3px;
}

.grid-item .coin {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/reserv/item_cross3.png) no-repeat;
  background-size: contain;
}

.lotto-table .grid-item:nth-last-child(-n+5) {
  border-bottom: none;
}

.uid-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 18px 15px 8px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 430.98px) {
    .uid-wrapper {
        margin-top: 30px;
    }
}

.uid-wrapper span.title {
    position: absolute;
    top: -13px;
    padding: 5px;
    border-radius: 5px;
    font-size: .875rem;
    font-weight: 500;
    color: #fff;
    border: 1px solid #000;
    background-color: #836749;
}
.uid-wrapper code {
    color: var(--yellow);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}
.uid-wrapper button.copy-btn {
    position: relative;
    top: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: url(../img/event/icon_copy.png) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.uid-wrapper button.copy-btn:hover,
.uid-wrapper button.copy-btn:active {
    background: url(../img/event/icon_copy_on.png) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}


.msg_text {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

button.claim
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: -3px;
    right: 0;
    padding: 4px 15px 3px;
    border-radius: 0.375rem;
    background: linear-gradient(180deg, #4b5563 0%, #1f2937 100%);
    color: #FFE625;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 10px;
}