/* Para debugar o que está passando do layout:
        * {
        outline: 1px solid red;
        } 
*/

html, body {
/*trava o scroll lateral*/
  overflow-x: hidden;
}

body {  
    /*{background-image: url("backgg.jpg");}*/
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(
      75% 130% at 50% 8%,
      rgba(25, 49, 102, 0.52) 0%,
      rgba(13, 31, 72, 0.2) 46%,
      rgba(6, 17, 44, 0) 75%
    ),
    linear-gradient(
      90deg,
      #010a2a 0%,
      #061a4a 50%,
      #010a2a 100%
    ),
    linear-gradient(
      180deg,
      #020d31 0%,
      #041341 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-position: center top, center center, center center;
}

.fdq-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px;
  background: #031033;
  border-bottom: 1px solid rgba(99, 126, 186, 0.22);
  box-shadow: 0 8px 18px rgba(1, 8, 26, 0.45);
  pointer-events: none;
}

.fdq-menu-button {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  border-radius: 10px;
  pointer-events: auto;
}

.fdq-menu-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.55);
}

.fdq-offcanvas-menu {
  background: #031033;
  color: #fff;
  top: 76px;
  height: calc(100vh - 76px);
  width: min(80vw, 320px);
  border-left: 1px solid rgba(108, 138, 224, 0.18);
  box-shadow: -18px 0 36px rgba(0, 0, 0, 0.42);
  z-index: 1080;
}

.offcanvas-backdrop {
  z-index: 1070;
}

.fdq-menu-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 12px 16px;
}

.fdq-menu-section {
  display: grid;
  gap: 6px;
}

.fdq-menu-section-label {
  padding-left: 4px;
  color: rgba(210, 221, 248, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fdq-menu-group {
  display: grid;
  gap: 6px;
}

.fdq-menu-group-toggle {
  width: 100%;
  border: none;
  text-align: left;
}

.fdq-menu-group-toggle .fdq-menu-card-arrow {
  transition: transform 0.2s ease;
}

.fdq-menu-group-toggle[aria-expanded="true"] .fdq-menu-card-arrow {
  transform: rotate(180deg);
}

.fdq-menu-group-panel {
  display: grid;
  gap: 6px;
  padding-left: 10px;
}

.fdq-menu-card,
.fdq-submenu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(10, 25, 67, 0.88);
  border: 1px solid rgba(84, 110, 187, 0.18);
  color: #eaf1ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(41, 69, 133, 0.12);
}

.fdq-menu-card:hover,
.fdq-submenu-card:hover {
  color: #fff;
  background: rgba(13, 31, 82, 0.95);
}

.fdq-menu-card.is-active {
  border-color: rgba(82, 121, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(101, 137, 255, 0.22),
    0 0 0 1px rgba(44, 79, 178, 0.14);
}

.fdq-submenu-card {
  min-height: 40px;
  padding: 0 10px 0 12px;
  border-radius: 12px;
  background: rgba(8, 21, 57, 0.72);
  font-size: 0.82rem;
}

.fdq-submenu-card.is-active {
  border-color: rgba(82, 121, 255, 0.48);
}

.fdq-menu-card-icon,
.fdq-menu-support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(23, 58, 145, 0.56), rgba(8, 22, 67, 0.92));
  border: 1px solid rgba(92, 128, 231, 0.16);
  color: #5d8cff;
  font-size: 1.02rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fdq-menu-card-icon-danger {
  background: linear-gradient(160deg, rgba(96, 28, 54, 0.72), rgba(54, 14, 28, 0.92));
  color: #ff5f79;
  border-color: rgba(255, 107, 133, 0.14);
}

.fdq-menu-card-text,
.fdq-submenu-card-text {
  flex: 1;
  min-width: 0;
}

.fdq-menu-card-arrow {
  color: rgba(228, 236, 255, 0.84);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.fdq-menu-card-danger {
  width: 100%;
  border: 1px solid rgba(255, 96, 122, 0.24);
  background: rgba(53, 15, 34, 0.42);
  color: #ffd8e0;
  text-align: left;
}

.fdq-menu-card-danger:hover {
  background: rgba(74, 18, 42, 0.52);
  color: #fff;
}

.fdq-menu-support-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 0 12px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(11, 30, 82, 0.92), rgba(7, 22, 62, 0.96));
  border: 1px solid rgba(62, 99, 205, 0.16);
  box-shadow: inset 0 0 0 1px rgba(44, 79, 178, 0.1);
}

.fdq-menu-support-card:hover {
  color: #fff;
}

.fdq-menu-support-icon {
  color: #5d8cff;
}

.fdq-menu-support-copy {
  display: grid;
  gap: 2px;
}

.fdq-menu-support-copy strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.fdq-menu-support-copy span {
  color: #5d8cff;
  font-size: 0.76rem;
}

