/* Heart Floating Button */
.heart-float-button {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(236, 72, 153, 0.4),
        0 0 40px rgba(236, 72, 153, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.05); }
    20% { transform: scale(1); }
    30% { transform: scale(1.05); }
    40% { transform: scale(1); }
}

.heart-float-button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(236, 72, 153, 0.5),
        0 0 50px rgba(236, 72, 153, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.heart-float-button svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

/* Heart Modal Overlay */
.heart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Heart Modal */
.heart-modal {
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(236, 72, 153, 0.2);
    transform: scale(0.9);
    transition: all 0.3s ease;
    overflow: hidden;
}

.heart-modal-overlay.active .heart-modal {
    transform: scale(1);
}

/* Heart Modal Header */
.heart-modal-header {
    padding: 30px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
    position: relative;
    text-align: center;
}

.heart-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.heart-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-modal-close:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.4);
    transform: rotate(90deg);
}

/* Heart Modal Content */
.heart-modal-content {
    padding: 30px;
    text-align: center;
}

.heart-modal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
}

.heart-modal-content p:last-child {
    margin-bottom: 0;
}

.heart-modal-content strong {
    color: #ec4899;
    font-weight: 600;
}

.heart-modal-content em {
    color: #f472b6;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .heart-float-button {
        bottom: 140px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .heart-modal {
        width: 95%;
        margin: 20px;
    }
    
    .heart-modal-header {
        padding: 20px;
    }
    
    .heart-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .heart-modal-content {
        padding: 20px;
    }
    
    .heart-modal-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
}