/*
Theme Name: Nicole Sell Identity
Theme URI: https://nicole-sell.com
Author: Nicole Sell
Description: Dark electric-punk minimalism. Radical Pragmatist portfolio.
Version: 3.1
*/

/* Basic Reset */
body {
    background-color: #0a0a0a;
    color: #fafafa;
}

/* --- FORCE PINK ACCENTS --- */

/* 1. Pink Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #18181b; /* Zinc-900 */
}

::-webkit-scrollbar-thumb {
    background-color: #ff007a; /* Electric Punk Pink */
    border-radius: 2px;
    border: 3px solid #18181b; /* Padding around thumb */
}

/* 2. Pink Text Selection */
::selection {
    background-color: #ff007a !important;
    color: #ffffff !important;
}

::-moz-selection {
    background-color: #ff007a !important;
    color: #ffffff !important;
}

/* 3. Force Link Hover Colors */
a:hover {
    color: #ff007a;
}