.fdq-logout-modal {
  background: linear-gradient(170deg, #162a55 0%, #0d1a3a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.fdq-logout-modal .modal-title {
  font-weight: 700;
}

.fdq-logout-modal .modal-body {
  font-size: 1.05rem;
  color: #e7eeff;
}

.fdq-modal-btn {
  min-width: 84px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.fdq-modal-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.fdq-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.fdq-modal-btn-danger {
  background: linear-gradient(120deg, #d10f3c, #f51f52);
  color: #fff;
}

.fdq-modal-btn-danger:hover {
  background: linear-gradient(120deg, #de1545, #ff2a59);
  color: #fff;
}

.modal {
  z-index: 2000;
}

.modal-backdrop {
  z-index: 1990;
}

.top-brand-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1060;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 16px;
  pointer-events: none;
}

.top-brand-line {
  display: none;
}

.top-brand-logo-link {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.top-brand-logo {
  height: 68px;
  width: auto;
  padding: 0 4px;
}

.main-content {
  padding-top: 92px;
}

.auth-page-content {
  padding: 0 !important;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(180deg, rgba(5, 10, 28, 0.18), rgba(5, 10, 28, 0.58)),
    url("../img/bg-mobile.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.auth-page-body {
  background: #020d31 !important;
}

.cadastro-hero {
  position: relative;
  min-height: 100dvh;
  padding: 24px 16px 30px;
}

.auth-screen-hero {
  width: 100%;
  min-height: 100dvh;
  flex: 1;
  border-radius: 0;
  margin: 0;
  background: transparent;
  overflow: hidden;
}

.auth-screen-hero::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 560px);
  height: 260px;
  background: radial-gradient(
    circle at center,
    rgba(187, 210, 255, 0.48) 0%,
    rgba(134, 168, 239, 0.22) 34%,
    rgba(44, 75, 146, 0.08) 62%,
    rgba(8, 18, 44, 0) 100%
  );
  filter: blur(1.5px);
  pointer-events: none;
  z-index: 1;
}

.auth-screen-hero .cadastro-card-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(18px, env(safe-area-inset-left)) 0 max(18px, env(safe-area-inset-right));
}

.auth-screen-hero .cadastro-card {
  width: calc(100% - 36px);
  max-width: 400px;
  padding: 18px 13px 14px;
  margin: 0 auto;
}

.auth-page-logo-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.auth-page-logo {
  width: min(52vw, 230px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.cadastro-card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.cadastro-card {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  padding: 26px 18px 20px;
  background: linear-gradient(160deg, rgba(17, 35, 80, 0.93), rgba(10, 23, 58, 0.95));
  border: 1px solid rgba(130, 157, 216, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.cadastro-title {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin: 0 0 24px;
  font-weight: 700;
}

.section-title-divider {
  display: block;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff243d, #ff5069);
}

.cadastro-form {
  display: grid;
  gap: 12px;
}

.fdq-field-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(16, 30, 64, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 52px;
}

.fdq-field-group i {
  color: #a9b6d6;
  font-size: 1.1rem;
}

.fdq-field {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #f1f5ff;
}

.fdq-field::placeholder {
  color: #9cabc9;
}

.fdq-phone-group {
  gap: 12px;
}

.fdq-country-prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 76px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.fdq-country-code {
  color: #e8efff;
  font-weight: 700;
  font-size: 0.95rem;
}

.fdq-country-flag {
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fdq-country-flag.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fdq-photo-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: rgba(16, 30, 64, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  margin-top: 4px;
}

.fdq-avatar-placeholder {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(140deg, #f4f6fb, #c6cfe3);
  display: grid;
  place-items: center;
  color: #203a68;
  font-size: 1.8rem;
  border: 3px solid rgba(255, 255, 255, 0.75);
}

.fdq-photo-fields {
  flex: 1;
}

.fdq-photo-label {
  color: #e8efff;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.fdq-photo-input {
  color: #fff;
  width: 100%;
}

.fdq-photo-input::file-selector-button {
  border: none;
  border-radius: 10px;
  background: #d11f42;
  color: #fff;
  padding: 8px 12px;
  margin-right: 10px;
  font-weight: 600;
}

.fdq-position-title {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 6px;
  font-weight: 700;
}

.fdq-position-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(20, 25, 53, 0.92);
  border-radius: 18px;
  padding: 4px;
}

.fdq-position-option {
  margin: 0;
  cursor: pointer;
}

.fdq-position-input {
  display: none;
}

.fdq-position-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #d5def5;
  padding: 10px 6px;
  border-radius: 14px;
  font-weight: 600;
}

.fdq-position-input:checked + .fdq-position-content {
  background: linear-gradient(120deg, #c3113a, #ff2452);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 37, 84, 0.3);
}

.ataque-icone {
  color: #ffd23f;
}

.fdq-submit {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(120deg, #d10f3c, #f51f52);
  color: #fff;
  padding: 11px 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(245, 31, 82, 0.28);
}

.fdq-submit:hover {
  background: linear-gradient(120deg, #de1545, #ff2a59);
}

.fdq-login-link {
  color: #dce6ff;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
}

.fdq-auth-links {
  display: grid;
  gap: 4px;
  margin-top: 2px;
}

.fdq-login-link:hover {
  color: #fff;
}

.fdq-auth-helper-text {
  margin: -8px 0 18px;
  color: #dce6ff;
  text-align: center;
  line-height: 1.5;
}

.fdq-error {
  color: #ff9eb0;
  font-size: 0.9rem;
  padding-left: 6px;
  margin-top: -4px;
}

.fdq-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce6ff;
  margin-top: 2px;
  margin-bottom: 4px;
  padding-left: 6px;
}

.fdq-check-row .form-check-input {
  border-color: rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.08);
}

.fdq-check-row .form-check-input:checked {
  background-color: #f51f52;
  border-color: #f51f52;
}

.fdq-check-row .form-check-label {
  margin: 0;
}

.fdq-secondary-cta {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  color: #dce6ff;
  text-align: center;
}

.fdq-secondary-cta-action,
.fdq-secondary-cta-links {
  display: grid;
}

.fdq-secondary-cta-links {
  gap: 4px;
}

.fdq-secondary-link-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #eaf1ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 11px 12px;
  font-weight: 600;
}

.fdq-secondary-link-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.fdq-secondary-link-btn:disabled {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(234, 241, 255, 0.54);
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
}

.fdq-danger-link-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(201, 88, 106, 0.42);
  color: #ffdbe0;
  background: rgba(126, 22, 39, 0.24);
  border-radius: 12px;
  padding: 11px 12px;
  font-weight: 600;
}

.fdq-danger-link-btn:hover:not(:disabled) {
  color: #fff2f4;
  background: rgba(153, 28, 48, 0.34);
}

.fdq-danger-link-btn:disabled {
  border-color: rgba(201, 88, 106, 0.24);
  color: rgba(255, 219, 224, 0.58);
  background: rgba(126, 22, 39, 0.14);
  cursor: default;
}

.admin-panel-hero {
  min-height: calc(100vh - 120px);
}

.admin-panel-card {
  max-width: 640px;
}

.admin-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-panel-title {
  font-size: 1.9rem;
  margin-bottom: 0;
}

.admin-head-link {
  font-size: 0.92rem;
  padding: 9px 10px;
}

.admin-user-list {
  display: grid;
  gap: 12px;
}

.admin-user-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 27, 63, 0.66);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.admin-user-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px;
  align-items: start;
}

.admin-user-label {
  color: #9fb1d8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-user-value {
  color: #e7eeff;
  font-size: 0.95rem;
  line-height: 1.25;
}

.admin-user-value-audit {
  color: #8beeff;
}

.admin-break {
  overflow-wrap: anywhere;
}

.admin-user-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.admin-action-btn {
  min-width: 92px;
}

.admin-empty {
  color: #dce6ff;
  font-size: 0.95rem;
  margin: 0;
}

.checkin-page-shell {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 0 12px;
}

.checkin-page-head {
  display: grid;
  gap: 12px;
  margin: 0 auto 20px;
  max-width: 860px;
}

.generic-page-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 8vw, 2.7rem);
  line-height: 1.02;
  text-align: left;
}

.checkin-page-head .section-title-divider {
  margin: 0;
}

.checkin-panel-card {
  max-width: 900px;
}

.checkin-panel-card-wide {
  max-width: 1080px;
}

.checkin-panel-subtitle {
  margin: 0;
  max-width: 720px;
  color: #dce6ff;
  text-align: justify;
  font-size: clamp(0.82rem, 1.55vw, 0.94rem);
  line-height: 1.45;
}

.checkin-session-list {
  display: grid;
  gap: 14px;
}

.checkin-session-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 118, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(8, 20, 58, 0.86), rgba(5, 16, 48, 0.92)),
    rgba(7, 19, 53, 0.94);
  border-radius: 28px;
  padding: 22px 18px 18px;
  display: grid;
  gap: 16px;
  box-shadow: inset 0 0 0 1px rgba(92, 114, 220, 0.08), 0 24px 50px rgba(0, 0, 0, 0.22);
}

