* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #080810;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    overflow-x: hidden;
overflow-y: auto;
}


/* =========================
   OPENING
   ========================= */

.opening {
    height: 100vh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            #25213a 0%,
            #11111d 35%,
            #080810 75%
        );
}

.opening::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(190, 150, 255, 0.08);

    filter: blur(80px);
}

.opening-content {
    position: relative;
    z-index: 2;

    text-align: center;

    animation: openingAppear 2.5s ease forwards;
}

.opening-content h1 {
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.12);
}

.small-text {
    font-family: Arial, sans-serif;

    font-size: 15px;

    letter-spacing: 3px;

    color: #aaa7b8;

    margin-bottom: 25px;
}

h1 {
    font-size: clamp(42px, 7vw, 76px);

    font-weight: normal;

    margin: 0;

    letter-spacing: -2px;
}

.sub-text {
    font-family: Arial, sans-serif;

    font-size: 18px;

    color: #aaa7b8;

    margin-top: 20px;
    margin-bottom: 45px;
}


/* =========================
   BUTTONS
   ========================= */

button {
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.08);

    color: white;

    padding: 15px 30px;

    border-radius: 40px;

    font-size: 16px;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

button:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.15);

    border-color: rgba(255, 255, 255, 0.5);
}


/* =========================
   ANIMATIONS
   ========================= */

@keyframes openingAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes sceneAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   CHAPTER 1
   ========================= */

.scene {
    height: 100vh;
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #25213a 0%,
            #11111d 45%,
            #080810 100%
        );

    position: relative;

    overflow: hidden;
}

.scene-content {
    max-width: 700px;

    padding: 30px;

    animation: sceneAppear 1.5s ease forwards;
}

.chapter-number {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 5px;

    color: #aaa7b8;

    margin-bottom: 25px;
}

.scene h2 {
    font-size: clamp(40px, 6vw, 65px);

    font-weight: normal;

    margin: 0 0 25px;
}

.story-text {
    font-family: Arial, sans-serif;

    font-size: 19px;

    line-height: 1.8;

    color: #b8b5c5;

    margin-bottom: 40px;
}


/* =========================
   CLASSROOM VIDEO
   ========================= */

#videoScreen {
    position: relative;

    z-index: 10;
}

#classroomVideo {
    display: block;

    width: 90%;

    max-width: 1000px;

    max-height: 90vh;

    border-radius: 18px;

    box-shadow:
        0 0 50px rgba(255, 255, 255, 0.08);

    position: relative;

    z-index: 20;
}

.after-video {
    display: none;

    position: absolute;

    inset: 0;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    text-align: center;

    padding: 30px;

    background: rgba(8, 8, 16, 0.96);

    z-index: 30;

    animation: sceneAppear 1.5s ease forwards;
}

.after-video p {
    font-family: Arial, sans-serif;

    color: #aaa7b8;

    font-size: 16px;

    letter-spacing: 2px;
}

.after-video h2 {
    max-width: 650px;

    font-size: clamp(32px, 5vw, 55px);

    font-weight: normal;

    line-height: 1.3;

    margin: 15px 0 35px;
}


/* =========================
   CHAPTER 2
   ========================= */

.chapter2 {
    height: 100vh;
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #211f35 0%,
            #11111d 50%,
            #080810 100%
        );

    position: relative;

    overflow: hidden;
}

.chapter2::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(190, 150, 255, 0.07);

    filter: blur(100px);
}

.chapter2-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    padding: 30px;

    animation: sceneAppear 1.5s ease forwards;
}

.chapter2-subtitle {
    font-family: Arial, sans-serif;

    font-size: 19px;

    line-height: 1.7;

    color: #aaa7b8;

    margin-top: 25px;

    margin-bottom: 40px;
}


/* =========================
   FRIENDS VIDEO
   ========================= */

#friendsVideoScreen {
    position: relative;

    z-index: 10;
}

#friendsVideo {
    display: block;

    width: 90%;

    max-width: 1000px;

    max-height: 90vh;

    border-radius: 18px;

    box-shadow:
        0 0 50px rgba(255, 255, 255, 0.08);
}


/* =========================
   CHAPTER 2 TRANSITION
   ========================= */

.chapter2-transition {
    height: 100vh;
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #211f35 0%,
            #11111d 50%,
            #080810 100%
        );

    position: relative;

    overflow: hidden;
}

.chapter2-transition::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(190, 150, 255, 0.06);

    filter: blur(100px);
}

.transition-content {
    position: relative;

    z-index: 2;

    max-width: 650px;

    padding: 30px;

    animation: sceneAppear 1.5s ease forwards;
}

