@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
.container {
    height: 100vh;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.section {
    display: none;
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    z-index: 1020;
}
.active {
    display: block;
}
#homeSection {
    text-align: center;
}
#homeSection .logo {
    width: 150px;
    margin: 50px 0 0;
}
#homeSection p {
    color: #ffffff;
    margin: 50px 0 0;
    letter-spacing: .5px;
}
#homeSection .profile {
    display: inline-block;
    margin: 35px 0 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#homeSection .profile:hover {
    transform: scale(1.1);
}
#homeSection .profile img {
    width: 100px;
}
#homeSection .profile .guest-name {
    display: block;
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: .5px;
}
#homeSection .move span {
    font-size: 12px;
    color: #d9d9d9bd;
    padding: 10px 20px;
    border: 1.5px solid #d9d9d9bd;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
#detailSection .gradient {
    position: relative;
    overflow: hidden;
}
#detailSection .gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}
#detailSection .gradient .banner {
    width: 100%;
    max-width: 400px;
    height: 430px;
    object-fit: cover;
}
#detailSection .event-header {
    position: relative;
    color: #ffffff;
    padding: 0 20px;
    text-align: left;
    margin-top: -120px;
}
@media (max-width: 768px) {
    #detailSection .gradient .banner {
        height: 300px;
    }
    #detailSection .event-header {
        margin-top: -45px;
    }
}
#detailSection .event-header .logo {
    width: 80px;
}
#detailSection .event-header h2 {
    font-size: 32px;
    margin: 0 0 15px;
}
#detailSection .event-header .label {
    margin-bottom: 20px;
}
#detailSection .event-header .label span:first-child {
    font-weight: 700;
    font-size: 11px;
    color: #ffffff;
    margin-right: 13px;
    padding: 5px 8px;
    background-color: #e50913;
    border-radius: 5px;
    letter-spacing: -0.7px;
}
#detailSection .event-header .label span:last-child {
    font-weight: 500;
    font-size: 13px;
}
#detailSection .event-header .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 30px;
}
#detailSection .event-header .tag {
    font-weight: 500;
    font-size: 10px;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #4d4d4d;
    border-radius: 10px;
}
#detailSection .event-header .move {
    text-align: center;
}
@-webkit-keyframes bounce {
    0%,20%,50%,80%,to {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-15px)
    }
    60% {
        -webkit-transform: translateY(-5px)
    }
}
@-moz-keyframes bounce {
    0%,20%,50%,80%,to {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-15px)
    }
    60% {
        -moz-transform: translateY(-5px)
    }
}
@-o-keyframes bounce {
    0%,20%,50%,80%,to {
        -o-transform: translateY(0)
    }
    40% {
        -o-transform: translateY(-15px)
    }
    60% {
        -o-transform: translateY(-5px)
    }
}
@keyframes bounce {
    0%,20%,50%,80%,to {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-15px)
    }
    60% {
        transform: translateY(-5px)
    }
}
#detailSection .event-header .move .bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    margin: 0 0 10px;
    cursor: pointer;
}
#detailSection .event-header .move .bounce svg {
    width: 26px;
    height: 26px;
}
#detailSection .event-header .move span {
    display: inline-block;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#detailSection .event-header .move span:hover {
    transform: scale(1.1);
}
#fullDetailSection .video video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#fullDetailSection .story .header {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}
#fullDetailSection .story .header .title-overlay .doc {
    font-size: 12px;
    color: #a3a1a1;
    letter-spacing: 1.5px;
}
#fullDetailSection .story .header .title-overlay .icon {
    width: 20px;
    margin-right: 10px;
}
#fullDetailSection .story .header .title-overlay h2 {
    font-size: 19px;
    margin: 0 0 5px;
}
#fullDetailSection .story .header .title-overlay .details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
#fullDetailSection .story .header .title-overlay .details .match {
    font-size: 14px;
    color: #66c03f;
}
#fullDetailSection .story .header .title-overlay .details .badge {
    font-size: 12px;
    padding: 3px 5px;
    background-color: #4d4d4d;
    border-radius: 3px;
}
#fullDetailSection .story .header .title-overlay .details .year, #fullDetailSection .story .header .title-overlay .details .duration {
    font-size: 14px;
}
#fullDetailSection .story .header .title-overlay .coming-soon {
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    background-color: #e50913;
    padding: 5px 8px;
    border-radius: 4px;
}
#fullDetailSection .story .header .description {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.3;
    margin: 16px 0 0;
}
#fullDetailSection .story .header .quotes {
    font-size: 11px;
    color: #a3a1a1;
    margin: 15px 0 0;
}
#fullDetailSection .news {
    position: relative;
    padding: 0 20px 20px;
}
#fullDetailSection .news h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
#fullDetailSection .news img {
    max-width: 360px;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#fullDetailSection .news img:hover {
    transform: scale(1.1);
}
#fullDetailSection .news .information {
    font-style: italic;
    font-size: 13px;
    color: #a3a1a1;
    letter-spacing: 1px;
    line-height: 1.3;
}
#fullDetailSection .news .information p {
    font-weight: 500;
    margin-bottom: 15px;
}
#fullDetailSection .couple {
    position: relative;
    padding: 0 20px 30px;
}
#fullDetailSection .couple h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
#fullDetailSection .couple .column-50 {
    width: calc(50% - 10px);
    margin: 5px;
    box-sizing: border-box;
}
#fullDetailSection .couple .column-50 img {
    width: 100%;
    height: 110px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#fullDetailSection .couple img:hover {
    transform: scale(1.1);
}
#fullDetailSection .couple p {
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0 7px;
}
#fullDetailSection .couple span {
    font-size: 12px;
    color: #a3a1a1;
}
#fullDetailSection .episodes {
    position: relative;
    padding: 0 20px 30px;
}
#fullDetailSection .episodes h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
#fullDetailSection .episodes .episode {
    margin-bottom: 15px;
}
#fullDetailSection .episodes .episode .column-50 {
    width: calc(50% - 10px);
    margin: 5px;
    box-sizing: border-box;
}
#fullDetailSection .episodes .episode .column-50 img {
    width: 100%;
    height: 110px;
    border-radius: 8px;
    object-fit: cover;
}
#fullDetailSection .episodes .episode h5 {
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 8px;
    line-height: 1.3;
}
#fullDetailSection .episodes .episode span {
    font-size: 12px;
    color: #a3a1a1;
}
#fullDetailSection .episodes .episode p {
    font-size: 12px;
    color: #a3a1a1;
    margin: 5px 0 0;
}
#fullDetailSection .gallery {
    position: relative;
    padding: 0 20px 35px;
}
#fullDetailSection .gallery h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
#fullDetailSection .gallery .gallery-item {
    width: calc(33.333% - 10px);
    margin: 5px;
    box-sizing: border-box;
}
#fullDetailSection .gallery .gallery-item img {
    width: 100%;
    height: 165px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