.checkin-session-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(56, 89, 184, 0.14), rgba(0, 0, 0, 0) 42%),
    radial-gradient(circle at bottom left, rgba(29, 64, 160, 0.08), rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
}

.checkin-session-card > * {
  position: relative;
  z-index: 1;
}

.checkin-session-top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.checkin-session-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(48, 84, 188, 0.5), rgba(13, 34, 92, 0.82));
  border: 1px solid rgba(113, 147, 236, 0.16);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.checkin-session-icon i {
  font-size: 2rem;
}

.checkin-session-heading {
  display: grid;
  gap: 6px;
}

.checkin-session-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.38rem, 3.8vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.checkin-session-window {
  margin: 0;
  color: #bbcaeb;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
}

.admin-game-session-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-game-session-title-wrap {
  min-width: 0;
  flex: 1 1 auto;
  padding-left: 4px;
}

.admin-game-session-title {
  font-size: clamp(1.18rem, 2.9vw, 1.52rem);
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32em;
  flex-wrap: wrap;
}

.admin-game-session-weekday,
.admin-game-session-date {
  display: inline-block;
}

.admin-game-session-head .checkin-badge {
  flex-shrink: 0;
  align-self: flex-start;
}

.admin-game-session-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.admin-game-session-actions > a,
.admin-game-session-actions > button {
  min-width: 0;
}

.admin-game-session-actions .checkin-session-link {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  white-space: nowrap;
}

.admin-game-session-cancel {
  grid-column: 1 / -1;
}

.checkin-status-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 18px;
  border-radius: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(116, 180, 255, 0.18);
}

.checkin-status-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(3, 14, 43, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  font-size: 1.3rem;
}

.checkin-status-banner-text {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}

.checkin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.checkin-stat-box {
  min-width: 0;
  padding: 0 18px;
  display: grid;
  gap: 10px;
  min-height: 0;
}

.checkin-stat-box + .checkin-stat-box {
  border-left: 1px solid rgba(120, 150, 226, 0.18);
}

.checkin-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.checkin-stat-label {
  color: rgba(208, 220, 248, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkin-stat-value {
  color: #ffffff;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1;
  font-weight: 800;
}

.checkin-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 116, 216, 0.22);
  background: rgba(11, 30, 86, 0.46);
  color: #6f90ff;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.checkin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkin-badge-scheduled {
  background: rgba(105, 131, 192, 0.2);
  color: #dce6ff;
}

