/* Face the Line Theme – Deep Red Accent */
.headlines {
  color: #ff6b57; /* bright coral-red headlines */
  font-family: 'face-the-line', 'Headline', sans-serif;
}
a:link,
a:visited {
  color: #ff6b57; /* same coral-red as headlines */
}
a:hover {
  color: #ff8f7f; /* brighter coral-red for hover */
}
/* Game theme selected state — add new .selected selectors here as needed */
.wizardChoice.selected,
.hostVoteBtn.selected {
    background: linear-gradient(135deg, #2a2a2a, #4a1310, #731a15) !important;
    border-top: 0.25vw solid #ff6b57 !important;
    border-left: 0.25vw solid #ff6b57 !important;
    border-right: 0.25vw solid #7a2a1a !important;
    border-bottom: 0.25vw solid #7a2a1a !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 #ff6b57 !important;
    border-left: 0.25vw solid #ff6b57 !important;
    border-right: 0.25vw solid #7a2a1a !important;
    border-bottom: 0.25vw solid #7a2a1a !important;
}
@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}