html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Powerball Theme Styles */
.powerball-navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.powerball-logo {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.powerball-logo-large {
  font-size: 4rem;
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.powerball-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section {
  padding: 3rem 0;
  color: #fff;
}

.powerball-card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.powerball-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.powerball-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.powerball-btn-outline {
  border: 2px solid #667eea;
  color: #667eea;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.2s;
}

.powerball-btn-outline:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.feature-icon {
  font-size: 3rem;
}

.powerball-footer {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3rem;
}

.powerball-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.powerball-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-brand {
  display: block;
  background-image: url(/Images/pb.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 160px;
  height: 37px;
}

.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  clip: rect(0px, 0px, 0px, 0px) !important;
  padding: 0px !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border-width: 0px !important;
  border-style: initial !important;
  border-color: initial !important;
  border-image: initial !important;
}

.card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}