.checkin-badge-open {
  background: linear-gradient(90deg, #27c8dd, #49e4c6);
  color: #042858;
  border-color: rgba(73, 228, 198, 0.28);
}

.checkin-status-banner.checkin-badge-open .checkin-status-banner-icon {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(4, 40, 88, 0.14);
  color: #042858;
}

.checkin-status-banner.checkin-badge-open .checkin-status-banner-text {
  color: #042858;
}

.checkin-badge-confirmed,
.checkin-badge-attended {
  background: linear-gradient(180deg, rgba(79, 149, 240, 0.18), rgba(46, 103, 214, 0.16));
  color: #a9d8ff;
}

.checkin-badge-closed,
.checkin-badge-waitlist {
  background: linear-gradient(180deg, rgba(188, 136, 31, 0.94), rgba(158, 113, 19, 0.94));
  color: #ffe18a;
}

.checkin-badge-in-progress {
  background: linear-gradient(180deg, rgba(13, 151, 124, 0.94), rgba(8, 118, 98, 0.94));
  color: #d9fff5;
}

.checkin-badge-cancelled,
.checkin-badge-no-show {
  background: linear-gradient(180deg, rgba(185, 47, 68, 0.94), rgba(152, 28, 46, 0.94));
  color: #ffb0b7;
}

.checkin-badge-finished {
  background: linear-gradient(180deg, rgba(55, 104, 214, 0.94), rgba(35, 79, 180, 0.94));
  color: #b4d4ff;
}

.checkin-session-actions,
.checkin-admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checkin-admin-actions {
  flex-wrap: nowrap;
}

.checkin-admin-actions > form,
.checkin-admin-actions > button {
  flex: 1 1 0;
  min-width: 0;
}

.checkin-admin-actions .admin-action-btn {
  width: 100%;
}

.checkin-action-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(87, 116, 216, 0.58);
  background: rgba(7, 19, 53, 0.52);
}

.checkin-action-split-form {
  margin: 0;
}

.checkin-action-split-divider {
  width: 1px;
  background: rgba(112, 142, 220, 0.48);
}

.checkin-action-split-btn {
  width: 100%;
  min-height: 62px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #eef4ff;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.checkin-action-split-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkin-action-split-btn-inner-stacked {
  align-items: flex-start;
}

.checkin-action-split-btn-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.checkin-action-split-btn-label {
  white-space: nowrap;
}

.checkin-action-split-btn-meta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 240, 241, 0.78);
  margin-top: 3px;
}

.checkin-action-split-btn-inner i {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.checkin-action-split-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.checkin-action-split-btn:disabled {
  color: rgba(210, 223, 248, 0.46);
  background: transparent;
  cursor: default;
}

.checkin-action-split-primary:not(:disabled) {
  color: #ffffff;
  background: linear-gradient(90deg, #27c8dd, #49e4c6);
  box-shadow: inset 0 0 0 1px rgba(116, 242, 229, 0.12);
}

.checkin-action-split-secondary:not(:disabled) {
  color: #fff0f1;
  background: linear-gradient(120deg, rgba(209, 15, 60, 0.92), rgba(245, 31, 82, 0.92));
}

.checkin-action-split-secondary:not(:disabled):hover {
  background: linear-gradient(120deg, rgba(222, 21, 69, 0.96), rgba(255, 42, 89, 0.96));
}

.checkin-action-split-btn.is-selected {
  background: linear-gradient(120deg, rgba(39, 200, 221, 0.22), rgba(73, 228, 198, 0.18));
  color: #fff0f1;
  box-shadow: inset 0 0 0 1px rgba(116, 242, 229, 0.16);
}

.checkin-action-split-btn.is-selected.is-selected-danger {
  background: linear-gradient(120deg, rgba(185, 47, 68, 0.22), rgba(152, 28, 46, 0.2));
  color: #ffd8dd;
  box-shadow: inset 0 0 0 1px rgba(255, 149, 161, 0.16);
}

.checkin-action-split-btn.is-selected:disabled {
  color: #fff0f1;
  background: inherit;
  opacity: 1;
}

.checkin-action-split-btn.is-selected.is-selected-danger:disabled {
  color: #ffd8dd;
}

.checkin-action-btn {
  width: 100%;
  min-height: 62px;
  border-radius: 18px;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
}

.checkin-action-primary {
  background: linear-gradient(120deg, #2b66d8, #4e90ff);
  color: #fff;
  border: none;
}

.checkin-action-primary:hover {
  color: #fff;
}

.checkin-action-secondary {
  background: rgba(7, 19, 53, 0.48);
  border: 2px solid rgba(87, 116, 216, 0.58);
  color: #eef4ff;
}

.checkin-action-secondary:hover {
  color: #fff;
  background: rgba(17, 32, 78, 0.82);
}

.checkin-help-text {
  margin: 0;
  color: #dce6ff;
  font-size: 1rem;
}

.checkin-session-link {
  width: 100%;
}

.team-draw-shell {
  width: min(100%, 1080px);
}

.team-draw-page {
  width: 100%;
  display: grid;
  gap: 28px;
  padding: 6px 0 0;
}

.team-draw-page-head {
  display: grid;
  gap: 14px;
}

.team-draw-overview {
  display: grid;
  gap: 12px;
}

.team-draw-session-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 0;
}

.team-draw-session-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.team-draw-session-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(160deg, rgba(48, 84, 188, 0.3), rgba(13, 34, 92, 0.42));
  color: #ffffff;
}

.team-draw-session-icon i {
  font-size: 1.9rem;
}

.team-draw-session-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.team-draw-session-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
}

.team-draw-session-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.08rem, 2.8vw, 1.42rem);
  line-height: 1.08;
  flex: 1 1 auto;
}

.team-draw-session-weekday,
.team-draw-session-date {
  display: block;
}

.team-draw-status-banner {
  max-width: 100%;
  flex-shrink: 0;
}

.team-draw-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.team-draw-stat {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 0 18px;
}

.team-draw-stat:first-child {
  padding-left: 10px;
}

.team-draw-stat + .team-draw-stat {
  border-left: 1px solid rgba(120, 150, 226, 0.18);
}

.team-draw-stat-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(219, 229, 249, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  flex-wrap: wrap;
}

.team-draw-stat-heading i {
  color: #6f90ff;
  font-size: 1rem;
  flex-shrink: 0;
}

.team-draw-stat-value {
  color: #ffffff;
  font-size: clamp(1.35rem, 3.3vw, 2rem);
  line-height: 1;
  font-weight: 800;
}

.team-draw-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin: 4px 0 8px;
}

.team-draw-action-form {
  margin: 0;
  min-width: 0;
}

