body {
    font-family: 'Mali', cursive;
    text-align: center;
    color: #5b2b7f;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3e8f7;
    background-image: 
        linear-gradient(90deg, rgba(155, 122, 191, 0.2) 25%, transparent 25%), 
        linear-gradient(180deg, rgba(155, 122, 191, 0.2) 25%, transparent 25%);
    background-size: 200px 200px;
    background-position: 0 0, 10px 10px;
}

.page-container {
    width: 80%;
    max-width: 800px;
    padding: 40px;
    border: 2px solid #9b7abf;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}

h1 {
    font-family: 'Mali', cursive;
    margin-top: 0;
    font-size: 3em;
    color: #a350be;
}

.button {
    font-family: 'Mali', cursive;
    background-color: #9b7abf;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 24px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 1000px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #c594e1;
}

.page {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.active {
    display: block;
    opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; 
    margin: 20px auto;
}

.video-container video {
    width: 100%;
    height: auto; 
    display: block;
    border-radius: 10px; 
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl {
    margin: 20px 0;
    display: none;
}

.owl img {
    width: 50%;
    height: auto;
    margin: 20px 0;
    position: relative;
    opacity: 0;
}

.fly-in img {
    animation: flyIn 2s ease-out forwards;
}

@keyframes flyIn {
    from {
        left: -200px;
        opacity: 0;
        transform: rotate(-20deg) scale(0.8);
    }
    to {
        left: 0;
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.message-box {
    display: block;
    font-size: 1.5em;
    margin-top: 30px;
    color: #9b7abf;
}

.message-box p {
    font-size: 1.2em;
}

.message-box button {
    margin: 10px;
}

.letter-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.letter-box {
    width: 80%;
    max-width: 600px;
    padding: 30px;
    border: 2px solid #9b7abf;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    color: #5b2b7f;
    line-height: 1.6;
    font-family: 'Mali', cursive;
    margin-bottom: 30px;
}

.letter-box p {
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 18px 20px;
    cursor: pointer;
    border-radius: 100px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}