.betnation-age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 32, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.betnation-age-modal {
  width: 100%;
  max-width: 460px;

  background: linear-gradient(180deg,
      #ffffff 0%,
      #f4f7fb 100%);

  border-radius: 24px;

  padding: 42px 38px;

  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.35);

  text-align: center;

  border: 2px solid rgba(26, 188, 232, 0.18);
}

.betnation-age-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 28px;
}

.betnation-age-logo-icon {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: #1abce8;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 22px;
}

.betnation-age-logo-text {
  font-size: 30px;
  font-weight: 700;
  color: #093256;
}

.betnation-age-badge {
  width: 88px;
  height: 88px;

  margin: 0 auto 22px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      #1abce8,
      #00a6d6);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(26, 188, 232, 0.35);
}

.betnation-age-title {
  font-size: 34px;
  font-weight: 700;

  color: #0c2f4f;

  margin-bottom: 14px;
}

.betnation-age-description {
  color: #5f6d7c;

  font-size: 16px;
  line-height: 1.7;

  margin-bottom: 32px;
}

.betnation-age-actions {
  display: flex;
  gap: 14px;
}

.betnation-age-btn {
  flex: 1;

  border: none;
  cursor: pointer;

  height: 54px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.25s ease;
}

.betnation-age-btn-confirm {
  background: linear-gradient(135deg,
      #1abce8,
      #00a6d6);

  color: #fff;
}

.betnation-age-btn-confirm:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(26, 188, 232, 0.35);
}

.betnation-age-btn-decline {
  background: #edf2f6;
  color: #0d3356;
}

.betnation-age-btn-decline:hover {
  background: #dde5ec;
}

.betnation-age-footer {
  margin-top: 24px;

  font-size: 13px;
  color: #8c98a4;
}


.betnation-cookie-wrapper {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;

  z-index: 9998;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  border-radius: 22px;

  padding: 24px 28px;

  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.18);

  border: 1px solid rgba(26, 188, 232, 0.15);
}

.betnation-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.betnation-cookie-left {
  max-width: 520px;
}

.betnation-cookie-title {
  font-size: 24px;
  font-weight: 700;

  color: #0c2f4f;

  margin-bottom: 10px;
}

.betnation-cookie-text {
  color: #61707e;
  line-height: 1.6;
}

.betnation-cookie-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.betnation-cookie-switches {
  display: flex;
  gap: 20px;
}

.betnation-cookie-toggle {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #0d3356;
  font-weight: 600;
}

.betnation-cookie-toggle input {
  display: none;
}

.betnation-cookie-slider {
  width: 52px;
  height: 28px;

  background: #c7d3dc;

  border-radius: 100px;

  position: relative;

  transition: 0.25s ease;
}

.betnation-cookie-slider::before {
  content: "";

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: #fff;

  position: absolute;
  top: 3px;
  left: 3px;

  transition: 0.25s ease;
}

.betnation-cookie-toggle input:checked+.betnation-cookie-slider {
  background: #1abce8;
}

.betnation-cookie-toggle input:checked+.betnation-cookie-slider::before {
  transform: translateX(24px);
}

.betnation-cookie-buttons {
  display: flex;
  gap: 12px;
}

.betnation-cookie-btn {
  border: none;
  cursor: pointer;

  height: 48px;

  padding: 0 22px;

  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  transition: 0.25s ease;
}

.betnation-cookie-btn-primary {
  background: linear-gradient(135deg,
      #1abce8,
      #00a6d6);

  color: #fff;
}

.betnation-cookie-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 24px rgba(26, 188, 232, 0.35);
}

.betnation-cookie-btn-secondary {
  background: #edf2f6;
  color: #0d3356;
}

.betnation-cookie-btn-secondary:hover {
  background: #dde5ec;
}