.team-draw-action-btn {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  line-height: 1.1;
}

.team-draw-action-btn-secondary {
  min-width: 0;
}

.team-draw-copy-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 2px 0 10px;
}

.team-draw-copy-label {
  color: #dce6ff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
}

.team-draw-copy-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf1ff;
  flex-shrink: 0;
}

.team-draw-copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.team-draw-copy-btn i {
  font-size: 1rem;
  line-height: 1;
}

.team-draw-copy-btn.is-copied {
  border-color: rgba(139, 238, 255, 0.42);
  background: rgba(139, 238, 255, 0.12);
  color: #8beeff;
}

.team-draw-copy-source {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.team-draw-position-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 150, 226, 0.18);
  align-items: stretch;
}

.team-draw-position-card {
  padding: 0 12px 8px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
}

.team-draw-position-card:first-child {
  padding-left: 0;
}

.team-draw-position-card + .team-draw-position-card {
  border-left: 1px solid rgba(120, 150, 226, 0.18);
}

.team-draw-position-head {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.team-draw-position-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.team-draw-position-icon-emoji {
  display: inline-block;
  transform: translateY(-1px);
}

.team-draw-position-label {
  display: block;
  color: #dbe7ff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.team-draw-position-value {
  display: block;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 800;
}

.team-draw-position-bar {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(146, 163, 212, 0.18);
  overflow: hidden;
}

.team-draw-position-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.team-draw-position-card-goalkeepers .team-draw-position-icon {
  color: #22c55e;
}

.team-draw-position-card-goalkeepers .team-draw-position-bar-fill {
  background: linear-gradient(90deg, #22c55e, #4ee287);
}

.team-draw-position-card-defenders .team-draw-position-icon {
  color: #ff7b32;
}

.team-draw-position-card-defenders .team-draw-position-bar-fill {
  background: linear-gradient(90deg, #ff5a36, #ff9a3d);
}

.team-draw-position-card-attackers .team-draw-position-icon {
  color: #ffcf44;
}

.team-draw-position-card-attackers .team-draw-position-bar-fill {
  background: linear-gradient(90deg, #ffb703, #ffcf44);
}

.team-draw-position-card-unassigned .team-draw-position-icon {
  color: #62a0ff;
}

.team-draw-position-card-unassigned .team-draw-position-bar-fill {
  background: linear-gradient(90deg, #2f6cff, #62a0ff);
}

.team-draw-info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  align-items: start;
  border-top: 1px solid rgba(120, 150, 226, 0.18);
  border-bottom: 1px solid rgba(120, 150, 226, 0.18);
}

.team-draw-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 200, 221, 0.16);
  color: #9beffd;
  font-size: 1rem;
}

.team-draw-info-copy strong {
  display: block;
  color: #ffffff;
}

.team-draw-info-copy p {
  margin: 6px 0 0;
  color: #dce6ff;
  line-height: 1.5;
}

.team-draw-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-draw-team-block {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(166, 194, 255, 0.38);
}

.team-draw-team-head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.team-draw-team-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.team-draw-team-heading > div {
  text-align: center;
}

.team-draw-team-shield {
  position: relative;
  width: 36px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8beeff;
}

.team-draw-team-shield i {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}

.team-draw-team-shield-code {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #031033;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.team-draw-team-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
}

.team-draw-team-count {
  display: inline-block;
  margin-top: 4px;
  color: #9cb1dd;
  font-size: 0.84rem;
}

.team-draw-player-list {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(166, 194, 255, 0.38);
}

.team-draw-player-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(120, 150, 226, 0.14);
}

.team-draw-player-row:last-child {
  border-bottom: none;
}

.team-draw-player-row-placeholder {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.team-draw-player-row-manual {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.team-draw-player-row-with-actions {
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.team-draw-player-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 145, 211, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.team-draw-player-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-draw-player-copy {
  min-width: 0;
}

.team-draw-player-name {
  display: block;
  color: #ffffff;
  font-size: 0.82rem;
}

.team-draw-player-name-placeholder {
  color: rgba(220, 230, 255, 0.72);
}

.team-draw-player-meta {
  display: block;
  margin-top: 3px;
  color: #9cb1dd;
  font-size: 0.82rem;
}

.team-draw-player-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.team-draw-status-form {
  margin: 0;
}

.team-draw-status-btn {
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(154, 183, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #e8f1ff;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.team-draw-status-btn-present {
  border-color: rgba(61, 214, 156, 0.3);
  color: #bff8e3;
}

.team-draw-status-btn-present.is-active {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(61, 214, 156, 0.62);
  color: #ffffff;
}

.team-draw-status-btn-missed {
  border-color: rgba(255, 122, 122, 0.28);
  color: #ffd0d0;
}

.team-draw-manual-add-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(111, 144, 255, 0.26);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #8beeff;
  flex-shrink: 0;
  justify-self: end;
  align-self: center;
}

.team-draw-manual-add-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.team-draw-manual-add-btn i {
  font-size: 0.92rem;
  line-height: 1;
}

.team-draw-team-empty {
  margin: 0;
  color: #9cb1dd;
  line-height: 1.5;
}

.signup-page-shell {
  max-width: 1080px;
}

.signup-page-content {
  display: grid;
  gap: 18px;
}

.signup-session-header {
  display: grid;
  gap: 10px;
}

.signup-session-top {
  grid-template-columns: 72px minmax(0, 1fr);
}

.signup-session-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.signup-session-title-row .checkin-session-title {
  font-size: clamp(1.18rem, 3.1vw, 1.6rem);
  flex: 1 1 auto;
  min-width: 0;
}

.signup-session-title-split {
  display: block;
}

.signup-session-title-weekday {
  margin-right: 0.9rem;
}

.signup-session-title-date {
  display: inline;
  margin-left: 0;
  font-size: 0.9em;
}

.signup-status-banner {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
}

.signup-status-banner-compact {
  min-height: 42px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  gap: 8px;
  flex-shrink: 0;
}

.signup-status-banner-compact .checkin-status-banner-icon {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}

.signup-status-banner-compact .checkin-status-banner-text {
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
}

.signup-stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.signup-stat-cell {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 14px;
  min-width: 0;
}

.signup-stat-cell:first-child {
  padding-left: 0;
}

.signup-stat-cell + .signup-stat-cell {
  border-left: 1px solid rgba(87, 116, 216, 0.16);
}

.signup-stat-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(219, 229, 249, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.signup-stat-heading i {
  color: #6f90ff;
  font-size: 1rem;
  flex-shrink: 0;
}

.signup-stat-value {
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  line-height: 1;
  font-weight: 800;
}

.signup-stat-caption {
  color: rgba(208, 220, 248, 0.7);
  font-size: 0.7rem;
  line-height: 1.15;
}

.signup-group {
  display: grid;
  gap: 14px;
}

.signup-group + .signup-group {
  padding-top: 8px;
  border-top: 1px solid rgba(87, 116, 216, 0.18);
}

.signup-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signup-group-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.signup-group-title h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.signup-group-title-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  background: rgba(6, 18, 52, 0.64);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.signup-group-title-icon-confirmed {
  color: #5fe0f4;
}

.signup-group-title-icon-waitlist {
  color: #6f90ff;
}

.signup-list {
  display: grid;
  gap: 8px;
}

.signup-group-confirmed .signup-list {
  gap: 0;
}

.signup-empty {
  margin: 0;
  color: rgba(208, 220, 248, 0.72);
  font-size: 0.98rem;
}

.signup-list-collapse {
  padding-top: 10px;
}

.signup-person-row {
  display: grid;
  grid-template-columns: 46px 56px minmax(0, 1fr) minmax(108px, 120px);
  align-items: center;
  gap: 8px;
  min-height: 76px;
  padding: 0 10px 0 8px;
  border-radius: 20px;
  border: 1px solid rgba(84, 110, 187, 0.16);
  background: rgba(7, 19, 53, 0.42);
}

.signup-group-confirmed .signup-person-row {
  min-height: 72px;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(120, 150, 226, 0.16);
}

.signup-person-order {
  color: #5fe0f4;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.signup-person-order-waitlist {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(95, 224, 244, 0.72);
  font-size: 1rem;
}

.signup-person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 145, 211, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(223, 232, 255, 0.68);
  font-size: 1.8rem;
}

.signup-person-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signup-person-main {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.signup-person-name {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signup-person-position {
  color: rgba(208, 220, 248, 0.72);
  font-size: 0.82rem;
  min-width: 0;
}

.signup-person-side {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.signup-person-side .checkin-badge {
  width: 100%;
  min-height: 28px;
  padding: 0 8px;
  font-size: 0.64rem;
  letter-spacing: 0.02em;
}

.signup-person-meta {
  color: rgba(208, 220, 248, 0.72);
  font-size: 0.82rem;
  text-align: right;
}

.signup-person-meta.is-current {
  color: #5fe0f4;
  font-weight: 700;
  text-transform: uppercase;
}

.signup-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px auto 0;
  border: none;
  background: transparent;
  color: #5fe0f4;
  font-size: 1rem;
  font-weight: 700;
}

.signup-expand-btn:hover {
  color: #8beeff;
}

.user-directory-search-card {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(110, 138, 220, 0.18);
  background: rgba(7, 19, 53, 0.48);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.user-directory-search-label {
  color: #dce6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.user-directory-search-input-wrap {
  position: relative;
}

.user-directory-search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(220, 230, 255, 0.56);
  font-size: 1rem;
  pointer-events: none;
}

.user-directory-search-input.form-control {
  min-height: 56px;
  padding: 0 18px 0 46px;
  border-radius: 18px;
  border: 1px solid rgba(120, 150, 226, 0.22);
  background: rgba(4, 16, 49, 0.82);
  color: #ffffff;
  box-shadow: none;
}

.user-directory-search-input.form-control::placeholder {
  color: rgba(220, 230, 255, 0.48);
}

.user-directory-search-input.form-control:focus {
  border-color: rgba(95, 224, 244, 0.58);
  background: rgba(4, 16, 49, 0.92);
  color: #ffffff;
  box-shadow: 0 0 0 0.18rem rgba(95, 224, 244, 0.12);
}

.user-directory-search-hint {
  margin: 0;
  color: rgba(208, 220, 248, 0.72);
  font-size: 0.82rem;
}

.user-directory-group .signup-group-head {
  margin-bottom: 8px;
}

.user-directory-list {
  gap: 0;
}

.user-directory-row {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  min-height: 78px;
  padding: 12px 0;
}

.user-directory-main {
  gap: 4px;
}

.user-directory-row .signup-person-name {
  font-size: 1rem;
}

.user-directory-row .signup-person-position {
  font-size: 0.84rem;
}

.user-directory-empty {
  padding-top: 16px;
}

.pinnie-request-shell {
  max-width: 760px;
}

.pinnie-request-head {
  max-width: 620px;
}

.pinnie-request-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 20px 20px;
}

.pinnie-request-copy {
  margin: 0 0 18px;
  color: #dce6ff;
  line-height: 1.6;
  text-align: left;
}

.pinnie-request-copy strong {
  color: #ffffff;
}

.pinnie-request-form {
  gap: 10px;
}

.pinnie-request-label {
  color: #dce6ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pinnie-request-select-wrap {
  position: relative;
}

.pinnie-request-select {
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
}

.pinnie-request-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(220, 230, 255, 0.72);
  border-bottom: 2px solid rgba(220, 230, 255, 0.72);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.pinnie-request-select option {
  color: #06122f;
}

.pinnie-request-inline-error {
  margin: 0;
}

.pinnie-request-warning-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  max-width: 620px;
  margin: 18px auto 0;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 80, 105, 0.28);
  background: linear-gradient(160deg, rgba(74, 13, 28, 0.78), rgba(49, 10, 21, 0.88));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.pinnie-request-warning-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 61, 92, 0.16);
  color: #ff657f;
  font-size: 1.35rem;
}

.pinnie-request-warning-copy {
  margin: 0;
  color: #ffd8df;
  line-height: 1.6;
}

.pinnie-request-warning-copy strong {
  color: #ff8da0;
}

.signup-info-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid rgba(84, 110, 187, 0.18);
  background: rgba(10, 25, 67, 0.52);
}

.signup-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 128, 231, 0.16);
  background: linear-gradient(160deg, rgba(23, 58, 145, 0.56), rgba(8, 22, 67, 0.92));
  color: #6f90ff;
  font-size: 1.7rem;
}

