/* Backlink Checker Specific UI */

.hidden { display: none !important; }
.text-success { color: #10b981 !important; }
.text-primary { color: var(--primary) !important; font-weight: 800; }

.bc-input-section {
    margin-bottom: 30px;
}

/* Loader Styles */
.bc-loader-box {
    text-align: center;
    padding: 50px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.bc-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(37, 99, 235, 0.2);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.bc-loader-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-main); margin-bottom: 5px; }
.bc-loader-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; }

.bc-progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: var(--bg-input);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.bc-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Results Area */
.bc-results-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    animation: fadeIn 0.4s ease;
}

.bc-results-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.bc-results-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.bc-results-header p { color: var(--text-muted); font-size: 1rem; margin: 0; }

.bc-action-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bc-action-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-action-card:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.1);
}

.bc-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.bc-card-info { flex-grow: 1; text-align: left; }
.bc-card-info h4 { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 700; color: var(--text-main); }
.bc-card-info p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.bc-ext { color: var(--text-muted); font-size: 1.1rem; transition: 0.3s; }
.bc-action-card:hover .bc-ext { color: var(--primary); }

/* Dark Mode Fixes */
[data-theme="dark"] .bc-card-icon { background: var(--bg-input); border-color: var(--border); }
