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

/* Prevent scrolling */
html, body {
    overflow: hidden;
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('background2.jpg') center/100% 100% no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

.title {
    font-family: 'Dancing Script', cursive;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: center;
    animation: floatText 4s ease-in-out infinite;
}

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

.profile-container {
    margin-bottom: 30px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff99cc;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.enter-button {
    background-color: #ff99cc;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

#heart-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    width: 30px;
    height: 30px;
    background: transparent;
    animation: floatHeart 2s ease-in forwards;
}

.heart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('heart.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes floatHeart {
    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translate(-50px, -200px);
        opacity: 0;
    }
}

.enter-button:hover {
    background-color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

@media (max-width: 600px) {
    .title {
        font-size: 36px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .enter-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}
