@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* --- Base Body Styles --- */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #ffffff; 
    -webkit-tap-highlight-color: transparent; 
}

/* --- BaconFueled Signature Typography --- */
.italic-black { 
    font-weight: 900; 
    font-style: italic; 
    text-transform: uppercase; 
    letter-spacing: -0.05em; 
}

.tabular-nums { 
    font-variant-numeric: tabular-nums; 
}

/* --- UI Transitions --- */
.tab-transition { 
    transition: all 0.15s ease-in-out; 
}

/* --- Custom Scrollbars (from StatVantage) --- */
#search-results::-webkit-scrollbar { 
    width: 4px; 
}
#search-results::-webkit-scrollbar-thumb { 
    background: #fee2e2; /* Tailwind red-50 */
    border-radius: 10px; 
}

/* --- Blog Post Styles (from post.html) --- */
.prose th { 
    background-color: #dc2626; 
    color: white; 
    padding: 0.5rem; 
}
