:root {
    /* Backgrounds */
    --bg-primary:   #2d2d2d;
    --bg-secondary: #3c3c3c;
    --bg-dark:      #000;

    /* Text */
    --text-primary: #f0f0f0;
    --text-muted:   #aaa;
    --text-hero:    #fff;

    /* Accent */
    --accent:       #F5A9B8;
    --accent-hover: #f8c0cf;

    /* Borders */
    --border-color: #4c4c4c;
    --border-width: 2px;
    --border:       var(--border-width) solid var(--border-color);

    /* Buttons */
    --button-bg:         #4c4c4c;
    --button-text:       #007BFF;
    --button-hover-bg:   #007BFF;
    --button-hover-text: #fff;

    /* Spacing */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 60px;

    /* Radius */
    --radius:    15px;
    --radius-sm: 8px;

    /* Layout */
    --nav-height: 60px;
    --content-max-width: 900px;

    /* Font */
    --font-family: "Ubuntu Mono", monospace;
}
