/**
 * Support Button Centered Styling
 */

/* Center the Support Series button */
.manga-action {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Make the Support Series button stand out */
.support-series {
    order: -1; /* Move to the beginning */
    background-color: #000000;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 10px auto;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-series:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.support-series .action_icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.support-series .action_detail {
    display: inline-block;
    vertical-align: middle;
}

.support-series .action_detail span {
    color: #D4AF37;
    font-weight: bold;
    font-size: 16px;
}

/* Pulsing animation for the heart icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.support-series .action_icon i {
    animation: pulse 1.5s infinite;
    display: inline-block;
    font-size: 18px;
}

/* Make sure the button is visible on mobile */
@media (max-width: 768px) {
    .support-series {
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }
} 