/* ==========================================================================
   1. REAL GOOGLE DARK SYSTEM THEME CONFIGURATION & RESET
   ========================================================================== */
:root {
    --bg-main: #000000;
    --surface-card: #1e1f20;
    --surface-card-inner: #000000;

    --text-primary: #ffffff;
    --text-secondary: #e3e3e3;
    --text-muted: #8ab4f8;
    --text-date: #aaaeb3;
    --border-color: #3c4043;

    --google-blue: #1a73e8;
    --google-link-blue: #8ab4f8;

    --font-google: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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;
}
