/* Placeholder before polish style and dark mode */
body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
}

/**** Fix link color with dark bg (Thx Gemini) ****/
/* Base link color - using a brighter cyan or sky blue */
a:link {
    color: #4db8ff; 
    text-decoration: none; /* Optional: removes underline until hover */
}

/* Visited links - slightly muted but still readable */
a:visited {
    color: #b388ff;
}

/* Hover state - make it glow or change color */
a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Active state - when clicked */
a:active {
    color: #ff9e80;
}