.signup-info-copy {
  display: grid;
  gap: 6px;
}

.signup-info-copy strong {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.signup-info-copy p {
  margin: 0;
  color: rgba(208, 220, 248, 0.76);
  font-size: 0.64rem;
  line-height: 1.35;
}

.signup-info-arrow {
  color: rgba(228, 236, 255, 0.82);
  font-size: 1.2rem;
}

.checkin-admin-item {
  gap: 10px;
}

.checkin-admin-groups {
  display: grid;
  gap: 20px;
}

.checkin-admin-group {
  display: grid;
  gap: 12px;
}

.checkin-admin-group + .checkin-admin-group {
  padding-top: 18px;
  border-top: 1px solid rgba(120, 150, 226, 0.18);
}

.checkin-admin-session-head {
  max-width: 1080px;
}

.checkin-admin-session-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.checkin-admin-session-title {
  flex: 1 1 320px;
}

.checkin-admin-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.checkin-admin-group-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.checkin-admin-group-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
}

.checkin-admin-group-count {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(95, 224, 244, 0.28);
  background: rgba(95, 224, 244, 0.08);
  color: #8beeff;
  font-size: 0.88rem;
  font-weight: 800;
}

.checkin-admin-group-toggle {
  margin: 0;
  white-space: nowrap;
}

