body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #ffd1ff);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    width: 95%;
    margin: 20px auto;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 1;
}

.container::-webkit-scrollbar {
    width: 8px;
}

.container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.container::-webkit-scrollbar-thumb {
    background: rgba(255, 20, 147, 0.5);
    border-radius: 10px;
}

h1 {
    color: #ff1493;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.heart-border {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    margin: 20px auto;
    width: 50%;
}

.love-text {
    color: #ff1493;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.special-text {
    color: #ff1493;
    font-size: 2rem;
    font-weight: bold;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.heart,
.flower,
.butterfly {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    animation: float 6s ease-in-out infinite;
}

.photo-frames {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.frame {
    font-size: 4rem;
    padding: 20px;
    background: rgba(255, 192, 203, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.2);
    animation: pulse 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
    }

    100% {
        transform: translateY(105vh) rotate(360deg);
    }
}

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

    50% {
        transform: scale(1.1);
    }

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

.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.music-control button {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background: rgba(255, 192, 203, 0.9);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.music-control button:hover {
    transform: scale(1.1);
}

.slideshow {
    position: relative;
    height: 120px;
    margin: 20px 0;
    background: rgba(255, 192, 203, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.interactive-heart {
    position: relative;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.big-heart {
    font-size: 5rem;
    transition: transform 0.3s ease;
}

.big-heart:hover {
    transform: scale(1.2);
}

.click-message {
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
}

.memory-box {
    background: rgba(255, 192, 203, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.wish-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

#wishInput {
    flex: 1;
    padding: 10px;
    border: 2px solid #ffd1ff;
    border-radius: 20px;
    font-size: 1rem;
}

#sendWish {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #ff1493;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sendWish:hover {
    transform: scale(1.05);
}

.wishes-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.wish-item {
    background: linear-gradient(45deg, rgba(255, 192, 203, 0.2), rgba(255, 20, 147, 0.2));
    padding: 15px;
    margin: 10px 0;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wish-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.message-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: 0.8em;
    color: #888;
}

.message-author {
    font-weight: bold;
    color: #ff1493;
}

/* Yeni özellikler için stiller */
.mood-indicator {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.special-effects {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.effect-button {
    padding: 8px 15px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 20, 147, 0.8);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Efektler için container'lar */
#hearts,
#flowers,
#butterflies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Konfeti stili ekle */
.confetti {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    animation: confettiFall 2s linear forwards;
    z-index: 1000;
}

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

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