/* Barter App Specific Styles */
.simple-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 2rem;
    color: var(--accent);
    padding-top: 5px;
}

.section-content { flex: 1; }

.section-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

#dynamic-context:not(.hidden) {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.helper-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

/* Help Icons & Tooltips */
.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 11px;
    margin-left: 8px;
    cursor: help;
    transition: all 0.2s ease;
    vertical-align: middle;
    color: var(--text-secondary);
    position: relative;
}

.help-icon:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.1);
}

.help-icon:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    width: 220px;
    white-space: normal;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    line-height: 1.4;
    text-align: center;
}

/* Radio Cards */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card .card-content {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    transition: all 0.2s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.radio-card input[type="radio"]:checked + .card-content {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.radio-card:hover .card-content { background: rgba(255, 255, 255, 0.05); }

.btn-calculate {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.btn-calculate:hover { transform: translateY(-2px); box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.6); }

.btn-secondary {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }

.hidden { display: none !important; }

/* Verdict Banners */
.verdict-banner {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid transparent;
}

.verdict-accept { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: var(--success); }
.verdict-consider { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: var(--warning); }
.verdict-reject { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: var(--danger); }

.insight-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.insight-card { display: flex; gap: 1rem; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 1.5rem; }
.insight-icon { font-size: 1.5rem; color: #a78bfa; }
.insight-text h4 { font-size: 1.1rem; margin-bottom: 0.3rem; color: #e2e8f0; }

.prompt-box { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; }
.box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.box-header h4 { color: #a78bfa; display: flex; align-items: center; gap: 0.5rem; }
.prompt-text { font-family: inherit; font-size: 0.95rem; color: #f8fafc; white-space: pre-wrap; background: rgba(15, 23, 42, 0.8); padding: 1.2rem; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); line-height: 1.6; }

.btn-copy { background: rgba(255,255,255,0.1); border: none; color: #f8fafc; width: 40px; height: 40px; border-radius: 10px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.btn-copy:hover { background: var(--accent); }
