/* Set the Divide Theme – Logo Yellow Accent */
.headlines {
  color: #FAEA2C; /* logo yellow headlines */
  font-family: 'set-the-divide', 'Headline', sans-serif;
}
a:link,
a:visited {
  color: #FAEA2C; /* same logo yellow as headlines */
}
a:hover {
  color: #FCF176; /* brighter, lighter yellow for hover */
}
/* Game theme selected state — add new .selected selectors here as needed */
.wizardChoice.selected,
.hostVoteBtn.selected {
    background: linear-gradient(135deg, #2a2a2a, #4a4310, #736c15) !important;
    border-top: 0.25vw solid #FAEA2C !important;
    border-left: 0.25vw solid #FAEA2C !important;
    border-right: 0.25vw solid #7a7218 !important;
    border-bottom: 0.25vw solid #7a7218 !important;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, select:active, div.checkboxGroup label:focus, div.checkboxGroup label:active, textarea:focus, input[type="number"], input[type="datetime-local"]:focus {
    border-top: 0.25vw solid #FAEA2C !important;
    border-left: 0.25vw solid #FAEA2C !important;
    border-right: 0.25vw solid #7a7218 !important;
    border-bottom: 0.25vw solid #7a7218 !important;
}
@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}