/* ============================================
   Makuake CTA Styles
   ============================================ */

.makuake-cta-container {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.makuake-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.btn-makuake {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 1rem;
    border: 3px solid #FF5252;
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    color: #ffffff !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
    animation: makuake-pulse 3s ease-in-out infinite;
}

.btn-makuake:hover {
    background: linear-gradient(135deg, #FF5252, #FF3838);
    border-color: #FF3838;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 82, 82, 0.7);
    animation: none;
}

@keyframes makuake-pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 82, 82, 0.8);
    }
}

.btn-makuake svg {
    flex-shrink: 0;
}

.makuake-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.makuake-cta-note svg {
    flex-shrink: 0;
    color: #FF5252;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .makuake-cta-container {
        margin-top: var(--spacing-md);
    }
    
    .makuake-cta-text {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .btn-makuake {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-makuake span {
        font-size: 1rem;
    }
    
    .makuake-cta-note {
        font-size: 0.85rem;
        padding: 0 var(--spacing-sm);
    }
}
