/* Dark / Light Mode */
:root{
--bg:#ffffff;
--text:#222;
--card:#ffffff;
}
body{
background:var(--bg);
color:var(--text);
transition:background .3s,color .3s;
}
.card{background:var(--card);}
body.dark-mode{
--bg:#121212;
--text:#f2f2f2;
--card:#1f1f1f;
}
.theme-switch{
position:fixed;
right:20px;
bottom:20px;
z-index:9999;
cursor:pointer;
padding:10px 14px;
border-radius:50px;
background:#0d6efd;
color:#fff;
}
