/* Love CSS - Love Sayfası Stilleri */

/* Love sayfası için özel stil */
.love-page {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff9a9e 100%);
    animation: gradient-shift 6s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.love-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 700px;
    margin: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.love-title {
    font-size: 3em;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.love-message {
    font-size: 1.8em;
    color: #333;
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.4;
}

.love-russian {
    font-size: 2.2em;
    color: #ff6b6b;
    font-weight: bold;
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 107, 107, 0.7);
    animation: float-up 8s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.love-quote {
    font-style: italic;
    color: #666;
    font-size: 1.2em;
    margin-top: 40px;
    padding: 20px;
    border-left: 4px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 0 10px 10px 0;
}

.back-link {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .love-title {
        font-size: 2em;
    }

    .love-message {
        font-size: 1.4em;
    }

    .love-container {
        padding: 30px;
        margin: 10px;
    }
}