/* Global Burning Verse Styles */
body { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Merriweather', serif; }
textarea.code-editor { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; line-height: 1.625; }

.wizard-step { transition: all 0.4s ease-in-out; }
.wizard-step.hidden { display: none; opacity: 0; }
.wizard-step.active { opacity: 1; transform: translateY(0); }
.wizard-step.inactive { opacity: 0.5; pointer-events: none; filter: grayscale(100%); }

/* Spinner */
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Pulse dot */
.pulse-dot {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(214, 163, 84, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(214, 163, 84, 0); }
    100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(214, 163, 84, 0); }
}

/* Custom Scrollbars */
.scroll-grey::-webkit-scrollbar { width: 5px; }
.scroll-grey::-webkit-scrollbar-track { background: transparent; }
.scroll-grey::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.scroll-gold::-webkit-scrollbar { width: 4px; }
.scroll-gold::-webkit-scrollbar-track { background: transparent; }
.scroll-gold::-webkit-scrollbar-thumb { background: #E2B16B; border-radius: 4px; }

.scroll-blue::-webkit-scrollbar { width: 4px; }
.scroll-blue::-webkit-scrollbar-track { background: transparent; }
.scroll-blue::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 4px; }

/* ========================================= */
/* TRANSLATOR WORKSPACE THEME CONTROLS       */
/* ========================================= */

/* TEXT SCALING OVERRIDES */
html[data-text-scale='sm'] .font-serif, html[data-text-scale='sm'] p, html[data-text-scale='sm'] .prose, html[data-text-scale='sm'] .text-sm, html[data-text-scale='sm'] .variant-content { font-size: 14px !important; line-height: 1.6 !important; }
html[data-text-scale='base'] .font-serif, html[data-text-scale='base'] p, html[data-text-scale='base'] .prose, html[data-text-scale='base'] .text-sm, html[data-text-scale='base'] .variant-content { font-size: 18px !important; line-height: 1.7 !important; }
html[data-text-scale='lg'] .font-serif, html[data-text-scale='lg'] p, html[data-text-scale='lg'] .prose, html[data-text-scale='lg'] .text-sm, html[data-text-scale='lg'] .variant-content { font-size: 22px !important; line-height: 1.8 !important; }
html[data-text-scale='xl'] .font-serif, html[data-text-scale='xl'] p, html[data-text-scale='xl'] .prose, html[data-text-scale='xl'] .text-sm, html[data-text-scale='xl'] .variant-content { font-size: 28px !important; line-height: 1.9 !important; }

/* SEPIA THEME (Warm Parchment) */
html[data-theme='sepia'] body,
html[data-theme='sepia'] .bg-slate-50,
html[data-theme='sepia'] .bg-white { 
    background-color: #FDFBF7 !important; 
    border-color: #E6DFCD !important; 
}
html[data-theme='sepia'] .bg-white { background-color: #FFFBF0 !important; }
html[data-theme='sepia'] .text-slate-700, html[data-theme='sepia'] .text-slate-800, html[data-theme='sepia'] .text-slate-900 { color: #4A3C31 !important; }
html[data-theme='sepia'] .text-slate-500, html[data-theme='sepia'] .text-slate-600 { color: #8A7B6E !important; }

/* GREEN THEME (Restful Sage) */
html[data-theme='green'] body,
html[data-theme='green'] .bg-slate-50,
html[data-theme='green'] .bg-white { 
    background-color: #F4F8F5 !important; 
    border-color: #D3DFD6 !important; 
}
html[data-theme='green'] .bg-slate-50 { background-color: #EBF1ED !important; }
html[data-theme='green'] .text-slate-700, html[data-theme='green'] .text-slate-800, html[data-theme='green'] .text-slate-900 { color: #2C3E33 !important; }
html[data-theme='green'] .text-slate-500, html[data-theme='green'] .text-slate-600 { color: #627A6C !important; }

/* DARK THEME (Graphite) */
html[data-theme='dark'] body,
html[data-theme='dark'] .bg-slate-50,
html[data-theme='dark'] .bg-white { 
    background-color: #1E1E1E !important; 
    border-color: #333333 !important; 
}
html[data-theme='dark'] .bg-slate-50 { background-color: #121212 !important; }
html[data-theme='dark'] .text-slate-700, html[data-theme='dark'] .text-slate-800, html[data-theme='dark'] .text-slate-900 { color: #E0E0E0 !important; }
html[data-theme='dark'] .text-slate-500, html[data-theme='dark'] .text-slate-600 { color: #A0A0A0 !important; }
html[data-theme='dark'] .border-slate-200, html[data-theme='dark'] .border-slate-100 { border-color: #2A2A2A !important; }
html[data-theme='dark'] .bg-blue-50, html[data-theme='dark'] .bg-amber-50 { background-color: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; }
