/* assets/css/pages/export-guide.css - Export Guide Styles */

:root {
    --eg-bg: #09090b;
    /* zinc-950 */
    --eg-panel: rgba(24, 24, 27, 0.7);
    /* zinc-900 */
    --eg-border: rgba(255, 255, 255, 0.1);
    --eg-primary: #3b82f6;
    /* blue-500 */
    --eg-success: #10b981;
    --eg-warning: #f59e0b;
    --eg-text: #f8fafc;
}

.eg-page {
    background-color: var(--eg-bg);
    background-image:
        radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.1), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.05), transparent 30%);
    min-height: 80vh;
    padding: 120px 0 80px 0;
    color: var(--eg-text);
}

.eg-header {
    margin-bottom: 20px;
}

.eg-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.eg-title span {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eg-desc {
    color: #a1a1aa;
    /* zinc-400 */
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
}

/* PANELS */
.eg-panel {
    background: var(--eg-panel);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid var(--eg-border);
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.panel-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

/* FORMS */
.eg-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.eg-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.eg-select:focus {
    outline: none;
    border-color: var(--eg-primary);
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.eg-select option {
    background: #18181b;
    color: white;
}

.eg-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.3s;
}

.eg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.custom-alert-info {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
    font-size: 0.9rem;
    border-radius: 12px;
}

/* RESULTS PANEL */
.eg-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.custom-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #d4d4d8;
    line-height: 1.5;
}

.custom-ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--eg-success);
    font-size: 0.9rem;
}

.insight-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--eg-primary);
    border-radius: 0 16px 16px 0;
    padding: 25px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .eg-page {
        padding: 140px 0 50px 0;
    }

    .eg-title {
        font-size: 2.2rem;
    }

    .eg-panel {
        padding: 25px;
    }
}