:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ff9e9e;
    --bg-color: #fff0f5;
    --text-color: #5d5d5d;
    --white: #ffffff;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

h1 {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(255, 158, 158, 0.3);
    animation: bounceIn 1s;
}

.subtitle {
    font-size: 1.2rem;
    color: #ff8787;
    margin-bottom: 2rem;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.photo-card {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    position: relative;
}

.photo-card:nth-child(2) {
    transform: rotate(3deg);
}

.photo-card:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

.photo-card img {
    max-width: 250px;
    border-radius: 10px;
    display: block;
}

.heart-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    animation: float 2s infinite ease-in-out;
}

.love-note {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cute-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: 'Pacifico', cursive;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.cute-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.cute-btn:active {
    transform: translateY(-1px);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.floating-heart {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    animation: floatUp 4s linear forwards;
    z-index: 100;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.meow-text {
    position: absolute;
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    pointer-events: none;
    animation: popOut 1s forwards;
    z-index: 200;
}

@keyframes popOut {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(-20px);
        opacity: 0;
    }
}

.hidden {
    display: none !important;
}

#player {
    position: absolute;
    top: -9999px;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.cute-btn.secondary {
    background-color: #a0a0a0;
    box-shadow: 0 5px 15px rgba(160, 160, 160, 0.4);
}

.cute-btn.secondary:hover {
    background-color: #808080;
    box-shadow: 0 8px 20px rgba(160, 160, 160, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 1rem;
        margin: 1rem;
        width: auto;
    }

    .photo-gallery {
        gap: 1rem;
    }

    .photo-card img {
        max-width: 100%;
        width: 100%;
    }

    .cute-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}