/* ==========================================================================
   1. REAL GOOGLE DARK SYSTEM THEME CONFIGURATION & RESET
   ========================================================================== */
:root {
    --bg-main: #000000;               /* Absolute Black Background Layer */
    --surface-card: #1e1f20;          /* Google's Dark Mode Material Container Gray */
    --surface-card-inner: #000000;   
    
    /* Font Color Hierarchies */
    --text-primary: #ffffff;         
    --text-secondary: #e3e3e3;       
    --text-muted: #8ab4f8;           /* High-contrast brand blue */
    --text-date: #aaaeb3;            /* Mid-tone gray metadata */
    --border-color: #3c4043;         /* Standard layout line breaks */
    
    --google-blue: #1a73e8;          
    --google-link-blue: #8ab4f8;     
    
    --font-google: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-google);
    background-color: var(--bg-main);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
