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;
}

.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;
}

/* myTournamentClock theme — poker felt + gold accent */
.mtc-navbar {
  background: linear-gradient(90deg, #0b3d2e 0%, #114a38 100%);
}
.mtc-navbar .navbar-brand { color: #ffd700; }
.mtc-navbar .nav-link { color: #e8f5ee; }
.mtc-navbar .nav-link:hover { color: #ffffff; }
.mtc-brand-chip {
  display: inline-block;
  width: 1.6rem; height: 1.6rem; line-height: 1.6rem;
  text-align: center;
  border-radius: 50%;
  background: #ffd700;
  color: #0b3d2e;
  font-weight: 700;
  margin-right: .25rem;
}
.mtc-hero {
  background: radial-gradient(circle at 50% 0%, #114a38 0%, #0b3d2e 70%);
  color: #e8f5ee;
  border-radius: 1rem;
}
.mtc-hero h1 { color: #ffd700; }
/* EULA accept page + admin preview — a bounded, scrollable terms box (PT-00058) */
.eula-scrollbox {
  max-height: 55vh;
  overflow-y: auto;
  background: #ffffff;
}
.eula-scrollbox h2 { font-size: 1.35rem; }
.eula-scrollbox h3 { font-size: 1.1rem; margin-top: 1rem; }

/* Cookie consent banner (PT-00058) — fixed to the bottom, above content, client-side only */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1080;
  background: #0b3d2e;
  color: #e8f5ee;
  border-top: 2px solid #ffd700;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .3);
}
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-consent-text { flex: 1 1 320px; font-size: .9rem; }
.cookie-consent-text a { color: #ffd700; }
.cookie-consent-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
