/* Thank You & Share Modal Styles */

.thankyou-modal {
    max-width: 500px;
    padding: 2rem;
}

.thankyou-content {
    text-align: center;
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.thankyou-modal h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.share-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.share-section h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.share-btn i {
    font-size: 1.2rem;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-btn.copy-link {
    background: #6c757d;
    color: white;
}

.share-btn.copy-link:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.share-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.upgrade-suggestion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.upgrade-suggestion h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.upgrade-suggestion p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.upgrade-suggestion .btn {
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.upgrade-suggestion .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .thankyou-modal {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .thankyou-icon {
        font-size: 3rem;
    }
    
    .thankyou-modal h2 {
        font-size: 1.5rem;
    }
    
    .share-section,
    .upgrade-suggestion {
        padding: 1rem;
    }
    
    .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .thankyou-modal {
        display: none !important;
    }
}
