/* Subscription Modal Styles */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.subscription-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.subscription-modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.subscription-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.subscription-modal-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.subscription-modal-body {
    padding: 30px;
}

.subscription-pricing {
    text-align: center;
    margin-bottom: 30px;
}

.subscription-price {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0;
}

.subscription-period {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.subscription-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.subscription-feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #1a73e8;
}

.subscription-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.subscription-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscription-btn-primary {
    background: #1a73e8;
    color: white;
}

.subscription-btn-primary:hover {
    background: #1557b0;
}

.subscription-btn-secondary {
    background: #f1f3f4;
    color: #5f6368;
}

.subscription-btn-secondary:hover {
    background: #e8eaed;
}

.subscription-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-modal-close:hover {
    background: #f1f3f4;
}

/* Animation */
.subscription-modal.show {
    animation: fadeIn 0.3s ease-out;
}

.subscription-modal.show .subscription-modal-content {
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive design */
@media (max-width: 600px) {
    .subscription-modal-content {
        margin: 20px;
        max-width: none;
    }
    
    .subscription-modal-header,
    .subscription-modal-body {
        padding: 20px;
    }
    
    .subscription-modal-title {
        font-size: 20px;
    }
    
    .subscription-price {
        font-size: 28px;
    }
}
