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

body {
    background: linear-gradient(45deg, #ff6b6b, #ffc3a0, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.container {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    text-decoration: none;
    color: #ff6b6b;
    font-weight: bold;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

.heart {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    position: relative;
    transform: rotate(45deg);
    animation: float 3s infinite;
    display: inline-block;
    margin: 0 1rem;
}

.heart:before,
.heart:after {
    content: '';
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    position: absolute;
}

.heart:before {
    left: -15px;
}

.heart:after {
    top: -15px;
}

@keyframes float {

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

    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

.butterfly-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.butterfly {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('butterfly.png') no-repeat;
    background-size: contain;
    animation: flyAround 20s infinite linear;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.butterfly:nth-child(2) {
    animation-delay: -10s;
    animation-duration: 15s;
}

@keyframes flyAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100vw, 50vh) rotate(90deg);
    }

    50% {
        transform: translate(50vw, 100vh) rotate(180deg);
    }

    75% {
        transform: translate(-50vw, 50vh) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff6b6b, 0 0 20px #ff6b6b;
    }

    to {
        box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff6b6b, 0 0 40px #ff6b6b;
    }
}

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

#musicToggle {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

#musicToggle.playing {
    background: #ff6b6b;
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

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

    50% {
        transform: scale(1.1);
    }

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

.flower {
    font-size: 2rem;
    margin: 0 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.falling-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.falling-heart {
    position: fixed;
    font-size: 20px;
    animation: fall linear forwards;
    opacity: 0.7;
}

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

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

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.aleyna-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 10px #ff6b6b,
        0 0 20px #ff6b6b,
        0 0 30px #ff6b6b;
    animation: glow 2s ease-in-out infinite alternate;
}

.small-text {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.9;
}

.message {
    font-size: 1.2rem;
    color: #fff;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.sad-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}