/* Core Layout & Typography */
main.container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: #1e293b !important;
    background-color: #f8fafc;
    padding: 40px 15px !important;
    border-radius: 16px;
}

.url-hero {
    text-align: center;
    margin-bottom: 35px;
}
.url-title-main {
    font-size: 2.2rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    margin-bottom: 10px !important;
}
.url-subtitle-main {
    font-size: 16px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.url-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .url-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.url-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.control-label {
    font-weight: 700 !important;
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.pro-input:focus {
    border-color: #10b981;
}

.url-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700 !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: all 0.2s;
}
.url-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Results Display Styling */
.result-card {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    padding: 30px;
    box-sizing: border-box;
}
.empty-state-text {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: #ecfdf5;
    color: #059669;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: left;
    width: fit-content;
}

.url-meta {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FAQ Styles */
.faq-section { max-width: 850px; margin: 60px auto 30px auto; }
.faq-main-title { font-size: 24px !important; font-weight: 850 !important; color: #0f172a; margin-bottom: 30px; text-align: center; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 22px; margin-bottom: 16px; }
.faq-question { font-size: 16.5px !important; font-weight: 750 !important; color: #0f172a; margin-top: 0; margin-bottom: 10px; }
.faq-answer { font-size: 14.5px; color: #475569; line-height: 1.6; margin: 0; }