/**
 * AudioGuide Premium - Styles
 */

/* Payment Overlay */
.ag-payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

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

.ag-payment-box {
    background: white;
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

/* Dashboard Cards */
.ag-premium-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.ag-premium-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* Status Badges */
.ag-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.ag-badge.premium {
    background: #fee2e2;
    color: #dc2626;
}

.ag-badge.free {
    background: #dcfce7;
    color: #16a34a;
}

.ag-badge.active {
    background: #dbeafe;
    color: #2563eb;
}

.ag-badge.expired {
    background: #f3f4f6;
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ag-payment-box {
        padding: 24px;
        max-width: 100%;
    }
    
    .ag-price-box .price {
        font-size: 28px;
    }
    
    .ag-analytics-grid {
        grid-template-columns: 1fr;
    }
}