/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff0f5, #fff8fa, #fff0f5);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px;
    position: relative;
    touch-action: manipulation;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.1) 0%, transparent 20%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.9);
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 240, 245, 0.9));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 90, 121, 0.2);
    padding: 30px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Profile Image */
.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.viva-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff8fab, #ffb3c6, #ffc2d1, gold, #ff8fab) border-box;
    box-shadow: 0 5px 20px rgba(255, 90, 121, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
}

@keyframes borderRotate {
    from { border-image-source: linear-gradient(0deg, #ff8fab, #ffb3c6, gold, #ff8fab); }
    to { border-image-source: linear-gradient(360deg, #ff8fab, #ffb3c6, gold, #ff8fab); }
}

.viva-profile:hover {
    box-shadow: 0 8px 30px rgba(255, 90, 121, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Heart Container */
.heart-container {
    position: relative;
    height: 100px;
    margin-bottom: 20px;
}

.heart {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ff5a79;
    transform-origin: center;
}

.heart:before,
.heart:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ff5a79;
    border-radius: 50%;
}

.heart:before {
    top: -25px;
    left: 0;
}

.heart:after {
    top: 0;
    left: 25px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
}

/* Heart Animation */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.heart-shower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.heart {
    position: absolute;
    top: -10vh;
    animation: heartFall 6s cubic-bezier(0.645, 0.045, 0.355, 1) forwards, heartSway 3s ease-in-out infinite alternate;
    z-index: 999;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    will-change: transform, opacity;
}

@keyframes heartFall {
    0% {
        transform: translateY(0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: var(--heart-opacity, 1);
        transform: translateY(10vh) scale(1);
    }
    90% {
        opacity: var(--heart-opacity, 1);
    }
    100% {
        transform: translateY(110vh) scale(0.5);
        opacity: 0;
    }
}

@keyframes heartSway {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--sway-amount, 15px));
    }
}

/* Content Styles */
.content {
    position: relative;
    z-index: 1;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ff5a79, #ff8fab, gold, #ff5a79);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
}

.title::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    top: 0;
    right: -30px;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.subtitle::before, .subtitle::after {
    content: '❤️';
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.subtitle::before {
    left: -25px;
}

.subtitle::after {
    right: -25px;
}

.message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    padding: 10px 25px;
    background-color: rgba(255, 240, 245, 0.7);
    border-radius: 15px;
    border-left: 4px solid #ff8fab;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    font-style: italic;
}

.message::before, .message::after {
    content: '"';
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: rgba(255, 90, 121, 0.2);
    position: absolute;
}

.message::before {
    top: -10px;
    left: 5px;
}

.message::after {
    bottom: -30px;
    right: 5px;
}

/* Button Styles */
.love-button {
    background: linear-gradient(135deg, #ff5a79, #ff8fab, #ff5a79);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 5px 20px rgba(255, 90, 121, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.love-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.love-button:hover {
    box-shadow: 0 10px 25px rgba(255, 90, 121, 0.7), 0 0 20px rgba(255, 215, 0, 0.4);
}

.love-button:hover::before {
    transform: scale(1);
    opacity: 1;
}

.love-button:active {
    box-shadow: 0 5px 15px rgba(255, 90, 121, 0.5);
}

.love-button i {
    font-size: 1.2rem;
}

.love-button::after {
    content: '💘';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.love-button:hover::after {
    opacity: 1;
    right: 25px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Gallery Styles */
.gallery {
    background: rgba(255, 255, 255, 0.9);
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.9));
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 25px rgba(255, 90, 121, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 850px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery.hidden {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 90, 121, 0.3));
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 90, 121, 0.3), rgba(255, 215, 0, 0.3));
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.gallery.hidden {
    opacity: 0;
    transform: translateY(50px);
    display: none;
}

.gallery h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    background: linear-gradient(45deg, #ff5a79, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.nav-button {
    background: linear-gradient(135deg, #ff8fab, #ff5a79);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(255, 90, 121, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 90, 121, 0.5);
}

#photoCounter {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0 15px;
    min-width: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.gallery h2::before, .gallery h2::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite alternate;
}

.gallery h2::before {
    left: -40px;
    animation-delay: 0.5s;
}

.gallery h2::after {
    right: -40px;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2) rotate(10deg); }
}

.photo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.photo {
    flex: 0 0 calc(33.333% - 25px);
    max-width: calc(33.333% - 25px);
    transition: all 0.5s ease, opacity 0.8s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 1;
}

.photo:hover {
    transform: scale(1.08) rotate(5deg);
    z-index: 10;
}

.polaroid {
    background: white;
    padding: 15px 15px 45px 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s ease;
    transform: rotateY(0deg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.photo-placeholder {
    height: 150px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    filter: brightness(1.05) contrast(1.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Penyesuaian untuk gambar dengan nama file panjang */
.photo:nth-child(8) .photo-img {
    object-position: top center;
}

.photo:hover .photo-img {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.polaroid p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #444;
    position: relative;
    padding: 5px 0;
    margin-top: 5px;
}

.polaroid p::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 90, 121, 0.5), transparent);
}

.photo:nth-child(1) .polaroid::before {
    content: '💕';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.5rem;
    transform: rotate(-20deg);
    animation: float 3s ease-in-out infinite;
}

.photo:nth-child(2) .polaroid::before {
    content: '💖';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    transform: rotate(20deg);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.photo:nth-child(3) .polaroid::before {
    content: '💘';
    position: absolute;
    bottom: 10px;
    right: -10px;
    font-size: 1.5rem;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Popup Styles */
.love-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.love-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 90, 121, 0.2);
    transform: scale(0.8) rotate(-3deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 182, 193, 0.3);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.popup-content::before, .popup-content::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.4;
}

.popup-content::before {
    background: radial-gradient(circle, rgba(255, 90, 121, 0.6), transparent);
    top: -100px;
    left: -100px;
}

.popup-content::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
    bottom: -100px;
    right: -100px;
}

.love-popup.active .popup-content {
    transform: scale(1) rotate(0deg);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: rgba(255, 90, 121, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-popup:hover {
    color: #ff5a79;
    transform: rotate(90deg);
    background: white;
    box-shadow: 0 5px 15px rgba(255, 90, 121, 0.3);
}

.love-popup h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    background: linear-gradient(45deg, #ff5a79, gold, #ff5a79);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.love-popup h2::after {
    content: '💝';
    position: absolute;
    font-size: 1.5rem;
    top: 0;
    right: -40px;
    animation: bounce 2s ease infinite;
}

.love-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 3px solid rgba(255, 90, 121, 0.5);
    max-height: 60vh;
    overflow-y: auto;
    text-align: left;
}

.love-message p {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.love-message p:last-child {
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    padding-left: 0;
}

.love-message p::before {
    content: '❤️';
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.love-message p:last-child::before {
    display: none;
}

.heart-animation {
    width: 50px;
    height: 50px;
    background-color: #ff5a79;
    transform: rotate(45deg);
    margin: 30px auto;
    position: relative;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-animation:before,
.heart-animation:after {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #ff5a79;
    border-radius: 50%;
    position: absolute;
}

.heart-animation:before {
    top: -25px;
    left: 0;
}

.heart-animation:after {
    top: 0;
    left: -25px;
}

/* Floating Hearts */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff5a79;
    transform: rotate(45deg);
    opacity: 0.6;
}

.floating-heart:before,
.floating-heart:after {
    content: "";
    width: 20px;
    height: 20px;
    background: #ff5a79;
    border-radius: 50%;
    position: absolute;
}

.floating-heart:before {
    top: -10px;
    left: 0;
}

.floating-heart:after {
    top: 0;
    left: -10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .card {
        width: 90%;
        padding: 25px;
    }
    
    .message {
        font-size: 1rem;
        padding: 15px;
    }
    
    .love-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .popup-content {
        padding: 25px;
        width: 95%;
        max-width: 450px;
    }
    
    .love-popup h2 {
        font-size: 2.5rem;
    }
    
    .love-message {
        font-size: 1.1rem;
        padding: 12px 15px;
        max-height: 50vh;
    }
    
    .gallery-navigation {
        margin: 10px 0 20px;
    }
    
    .photo-container {
        display: block;
        position: relative;
        min-height: 350px;
    }
    
    .photo {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
        width: 85%;
        position: absolute;
        left: 0;
        right: 0;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .photo[style*="display: block"] {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .message {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .love-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .love-popup h2 {
        font-size: 2rem;
    }
    
    .love-message {
        font-size: 1rem;
        padding: 10px;
        max-height: 45vh;
    }
    
    .love-message p::before {
        font-size: 0.8rem;
    }
    
    .close-popup {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .card, .gallery {
        padding: 20px;
    }
    
    .photo-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .polaroid {
        padding: 10px 10px 35px 10px;
    }
    
    .photo-img {
        height: 180px;
    }
    
    .polaroid p {
        font-size: 1.1rem;
    }
}

.photo {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}