/* The account profile's predictor summary. This is separate from the predictor
   application so the main website does not load that application's full CSS. */
body.profile-mode-active .profile-predict-section {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(179, 229, 247, .3);
  border-radius: 20px;
  color: #f7fffb;
  background: linear-gradient(135deg, rgba(9, 118, 158, .94) 0%, rgba(4, 70, 101, .96) 100%);
  box-shadow: 0 16px 42px rgba(0, 42, 62, .2);
}

body.profile-mode-active .profile-predict-section::after {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(164, 226, 249, .2);
  border-radius: 50%;
  content: "";
}

body.profile-mode-active .profile-predict-heading,
body.profile-mode-active .profile-predict-stats,
body.profile-mode-active .profile-predict-leagues {
  position: relative;
  z-index: 1;
}

body.profile-mode-active .profile-predict-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.profile-mode-active .profile-predict-heading h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -.035em;
}

body.profile-mode-active .profile-predict-heading a {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  color: #064763;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  background: #d9f4ff;
  transition: transform 140ms cubic-bezier(.23, 1, .32, 1), background-color 160ms ease;
}

body.profile-mode-active .profile-predict-heading a:active { transform: scale(.97); }

body.profile-mode-active .profile-predict-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

body.profile-mode-active .profile-predict-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  background: rgba(2, 52, 78, .42);
}

body.profile-mode-active .profile-predict-stats span {
  display: block;
  color: #b7dfed;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

body.profile-mode-active .profile-predict-stats strong {
  display: block;
  margin-top: 4px;
  color: #f4cc67;
  font-size: 21px;
}

body.profile-mode-active .profile-predict-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

body.profile-mode-active .profile-predict-leagues a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(2, 52, 78, .34);
}
