@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff0c0 0%, #fdd2c5 25%, #eaadd6 50%, #c7b6e2 75%, #94bfe9 100%);
    color: #333;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 6rem;
    color: #ffe9e9;
    margin-top: -50px;
    margin-bottom: 80px;
    -webkit-text-stroke: 1px #777;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: 40px;
    }
}

.container {
    min-width: 50%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white for a soft overlay */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* Softer shadow for a subtle depth */
    max-width: 90%; /* Ensure some padding from the screen edges */
}

.image-container {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 100%; /* Keep the circular design */
    background-color: rgba(255, 255, 255, 0.5); /* Lighter background to accentuate the GIF */
    display: inline-block;
}

#pulsating-tay {
    max-width: 250px;
    object-fit: cover;
    border-radius: 50%;
    /* box-shadow: 0px 0px 200px red; */
    animation: pulse 5s infinite linear;
}

@media (max-width: 768px) {
    #pulsating-tay {
        max-width: 150px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

#countdown {
    font-size: 3em;
    font-weight: 700;
    color: #333;
}

@media (max-width: 600px) {
    #countdown {
        font-size: 1.5em;
    }
}

.progress-container {
    position: relative;
    width: 100%;
    background-color: #ddd;
    border-radius: 20px;
    max-width: 600px; /* Or any specific width you prefer */
    height: 20px;
    margin: 20px auto; /* Centering the progress bar */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: adds a slight shadow for depth */
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #feb47b, #ff7e5f); /* Example gradient from pink to orange */
    width: 0%; /* Initial state */
    border-radius: 18px; /* Slightly less than container to fit nicely */
    transition: width 0.5s ease-in-out; /* Smooth transition for width changes */
}

.start-text, .end-text {
    color: #555;
    position: absolute;
    top: 30px; /* Adjust this value to position the text above the progress bar */
    font-size: 0.8em; /* Or any size that fits your design */
    font-weight: bold;
}

.start-text {
    left: -10px;
}

.end-text {
    right: -10px;
}

.heart {
    position: absolute;
    font-size: 20px; /* to adjust */
    opacity: 1;
    transition: transform 1.5s ease-out, opacity 1.9s ease-in;
    pointer-events: none;
}

.heart.pop {
    opacity: 1;
    transform: translate(-50%, -150px) scale(1.5);
}

.days {
    color:#fff0c0;
    -webkit-text-stroke: 1px #999;
}

.hours {
    color:#fdd2c5;
    -webkit-text-stroke: 1px #aaa;
}

.minutes {
    color:#eaadd6;
    -webkit-text-stroke: 1px #aaa;
}

.seconds {
    color:#c7b6e2;
    -webkit-text-stroke: 1px #bbb;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 1);
    color: white;
    min-width: 300px;
    max-width: 20%;
    border-radius: 10px;
    z-index: 1000;
    color: black;
    box-shadow: 1px 1px 5px black;
    display: none;
}

.notification-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 25px;
    z-index: 2;
}

.notification-image {
    width: 80%;
    height: auto;
    border-radius: 10px;
}

.notification-text {
    font-family: 'Inter', 'Roboto', Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.notification-text a {
    color:rgb(15, 150, 200);
}

.hot-emoji {
    position: absolute;
    left: 75.96%;
    top: -175%;
    font-size: 1.5em;
    transform: rotate(15deg);
    cursor: default;
}

@media (max-width: 600px) {
    .notification {
        top: auto;
        left: auto;
        right: auto;
        width: 80%;
        max-height: 80%;
        border-radius: 20px;
        max-width: none;
    }

    .content {
        filter: blur(1px);
    }

    .notification-content {
        height: 100%;
        justify-content: center;
    }

    .notification-image {
        max-height: 50%;
    }

    .close-btn {
        top: 20px;
        right: 20px;
    }
}