@media (max-width: 980px) {

  .betnation-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .betnation-cookie-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {

  .betnation-age-modal {
    padding: 32px 24px;
  }

  .betnation-age-title {
    font-size: 28px;
  }

  .betnation-age-actions {
    flex-direction: column;
  }

  .betnation-cookie-wrapper {
    left: 14px;
    right: 14px;
    bottom: 14px;

    padding: 20px;
  }

  .betnation-cookie-switches {
    flex-direction: column;
  }

  .betnation-cookie-buttons {
    width: 100%;
  }

  .betnation-cookie-btn {
    flex: 1;
  }
}
.betnation-auth-modal {
  overflow-y: auto;
}

.betnation-auth-card-large {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.betnation-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: none;
  align-items: flex-start;
  justify-content: center;

  min-height: 100vh;
  padding-top: 90px;

  background: #16b9dc;
}

.betnation-auth-modal.betnation-auth-modal-active {
  display: flex;
}

.betnation-auth-close {
  position: absolute;
  top: 40px;
  right: 28%;

  border: none;
  background: transparent;

  color: #fff;
  font-size: 44px;
  line-height: 1;

  cursor: pointer;
}

.betnation-auth-card {
  width: 100%;
  max-width: 620px;

  background: #fff;

  border-radius: 28px;

  padding: 42px;

  color: #071d38;
}

.betnation-auth-card-large {
  max-width: 640px;
  padding: 18px 18px 20px;
}

.betnation-auth-card h2 {
  margin-bottom: 34px;

  font-size: 22px;
  font-weight: 800;
}

.betnation-auth-card-large h2 {
  margin-bottom: 26px;
  font-size: 26px;
}

.betnation-auth-card h3 {
  margin: 24px 0 16px;

  font-size: 22px;
  font-weight: 800;
}

.betnation-auth-card p {
  margin-bottom: 42px;

  color: #6d7a8a;
  font-size: 18px;
  line-height: 1.5;
}

.betnation-auth-card-large p {
  margin-bottom: 26px;

  color: #071d38;
  font-size: 19px;
}

.betnation-auth-card input,
.betnation-auth-card select {
  width: 100%;
  height: 58px;

  margin-bottom: 20px;
  padding: 0 18px;

  border: 2px solid #102743;
  border-radius: 10px;

  outline: none;

  color: #17395b;
  font-size: 18px;

  background: #fff;
}

.betnation-auth-card select {
  appearance: none;
  cursor: pointer;
}

.betnation-auth-card input::placeholder {
  color: #25476a;
}

.betnation-auth-password {
  position: relative;
}

.betnation-auth-password input {
  padding-right: 56px;
}

.betnation-auth-password button {
  position: absolute;
  top: 15px;
  right: 16px;

  border: none;
  background: transparent;

  color: #071d38;
  cursor: pointer;
}

.betnation-auth-card small {
  display: block;

  margin: -10px 6px 22px;

  color: #25476a;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.betnation-auth-submit {
  display: block;

  width: 180px;
  height: 38px;

  margin-left: auto;

  border: none;
  border-radius: 999px;

  background: #10b9e4;

  color: #fff;
  font-size: 20px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.25s ease;
}

.betnation-auth-card-large .betnation-auth-submit {
  width: 100%;
  height: 48px;

  background: #bdeafa;
}

.betnation-auth-submit:hover {
  background: #079fca;
}

.betnation-auth-link {
  position: absolute;
  top: 640px;

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.betnation-auth-bottom {
  position: absolute;
  top: 900px;

  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.betnation-auth-bottom a {
  color: #fff;
  text-decoration: underline;
}

.betnation-auth-steps {
  position: absolute;
  top: 84px;
  left: calc(50% - 310px);

  color: #fff;

  font-size: 13px;
  font-weight: 700;
}

.betnation-auth-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 16px;
  height: 16px;

  margin-right: 6px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  font-size: 10px;
}

.betnation-auth-steps b {
  margin: 0 12px;
}

.betnation-auth-success {
  text-align: center;
}

.betnation-auth-success-icon {
  width: 82px;
  height: 82px;

  margin: 0 auto 24px;

  border-radius: 50%;

  background: #10b9e4;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  font-weight: 800;
}

.betnation-auth-success .betnation-auth-submit {
  margin: 28px auto 0;
}

@media (max-width: 768px) {
  .betnation-auth-modal {
    padding: 70px 16px 30px;
    overflow-y: auto;
  }

  .betnation-auth-close {
    top: 24px;
    right: 24px;
  }

  .betnation-auth-card {
    padding: 28px 22px;
  }

  .betnation-auth-card-large {
    padding: 22px;
  }

  .betnation-auth-link,
  .betnation-auth-bottom {
    position: static;
    margin-top: 24px;
    text-align: center;
  }

  .betnation-auth-steps {
    position: static;
    margin-bottom: 14px;
  }
}