.checkin-admin-group-toggle i {
  transition: transform 0.18s ease;
}

.checkin-admin-group-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.checkin-admin-group-list {
  padding-top: 6px;
}

.checkin-admin-search-card {
  margin-bottom: 0;
}

.checkin-admin-search-empty {
  margin: 4px 0 0;
}

.checkin-admin-session-footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 8px;
}

.checkin-admin-session-footer-link {
  flex-shrink: 0;
}

input[type="file"] {
  width: 100%;
  max-width: 100%;
}
.card {
    width: 100%;
    flex-wrap: wrap;
    border: none;
    border-radius: 50px;
    padding: 8px;
    background-color: #fff;
    position: relative;
    opacity: 1;
}

.user {
    position: relative
}

.stats span {
    font-size: 29px
}

@media (max-width: 768px) {
  .fdq-navbar {
    height: 68px;
    padding-right: 18px;
  }

  .fdq-menu-button {
    font-size: 1.85rem;
  }

  .top-brand-header {
    top: 0;
    height: 68px;
    padding-left: 12px;
  }

  .top-brand-logo {
    height: 56px;
    width: auto;
    padding: 0 3px;
  }

  .main-content {
    padding-top: 82px;
  }

  .auth-page-content {
    padding: 0 !important;
    background-position: center center;
  }

  .fdq-offcanvas-menu {
    top: 68px;
    height: calc(100vh - 68px);
    width: min(78vw, 300px);
  }

  .cadastro-hero {
    padding: 24px 10px 24px;
    border-radius: 20px;
    background-position: center top;
  }

  .auth-screen-hero {
    min-height: 100dvh;
    padding: 10px 0 8px;
    border-radius: 0;
  }

  .auth-screen-hero::before {
    top: -22px;
    width: min(96vw, 480px);
    height: 210px;
  }

  .auth-screen-hero .cadastro-card-wrap {
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  }

  .auth-screen-hero .cadastro-card {
    width: calc(100% - 32px);
    max-width: 360px;
    padding: 14px 10px 10px;
  }

  .auth-page-logo {
    width: min(62vw, 220px);
  }

  .admin-panel-title {
    font-size: 1.55rem;
  }

  .admin-user-row {
    grid-template-columns: 96px 1fr;
  }

  .admin-user-label {
    font-size: 0.74rem;
  }

  .admin-user-value {
    font-size: 0.88rem;
  }

  .admin-user-actions {
    flex-wrap: wrap;
  }

  .generic-page-title {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .checkin-session-card {
    padding: 18px 14px 16px;
    border-radius: 26px;
    gap: 14px;
  }

  .checkin-session-top {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .admin-game-session-head {
    gap: 8px;
  }

  .admin-game-session-title {
    font-size: 1.04rem;
    line-height: 1.08;
    gap: 0.26em;
  }

  .admin-game-session-head .checkin-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .admin-game-session-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .admin-game-session-actions .checkin-session-link {
    font-size: 0.84rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .admin-game-session-cancel {
    grid-column: 1 / -1;
  }

  .team-draw-page {
    gap: 22px;
  }

  .team-draw-session-head {
    gap: 14px;
    padding-bottom: 0;
  }

  .team-draw-session-mark {
    align-items: center;
  }

  .team-draw-session-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .team-draw-session-icon i {
    font-size: 1.55rem;
  }

  .team-draw-session-title {
    font-size: clamp(1.04rem, 4.5vw, 1.26rem);
  }

  .team-draw-session-line {
    align-items: center;
    gap: 10px;
  }

  .team-draw-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-draw-stat:first-child {
    padding-left: 6px;
  }

  .team-draw-stat-heading {
    font-size: 0.72rem;
  }

  .team-draw-stat-value {
    font-size: clamp(1.2rem, 5.8vw, 1.7rem);
  }

  .team-draw-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 2px 0 6px;
  }

  .team-draw-copy-row {
    margin: 0 0 8px;
    gap: 5px;
  }

  .team-draw-copy-label {
    font-size: 0.9rem;
  }

  .team-draw-copy-btn {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .team-draw-copy-btn i {
    font-size: 0.92rem;
  }

  .team-draw-position-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-top: 12px;
  }

  .team-draw-position-label {
    font-size: 0.68rem;
  }

  .team-draw-position-value {
    font-size: 1.04rem;
  }

  .team-draw-position-card {
    padding: 0 8px 8px;
    min-height: 0;
  }

  .team-draw-position-card:first-child {
    padding-left: 0;
  }

  .team-draw-position-head {
    gap: 5px;
  }

  .team-draw-position-icon {
    font-size: 0.8rem;
  }

  .team-draw-board {
    grid-template-columns: 1fr;
  }

  .team-draw-player-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 0;
  }

  .team-draw-player-row-placeholder {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .team-draw-player-row-manual {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .team-draw-player-row-with-actions {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .team-draw-team-shield {
    width: 32px;
    height: 36px;
  }

  .team-draw-team-shield i {
    font-size: 1.75rem;
  }

  .team-draw-team-shield-code {
    font-size: 0.72rem;
  }

  .team-draw-player-avatar {
    width: 36px;
    height: 36px;
  }

  .team-draw-manual-add-btn {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .team-draw-manual-add-btn i {
    font-size: 0.84rem;
  }

  .team-draw-player-actions {
    gap: 5px;
  }

  .team-draw-status-btn {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.6rem;
  }

  .checkin-session-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .checkin-session-icon i {
    font-size: 1.5rem;
  }

  .checkin-status-banner,
  .checkin-action-btn {
    min-height: 58px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .checkin-status-banner-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .checkin-stat-box {
    min-height: 0;
    padding: 0 12px;
  }

  .checkin-stat-icon {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .checkin-stat-label {
    font-size: 0.64rem;
  }

  .checkin-stat-value {
    font-size: 1.3rem;
  }

  .signup-stats-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signup-stat-cell {
    gap: 6px;
    padding: 10px 8px;
  }

  .signup-stat-cell:first-child {
    padding-left: 0;
  }

  .signup-stat-cell + .signup-stat-cell {
    border-top: none;
    border-left: 1px solid rgba(87, 116, 216, 0.16);
  }

  .signup-stat-heading {
    gap: 4px;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
  }

  .signup-stat-heading i {
    font-size: 0.8rem;
  }

  .signup-stat-value {
    font-size: 1.22rem;
  }

  .signup-stat-caption {
    font-size: 0.52rem;
    line-height: 1.05;
  }

  .signup-session-title-row {
    align-items: flex-start;
    gap: 8px;
  }

  .signup-session-title-row .checkin-session-title {
    font-size: 1.02rem;
  }

  .signup-status-banner-compact {
    min-height: 30px;
    padding: 0 10px 0 8px;
    gap: 6px;
  }

  .signup-status-banner-compact .checkin-status-banner-icon {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .signup-status-banner-compact .checkin-status-banner-text {
    font-size: 0.54rem;
    letter-spacing: 0.03em;
    line-height: 1.02;
  }

  .signup-person-row {
    grid-template-columns: 34px 40px minmax(0, 1fr) minmax(78px, 88px);
    gap: 6px;
    padding: 10px 8px 10px 6px;
    min-height: 68px;
  }

  .signup-group-confirmed .signup-person-row {
    padding: 10px 0;
    min-height: 64px;
  }

  .signup-person-order,
  .signup-person-order-waitlist {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .signup-person-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .signup-person-name {
    font-size: 0.84rem;
  }

  .signup-person-position {
    font-size: 0.7rem;
  }

  .signup-person-side {
    align-self: center;
  }

  .signup-person-side .checkin-badge {
    min-height: 24px;
    padding: 0 6px;
    font-size: 0.54rem;
  }

  .user-directory-search-card {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .user-directory-search-input.form-control {
    min-height: 50px;
    padding-left: 42px;
    font-size: 0.94rem;
  }

  .user-directory-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    min-height: 64px;
    padding: 10px 0;
  }

  .pinnie-request-card {
    padding: 22px 14px 18px;
  }

  .pinnie-request-copy {
    font-size: 0.94rem;
  }

  .pinnie-request-warning-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .pinnie-request-warning-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .pinnie-request-warning-copy {
    font-size: 0.9rem;
  }

  .signup-person-meta {
    font-size: 0.68rem;
    text-align: right;
    max-width: 74px;
  }

  .signup-info-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    min-height: 0;
  }

  .signup-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.35rem;
  }

  .signup-info-arrow {
    display: none;
  }

  .checkin-session-actions,
  .checkin-admin-actions {
    flex-direction: column;
  }

  .checkin-admin-actions {
    flex-direction: row;
  }

  .checkin-action-split-btn {
    min-height: 56px;
    font-size: 0.96rem;
  }

  .checkin-action-btn,
  .checkin-session-link {
    width: 100%;
  }

  .cadastro-card {
    padding: 22px 14px 18px;
  }

  .cadastro-title {
    font-size: 1.85rem;
  }

  .fdq-position-title {
    font-size: 1.35rem;
  }

  .fdq-submit {
    font-size: 1rem;
  }
}
