/* LOADING PAGE STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #ffa07a;
    --accent-color: #ffe5ec;
    --light-bg: #fff0f7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff0f7 0%, #ffe5ec 25%, #ffccdd 50%, #ffb3d9 75%, #ffa0d2 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.loading-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* LILIES VIDEO */
.lilies-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    animation: scaleIn 1s ease;
}

.lilies-video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 157, 0.3));
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FLOATING HEARTS - Enhanced */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 2em;
    animation: floatHeart 6s ease-in infinite;
    opacity: 0.7;
}

.heart-1 {
    left: 5%;
    bottom: -100px;
    animation-delay: 0s;
    font-size: 1.5em;
}

.heart-2 {
    left: 15%;
    bottom: -100px;
    animation-delay: 0.8s;
    font-size: 1.8em;
}

.heart-3 {
    left: 25%;
    bottom: -100px;
    animation-delay: 1.6s;
    font-size: 2em;
}

.heart-4 {
    left: 50%;
    bottom: -100px;
    animation-delay: 1.2s;
    font-size: 2.2em;
}

.heart-5 {
    left: 65%;
    bottom: -100px;
    animation-delay: 0.4s;
    font-size: 1.8em;
}

.heart-6 {
    left: 75%;
    bottom: -100px;
    animation-delay: 2s;
    font-size: 1.6em;
}

.heart-7 {
    left: 85%;
    bottom: -100px;
    animation-delay: 0.6s;
    font-size: 1.9em;
}

.heart-8 {
    left: 35%;
    bottom: -100px;
    animation-delay: 1.4s;
    font-size: 1.7em;
}

@keyframes floatHeart {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: translateX(30px) scale(1) rotate(-15deg);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-30px) scale(1) rotate(15deg);
    }
    90% {
        opacity: 0.5;
        transform: translateX(0) scale(1) rotate(0deg);
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(0) scale(0) rotate(0deg);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .lilies-container {
        width: 95%;
        max-width: 500px;
    }

    .lilies-video {
        max-height: 55vh;
    }

    .heart {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .lilies-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0 20px;
    }

    .lilies-video {
        max-height: 50vh;
        width: 100%;
    }

    .heart {
        font-size: 1.2em;
    }

    .heart-1 {
        font-size: 1em;
    }

    .heart-2 {
        font-size: 1.2em;
    }

    .heart-3 {
        font-size: 1.3em;
    }

    .heart-4 {
        font-size: 1.4em;
    }

    .heart-5 {
        font-size: 1.2em;
    }

    .heart-6 {
        font-size: 1em;
    }

    .heart-7 {
        font-size: 1.1em;
    }

    .heart-8 {
        font-size: 1.15em;
    }
}

@media (max-width: 480px) {
    .lilies-container {
        max-width: 100%;
    }

    .lilies-video {
        max-height: 45vh;
    }

    .heart {
        font-size: 1em;
    }
}