#fullDetailSection .gallery .gallery-item img:hover {
    transform: scale(1.1);
}
#fullDetailSection .guestbook {
    position: relative;
    padding: 0 20px 50px;
}
#fullDetailSection .guestbook * {
    box-sizing: border-box;
}
#fullDetailSection .guestbook h3 {
    font-size: 20px;
    margin: 0 0 15px;
}
#fullDetailSection .guestbook #wishes {
    display: flex;
    flex-direction: column-reverse;
    max-height: 400px;
    overflow: auto;
}
#fullDetailSection .guestbook #wishes img {
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    margin-right: 15px;
}
#fullDetailSection .guestbook #wishes h5 {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 7px;
}
#fullDetailSection .guestbook #wishes p {
    font-size: 13px;
    color: #a3a1a1;
    margin: 0;
}
#fullDetailSection .guestbook #wishes .no-messages {
    font-style: italic;
    color: #a3a1a1;
    padding: 10px;
    text-align: center;
}
#fullDetailSection .guestbook form {
    width: 100%;
    margin-top: 20px;
}
#fullDetailSection .guestbook form .form-input {
    position: relative;
    margin: 0 0 15px;
}
#fullDetailSection .guestbook form input, #fullDetailSection .guestbook form textarea {
    font-size: 15px;
    color: #ffffff;
    width: 100%;
    padding: 25px 15px 10px;
    border-radius: 3px;
    border: 1px solid #817575;
    background-color: transparent;
    outline: none;
    resize: none;
}
#fullDetailSection .guestbook form input {
    min-height: 20px;
}
#fullDetailSection .guestbook form textarea {
    min-height: 100px;
}
#fullDetailSection .guestbook form .form-input label {
    position: absolute;
    left: 15px;
    top: 19px;
    color: #a3a1a1;
    font-size: 14px;
    letter-spacing: .07em;
    transform: translateY(-10px);
    transition: transform .3s ease;
    pointer-events: none;
}
#fullDetailSection .guestbook form .form-input input:invalid + label, #fullDetailSection .guestbook form .form-input textarea:invalid + label {
    transform: translateY(0);
}
#fullDetailSection .guestbook form .form-input input:focus, #fullDetailSection .guestbook form .form-input textarea:focus {
    border-color: #ffffff;
}
#fullDetailSection .guestbook form .form-input input:valid + label, #fullDetailSection .guestbook form .form-input textarea:valid + label {
    font-size: 12px;
}
#fullDetailSection .guestbook form .form-input input:focus + label, #fullDetailSection .guestbook form .form-input textarea:focus + label {
    font-size: 12px;
    color: #a3a1a1;
    transform: translateY(-10px);
}
#fullDetailSection .guestbook form button {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    width: 100%;
    padding: 10px 15px;
    background-color: #e50913;
    border-radius: 5px;
    border: none;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.5px;
}
#fullDetailSection .footer {
    position: relative;
    padding: 0 20px 30px;
    text-align: center;
}
#fullDetailSection .footer .thanks-text {
    font-size: 15px;
    color: #ffffff;
    margin: 15px 0 20px;
}
#fullDetailSection .footer .copyright {
    font-size: 12px;
    color: #a3a1a1;
    margin: 0;
}
#fullDetailSection .footer .total-visit {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    margin: 20px 0 0;
    border-top: 1px solid #817575;
}
#fullDetailSection .footer .total-visit span {
    font-size: 12px;
    color: #a3a1a1;
}
#fullDetailSection .footer .total-visit .total-today, #fullDetailSection .footer .total-visit .total-overall {
    flex: 1;
    text-align: center;
}
#fullDetailSection .footer .total-visit .separator {
    margin: 0 10px;
}
.bg-info {
    background-color: #48cae4;
}
.bg-danger {
    background-color: #ff0000;
}
.bg-warning {
    background-color: #2afd00;
}
.bg-success {
    background-color: #bba75d;
}
.couple .d-flex, .episodes .d-flex, .gallery .d-flex {
    display: flex;
    margin: -5px;
}
.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 10px;
}
.mr-1 {
    margin-right: 10px;
}
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: none;
    /* display: none; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    z-index: 1050;
}
#loadingOverlay .loading-icon {
    width: 130px;
    height: 50px;
}
.blink {
    animation: smoothBlink 2s infinite ease-in-out;
}
@keyframes smoothBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
#loadingOverlay .loading-text {
    font-weight: 500;
    font-size: 13px;
    margin-top: 5px;
}
#modal {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#modal img {
    width: 100%;
    margin: 0;
}
#modal #prevButton, #modal #nextButton {
    position: absolute;
    font-size: 20px;
    color: #ffffff;
    top: 50%;
    padding: 9px 13px;
    background-color: rgb(0 0 0 / 50%);
    transform: translateY(-50%);
    transition: opacity 0.3s;
    opacity: 0.7;
    cursor: pointer;
    z-index: 2;
}
#modal #prevButton {
  left: 5px;
}
#modal #nextButton {
  right: 5px;
}
#modal #prevButton:hover, #modal #nextButton:hover {
    opacity: 1;
}
#modal #exitButton {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    color: #ffffff;
    padding: 7px 11px;
    background-color: #e50913;
    transition: opacity 0.3s;
    opacity: 0.7;
    cursor: pointer;
    z-index: 2;
}
#modal #exitButton:hover {
    opacity: 1;
}