.transition-small {
    font-family: Arial, sans-serif;

    font-size: 14px;

    letter-spacing: 4px;

    color: #aaa7b8;

    margin-bottom: 30px;
}

.transition-content h2 {
    font-size: clamp(34px, 5vw, 55px);

    line-height: 1.35;

    font-weight: normal;

    margin: 0 0 30px;
}

.transition-text {
    font-family: Arial, sans-serif;

    font-size: 17px;

    color: #aaa7b8;

    margin-bottom: 12px;
}

.transition-highlight {
    font-family: Arial, sans-serif;

    font-size: 18px;

    color: #e3d9f5;

    margin-bottom: 35px;
}


/* =========================
   PHONE CONVERSATION
   ========================= */

.phone-scene {
    height: 100vh;
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at center,
            #242039 0%,
            #11111d 50%,
            #080810 100%
        );
}

.phone {
    width: 330px;
    height: 620px;

    background: #151520;

    border: 8px solid #292936;

    border-radius: 40px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(190, 150, 255, 0.08);
}


/* PHONE TOP */

.phone-top {
    height: 45px;

    padding: 12px 20px;

    display: flex;

    justify-content: space-between;

    font-family: Arial, sans-serif;

    font-size: 12px;

    color: #aaa7b8;
}


/* CHAT HEADER */

.chat-header {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    border-top:
        1px solid rgba(255,255,255,0.06);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.avatar {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #302b45;
}

.chat-header strong {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 14px;
}

.chat-header small {
    display: block;

    margin-top: 4px;

    color: #858292;

    font-family: Arial, sans-serif;

    font-size: 10px;
}


/* MESSAGES */

.messages {
    padding: 25px 15px;
}

.message {
    width: fit-content;

    max-width: 75%;

    padding: 11px 15px;

    margin-bottom: 12px;

    border-radius: 18px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.4;

    opacity: 0;

    transform: translateY(10px);

    animation:
        messageAppear 0.6s ease forwards;
}

.message-left {
    background: #292735;

    color: #eee;

    border-bottom-left-radius: 5px;
}

.message-right {
    margin-left: auto;

    background: #665486;

    color: white;

    border-bottom-right-radius: 5px;
}


/* MESSAGE TIMING */

.message-1 {
    animation-delay: 0.8s;
}

.message-2 {
    animation-delay: 2.2s;
}

.message-3 {
    animation-delay: 3.8s;
}

.message-4 {
    animation-delay: 5.4s;
}

.message-5 {
    animation-delay: 7s;
}

@keyframes messageAppear {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================
   CONVERSATION ENDING
   ========================= */

.conversation-ending {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

    background: rgba(15, 15, 25, 0.97);

    opacity: 0;

    pointer-events: none;

    animation:
        endingAppear 1.5s ease forwards;

    animation-delay: 8.5s;
}

.conversation-ending p:first-child {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 3px;

    color: #aaa7b8;
}

.conversation-ending h2 {
    font-size: 27px;

    line-height: 1.4;

    font-weight: normal;

    margin: 15px 0 20px;
}

.ending-small {
    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color: #858292;

    margin-bottom: 25px;
}

@keyframes endingAppear {

    to {
        opacity: 1;

        pointer-events: auto;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

    .opening-content {
        padding: 25px;
    }

    .small-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 42px;
    }

    .sub-text {
        font-size: 16px;
    }

    button {
        font-size: 14px;
        padding: 13px 24px;
    }

    .scene-content,
    .chapter2-content,
    .transition-content {
        padding: 25px;
    }

    .scene h2 {
        font-size: 38px;
    }

    .story-text {
        font-size: 16px;
    }

    .chapter2-subtitle {
        font-size: 17px;
    }

    .transition-content h2 {
        font-size: 34px;
    }

    .transition-text {
        font-size: 15px;
    }

    .transition-highlight {
        font-size: 16px;
    }

    #classroomVideo,
    #friendsVideo {
        width: 96%;
        max-height: 75vh;
    }

    .after-video h2 {
        font-size: 32px;
    }

    .phone {
        width: 310px;
        height: 580px;
    }

}
/* FEELINGS SCENE */

.feelings-scene {
    display: none;
    width: 100vw;
    height: 100vh;
    background: #14161d;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.feelings-content {
    max-width: 700px;
    animation: fadeIn 1.5s ease;
}

.feelings-small {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 25px;
}

.feelings-content h2 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 35px;
}

.feelings-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d6d6d6;
    margin: 20px 0;
}

.feelings-highlight {
    font-size: 22px;
    color: #f3b6c8;
    margin: 30px 0;
}

