/* 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;
}

.crypto-hero {
    text-align: center;
    margin-bottom: 35px;
}
.crypto-title-main {
    font-size: 2.2rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    margin-bottom: 10px !important;
}
.crypto-subtitle-main {
    font-size: 16px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.crypto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .crypto-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.crypto-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: 14px;
    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: 700;
    outline: none;
    box-sizing: border-box;
    background-color: #fff;
}
.pro-input:focus {
    border-color: #f59e0b;
}

.cc-flex-row {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    margin-top: 15px;
}
.cc-flex-col { flex: 1; }

.crypto-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, #d97706 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.2s;
}
.crypto-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

/* Results Card styling */
.result-card {
    background: #ffffff;
    border: 2px dashed #cbd5e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 16px;
}
.empty-state-text {
    text-align: center;
    color: #64748b;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: #fef3c7;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.crypto-result-display {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 20px 0;
}
#outputDisplayAmount {
    font-size: 38px;
    color: #d97706;
    margin-top: 10px;
    font-weight: 900;
}

.crypto-meta {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f59e0b;
    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;
}