body.light-mode {
    background-image: url('../assets/bg_light.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    transition: all 0.4s ease;
}

body.dark-mode {
    background-image: url('../assets/bg_dark.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    transition: all 0.4s ease;
}

#desktop {
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px;
    transition: color 0.3s ease;
}

body.light-mode #desktop {
    color: #8c1414;
}

body.dark-mode #desktop {
    color: #e8eaf6;
}

.shortcut {
    color: white;
    text-decoration: none;
    text-transform: lowercase;
}

a.shortcut p{
    width: 30px;
    margin: 0px 0px 0px 0px;
}

body.dark-mode a.shortcut p {
    text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5, 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5;
}

body.light-mode a.shortcut p {
    text-shadow: 2px 2px 0 #ad1457, 2px -2px 0 #ad1457, -2px 2px 0 #ad1457, -2px -2px 0 #ad1457, 2px 0px 0 #ad1457, 0px 2px 0 #ad1457, -2px 0px 0 #ad1457, 0px -2px 0 #ad1457;
}

a.shortcut:visited {
    color: white;
    text-decoration: none;
    text-transform: lowercase;
}
/* Setup overlay and box themed for light-mode and dark-mode */
body.light-mode .setup-overlay {
  background: rgba(252, 228, 236, 0.51);
}

body.dark-mode .setup-overlay {
  background: rgba(26, 34, 126, 0.499);
}

body.light-mode .setup-box {
  background: linear-gradient(135deg, #fff0f6 0%, #f8bbd0 100%);
  color: #ad1457;
  box-shadow: 0 0 15px rgba(240, 98, 146, 0.15);
  border: 2px solid #f48fb1;
}

body.dark-mode .setup-box {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: #e3f2fd;
  box-shadow: 0 0 15px rgba(26, 35, 126, 0.25);
  border: 2px solid #3949ab;
}

body.light-mode #username-input {
  background: #fce4ec;
  color: #ad1457;
  border: 1px solid #f8bbd0;
}

body.dark-mode #username-input {
  background: #283593;
  color: #e3f2fd;
  border: 1px solid #3949ab;
}

body.light-mode #save-username {
  background: linear-gradient(90deg, #f8bbd0 0%, #fce4ec 100%);
  color: #ad1457;
  border: 1px solid #f8bbd0;
  box-shadow: 0 2px 6px rgba(240, 98, 146, 0.08);
}

body.dark-mode #save-username {
  background: linear-gradient(90deg, #283593 0%, #1a237e 100%);
  color: #e3f2fd;
  border: 1px solid #3949ab;
  box-shadow: 0 2px 6px rgba(26, 35, 126, 0.15);
}

/* Keep original layout and spacing */
.setup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.setup-box {
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
}

.setup-box h2 {
  margin-top: 0;
}

#username-input {
  padding: 8px;
  font-size: 16px;
  margin-top: 10px;
  width: 80%;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

#save-username {
  margin-top: 15px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

span#greeting {
    position: fixed;
    top: 10px;
    right: 20px;
    font-size: 40pt;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
    color: #ffffff;
    z-index: 100;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

body.light-mode span#greeting {
    text-shadow: 0 1px 3px rgba(136, 14, 79, 0.2);
}

body.dark-mode span#greeting {
    text-shadow: 0 1px 3px rgba(26, 35, 126, 0.3);
}