.feelings-content button {
    margin-top: 25px;
}


/* MOBILE */

@media (max-width: 600px) {

    .feelings-content h2 {
        font-size: 30px;
    }

    .feelings-text {
        font-size: 16px;
    }

    .feelings-highlight {
        font-size: 19px;
    }

}
/* BEGINNING OF US */

.beginning-scene {
    display: none;
    width: 100vw;
    height: 100vh;
    background: #14161d;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.beginning-content {
    max-width: 700px;
    animation: fadeIn 1.5s ease;
}

.beginning-small {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 25px;
}

.beginning-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
}

.beginning-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d6d6d6;
    margin: 18px 0;
}

.beginning-highlight {
    font-size: 26px;
    color: #f3b6c8;
    margin: 30px 0;
}

.beginning-content button {
    margin-top: 25px;
}


/* FIRST DATE VIDEO */

#dateVideoScreen {
    position: relative;
}


/* MOBILE */

@media (max-width: 600px) {

    .beginning-content h2 {
        font-size: 30px;
    }

    .beginning-text {
        font-size: 16px;
    }

    .beginning-highlight {
        font-size: 21px;
    }

}
/* GROWING TOGETHER */

.growing-scene {
    display: none;
    width: 100vw;
    min-height: 100vh;
    background: #14161d;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 25px;
    box-sizing: border-box;
}

.growing-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

.growing-small {
    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 25px;
}

.growing-content h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 35px;
}

.growing-chat {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.grow-message {
    padding: 13px 18px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 75%;
    opacity: 0;
    animation: growMessage 0.8s ease forwards;
}

.grow-left {
    align-self: flex-start;
    background: #252936;
    color: #eee;
    text-align: left;
}

.grow-right {
    align-self: flex-end;
    background: #f3b6c8;
    color: #24242a;
    text-align: right;
}


/* MESSAGE TIMING */

.grow-message:nth-child(1) {
    animation-delay: 0.5s;
}

.grow-message:nth-child(2) {
    animation-delay: 1.2s;
}

.grow-message:nth-child(3) {
    animation-delay: 1.9s;
}

.grow-message:nth-child(4) {
    animation-delay: 2.6s;
}

.grow-message:nth-child(5) {
    animation-delay: 3.3s;
}

.grow-message:nth-child(6) {
    animation-delay: 4s;
}

.grow-message:nth-child(7) {
    animation-delay: 4.7s;
}

.grow-message:nth-child(8) {
    animation-delay: 5.4s;
}


/* ENDING */

.growing-ending {
    margin-top: 60px;
    animation: fadeIn 1.5s ease;
    animation-delay: 6s;
    animation-fill-mode: both;
}

.growing-ending p {
    color: #aaa;
    font-size: 17px;
}

.growing-ending h3 {
    font-size: 25px;
    font-weight: 400;
    margin: 15px 0;
}

.growing-ending h2 {
    font-size: 32px;
    color: #f3b6c8;
    margin: 10px 0 30px;
}


/* ANIMATIONS */

@keyframes growMessage {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .growing-content h2 {
        font-size: 29px;
    }

    .grow-message {
        font-size: 14px;
        max-width: 82%;
    }

    .growing-ending h3 {
        font-size: 21px;
    }

    .growing-ending h2 {
        font-size: 27px;
    }

}
/* BIRTHDAY TRANSITION */

.birthday-transition {
    display: none;
    width: 100vw;
    min-height: 100vh;
    background: #101116;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    box-sizing: border-box;
}

.birthday-content {
    width: 100%;
    max-width: 700px;
    animation: fadeIn 2s ease;
}

.birthday-small {
    font-size: 12px;
    letter-spacing: 5px;
    color: #aaa;
    margin-bottom: 25px;
}

.birthday-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
}

.birthday-text {
    font-size: 18px;
    line-height: 1.9;
    color: #d5d5d5;
}

.birthday-highlight {
    font-size: 24px;
    color: #f3b6c8;
    margin: 35px 0;
}

.birthday-divider {
    font-size: 22px;
    color: #aaa;
    margin: 25px 0;
}

.birthday-content h1 {
    font-size: 42px;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 25px 0;
}

.birthday-message {
    color: #aaa;
    font-size: 17px;
    margin-bottom: 25px;
}


/* MOBILE */

@media (max-width: 600px) {

    .birthday-content h2 {
        font-size: 32px;
    }

    .birthday-content h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .birthday-text {
        font-size: 16px;
    }

    .birthday-highlight {
        font-size: 21px;
    }

}
/* =========================
   BIRTHDAY TRANSITION
========================= */

.birthday-transition {
    height: 100vh;
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #302744 0%,
            #151522 45%,
            #080810 100%
        );

    position: relative;
    overflow: hidden;
}


/* soft glow */

.birthday-transition::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(220, 180, 255, 0.08);

    filter: blur(100px);
}


/* content */

.birthday-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    padding: 30px;

    animation: sceneAppear 1.5s ease forwards;
}


/* small heading */

.birthday-small {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 4px;

    color: #aaa7b8;

    margin-bottom: 25px;
}


/* main heading */

.birthday-content h2 {
    font-size: clamp(40px, 6vw, 65px);

    font-weight: normal;

    line-height: 1.2;

    margin: 0 0 30px;
}


/* paragraph */

.birthday-text {
    font-family: Arial, sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: #aaa7b8;

    margin-bottom: 20px;
}


/* highlight */

.birthday-highlight {
    font-family: Arial, sans-serif;

    font-size: 21px;

    color: #e3d9f5;

    margin-bottom: 30px;
}


/* divider */

.birthday-divider {
    font-size: 22px;

    color: #d8c6f5;

    margin: 20px 0;
}


/* HAPPY BIRTHDAY */

.birthday-content h1 {
    font-size: clamp(42px, 7vw, 75px);

    font-weight: normal;

    letter-spacing: -2px;

    margin: 10px 0 25px;

    text-shadow:
        0 0 30px rgba(255,255,255,0.12);
}


/* final message */

.birthday-message {
    font-family: Arial, sans-serif;

    font-size: 17px;

    color: #aaa7b8;

    margin-bottom: 30px;
}
/* =========================
   BIRTHDAY TRANSITION
========================= */

.birthday-transition {
    width: 100%;
    height: 100vh;

    display: none;

    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #2a2340 0%,
            #151322 45%,
            #080810 100%
        );

    position: relative;
    overflow: hidden;
}

.birthday-transition::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(220, 180, 255, 0.08);

    filter: blur(100px);
}

.birthday-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    padding: 30px;

    animation: birthdayAppear 1.5s ease forwards;
}

.birthday-small {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 4px;

    color: #aaa7b8;

    margin-bottom: 25px;
}

.birthday-content h2 {
    font-size: clamp(35px, 6vw, 60px);

    font-weight: normal;

    margin: 0 0 30px;

    color: #f4efff;
}

.birthday-text {
    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.8;

    color: #aaa7b8;

    margin-bottom: 25px;
}

.birthday-highlight {
    font-size: 20px;

    color: #e3d9f5;

    margin-bottom: 30px;
}

.birthday-divider {
    font-size: 24px;

    color: #d8c6f0;

    margin: 20px 0;
}

.birthday-content h1 {
    font-size: clamp(40px, 8vw, 75px);

    line-height: 1.1;

    font-weight: normal;

    color: #ffffff;

    margin: 10px 0 25px;
}

.birthday-message {
    font-family: Arial, sans-serif;

    font-size: 16px;

    color: #aaa7b8;

    margin-bottom: 30px;
}

.birthday-content button {
    padding: 14px 28px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 30px;

    background: rgba(255,255,255,0.08);

    color: white;

    font-size: 15px;

    cursor: pointer;

    transition: 0.3s ease;
}

.birthday-content button:hover {
    background: rgba(255,255,255,0.15);

    transform: translateY(-2px);
}

@keyframes birthdayAppear {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================
   PERSONAL LETTER
========================= */

.letter-scene {
    display: none;
    min-height: 100vh;
    width: 100%;
    background: #17151a;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.letter-paper {
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;

    background: #fffaf0;
    color: #403632;

    padding: 55px 50px;
    border-radius: 4px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45);

    position: relative;

    animation: letterAppear 1.5s ease forwards;
}

.letter-paper::before {
    content: "♥";
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 22px;
    color: #c98291;
    opacity: 0.7;
}

.letter-greeting {
    font-size: 28px;
    margin-bottom: 25px;
    color: #59464a;
}

.letter-paper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #8d5965;
}

.letter-paper p {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
}

.letter-ending {
    margin-top: 35px !important;
    font-size: 19px !important;
    color: #76545b;
}

@keyframes letterAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .letter-scene {
        padding: 30px 15px;
        align-items: flex-start;
    }

    .letter-paper {
        padding: 40px 25px;
    }

    .letter-greeting {
        font-size: 24px;
    }

    .letter-paper h2 {
        font-size: 27px;
    }

    .letter-paper p {
        font-size: 16px;
        line-height: 1.8;
    }

}