@charset "UTF-8";
.undo-feedback {
  position: relative;
  display: block;
  color: transparent;
  text-align: center;
  font-size: 1rem;
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.undo-feedback.show {
  color: #09BC8A;
  opacity: 1;
  padding: 0.5rem;
  height: auto;
  transform: translateY(-5px);
}

.keyboard-shortcut {
  display: none;
  opacity: 0.6;
  font-size: 0.8em;
}
@media screen and (min-width: 768px) and (min-height: 600px) {
  .keyboard-shortcut {
    display: inline;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInSubtle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rowSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
@keyframes pulse-border {
  0% {
    border-color: #9d7fff;
  }
  50% {
    border-color: rgba(157, 127, 255, 0.5);
  }
  100% {
    border-color: #9d7fff;
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(180, 160, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(180, 160, 255, 0.6);
  }
}
@keyframes pulseGlowSmall {
  0%, 100% {
    box-shadow: 0 0 5px rgba(180, 160, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 10px rgba(180, 160, 255, 0.6);
  }
}
@keyframes pulseGlowGreen {
  0%, 100% {
    box-shadow: 0 0 20px rgba(9, 188, 138, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(9, 188, 138, 0.4);
  }
}
@keyframes cardGlow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(180, 160, 255, 0.05);
  }
  50% {
    box-shadow: 0 10px 20px rgba(180, 160, 255, 0.1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes magicSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit {
  to {
    transform: translateX(-50%) rotate(360deg) translateX(24px) rotate(-360deg);
  }
}
@keyframes floatButton {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes underlineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes moveBlob1 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(150px, 100px) scale(1.2) rotate(90deg);
  }
  50% {
    transform: translate(100px, 200px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate(200px, 150px) scale(1.1) rotate(270deg);
  }
}
@keyframes moveBlob2 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(-150px, -100px) scale(1.3) rotate(-90deg);
  }
  50% {
    transform: translate(-100px, -200px) scale(0.8) rotate(-180deg);
  }
  75% {
    transform: translate(-200px, -50px) scale(1.15) rotate(-270deg);
  }
}
@keyframes moveBlob3 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(-180px, 80px) scale(1.25) rotate(60deg);
  }
  50% {
    transform: translate(-120px, 120px) scale(0.85) rotate(120deg);
  }
  75% {
    transform: translate(-150px, 40px) scale(1.2) rotate(240deg);
  }
}
@keyframes moveBlob4 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  20% {
    transform: translate(100px, -120px) scale(0.9) rotate(-60deg);
  }
  40% {
    transform: translate(-80px, -100px) scale(1.2) rotate(-120deg);
  }
  60% {
    transform: translate(-120px, -80px) scale(0.95) rotate(-240deg);
  }
  80% {
    transform: translate(60px, -150px) scale(1.1) rotate(-300deg);
  }
}
@media screen and (max-width: 768px) {
  @keyframes moveBlob1 {
    0%, 100% {
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
      transform: translate(100px, 60px) scale(1.1) rotate(90deg);
    }
    50% {
      transform: translate(60px, 100px) scale(0.95) rotate(180deg);
    }
    75% {
      transform: translate(120px, 80px) scale(1.05) rotate(270deg);
    }
  }
  @keyframes moveBlob2 {
    0%, 100% {
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
      transform: translate(-80px, -60px) scale(1.15) rotate(-90deg);
    }
    50% {
      transform: translate(-60px, -100px) scale(0.9) rotate(-180deg);
    }
    75% {
      transform: translate(-100px, -40px) scale(1.1) rotate(-270deg);
    }
  }
  @keyframes moveBlob3 {
    0%, 100% {
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
      transform: translate(-100px, 40px) scale(1.15) rotate(60deg);
    }
    50% {
      transform: translate(-80px, 60px) scale(0.9) rotate(120deg);
    }
    75% {
      transform: translate(-90px, 20px) scale(1.1) rotate(240deg);
    }
  }
  @keyframes moveBlob4 {
    0%, 100% {
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
      transform: translate(60px, -80px) scale(0.95) rotate(-90deg);
    }
    50% {
      transform: translate(-40px, -60px) scale(1.1) rotate(-180deg);
    }
    75% {
      transform: translate(40px, -100px) scale(1.05) rotate(-270deg);
    }
  }
}
.player-headshot {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  object-fit: cover;
  border: 0.09375rem solid #B0AFAE;
  border-radius: 50%;
  display: block;
}
.player-headshot:hover {
  transform: scale(1.1);
  border-color: rgba(180, 160, 255, 0.5);
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.2);
}
@media (max-width: 575.98px) {
  .player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 100%;
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-sizing: border-box;
  background-color: #13131A;
  color: #FFFFF0;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFF0;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #9D7FFF;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #B4A0FF;
}

main, section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 5000px;
}

::selection {
  background: rgba(157, 127, 255, 0.2);
  color: #FFFFF0;
}

@media screen and (min-width: 48em) {
  body {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 64em) {
  body {
    font-size: 1.25rem;
  }
}
header {
  color: #FFFFF0;
  padding: 0;
  height: calc(5.5rem + env(safe-area-inset-top, 0));
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  margin: 0;
  z-index: 999;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}
header::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 240, 0.02);
  display: none;
}

header nav {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
}

header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

header nav ul li {
  width: auto;
  text-align: left;
}

header nav ul li a {
  color: #FFFFF0;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
header nav ul li a:focus {
  outline: 2px solid rgba(255, 255, 240, 0.5);
  outline-offset: 2px;
}

@media screen and (orientation: landscape) and (max-height: 600px) {
  header {
    padding: 0.5rem 1rem;
  }
  header nav ul {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 63.99em) {
  header {
    height: calc(3rem + env(safe-area-inset-top, 0));
  }
  header nav {
    padding: 0 0.5rem;
  }
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li a {
    display: block;
    padding: 0.75rem;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi) {
  header {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media print {
  header {
    position: static;
    box-shadow: none;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (min-width: 64em) {
  header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  header::after {
    display: block;
  }
}
section {
  text-align: center;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.title {
  margin: 1rem;
  width: 100%;
  max-width: 90rem;
  box-sizing: border-box;
}

.title h1 {
  color: #FFFFF0;
  text-align: left;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.title h2 {
  color: rgba(120, 120, 120, 0.8784313725);
  text-align: left;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  opacity: 0;
  animation: fadeInSubtle 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.title h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(120, 120, 120, 0.8784313725);
  opacity: 0.3;
  animation: underlineExpand 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@media screen and (orientation: landscape) and (max-height: 600px) {
  .title {
    margin: 0.5rem;
  }
  .title h1 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    margin-bottom: 0.5rem;
  }
  .title h2 {
    margin-top: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .title h2 {
    animation: none;
    opacity: 1;
  }
  .title h2::after {
    animation: none;
    width: 100%;
  }
}
@media print {
  .title {
    margin: 1rem 0;
  }
  .title h2 {
    animation: none;
  }
}
.title {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.title .title-main {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #B4A0FF 0%, #9D7FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title .title-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 240, 0.6);
  letter-spacing: 0.1em;
}

.draft-controls-container {
  margin-bottom: 1.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(19, 19, 26, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  align-items: center;
}
.draft-controls-container > div {
  width: 100%;
  max-width: 300px;
}
.draft-controls-container > div select {
  width: 100%;
  background-color: rgba(19, 19, 26, 0.6);
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 3rem 0.75rem 1rem;
  color: #FFFFF0;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23B4A0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 1.25rem;
}
.draft-controls-container > div select:hover {
  border-color: rgba(180, 160, 255, 0.4);
  background-color: rgba(19, 19, 26, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(157, 127, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.draft-controls-container > div select:focus {
  outline: none;
  border-color: #B4A0FF;
  box-shadow: 0 0 20px rgba(180, 160, 255, 0.2);
  background-color: rgba(157, 127, 255, 0.03);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.undo-btn-container {
  min-height: 3rem;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 300px;
  padding-bottom: 1rem;
}

.draft-board-container {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(19, 19, 26, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
}

.draft-selection-page .btn-draft-selection, .btn-toggle, .btn-undo, .btn-login {
  padding: calc(0.15rem + env(safe-area-inset-top, 0)) calc(0.35rem + env(safe-area-inset-right, 0));
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.6rem, 1.2vmin, 0.7rem);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.draft-selection-page .btn-draft-selection::before, .btn-toggle::before, .btn-undo::before, .btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.draft-selection-page .btn-draft-selection:hover::before, .btn-toggle:hover::before, .btn-undo:hover::before, .btn-login:hover::before {
  transform: translateX(100%);
}
.draft-selection-page .disabled.btn-draft-selection, .disabled.btn-toggle, .disabled.btn-undo, .disabled.btn-login {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .draft-selection-page .btn-draft-selection::before, .btn-toggle::before, .btn-undo::before, .btn-login::before {
    transition-duration: 0.1s;
  }
}

.btn-login {
  background-color: transparent;
  color: #9D7FFF;
  border: 2px solid rgba(157, 127, 255, 0.2);
  width: clamp(200px, 40%, 200px);
  max-width: 200px;
  margin: 0 auto;
  display: flex;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: clamp(0.15rem, 1vh, 0.3rem) clamp(0.35rem, 1.5vw, 0.6rem);
  min-height: clamp(1.5rem, 3.5vh, 1.75rem);
  font-size: clamp(0.6rem, 1.2vh, 0.7rem);
}
.btn-login:hover {
  background-color: rgba(157, 127, 255, 0.1);
  border-color: #9D7FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(157, 127, 255, 0.2);
}
.btn-login:active {
  transform: translateY(1px);
}
.btn-login[href*=logout] {
  background-color: transparent;
  color: #9D7FFF;
  border: 2px solid rgba(157, 127, 255, 0.2);
  margin: 0 auto;
}
.btn-login[href*=logout]:hover {
  background-color: rgba(157, 127, 255, 0.1);
  border-color: #9D7FFF;
  transform: translateY(-2px);
}
.btn-login[href*=logout]:active {
  transform: translateY(1px);
}

.btn-undo {
  background: linear-gradient(135deg, rgba(255, 255, 240, 0.03) 0%, rgba(19, 19, 26, 0.8) 100%);
  color: #FFFFF0;
  border: 1px solid #FFFFF0;
  font-size: 1rem;
  width: 100%;
  border: 1px solid rgba(180, 160, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-undo:hover {
  background-color: rgba(255, 255, 240, 0.1);
  color: #FFFFF0;
  border-color: #B4A0FF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(180, 160, 255, 0.2);
}

.btn-toggle {
  font-family: "Roboto", sans-serif;
  background-color: transparent;
  border: 1px solid rgba(180, 160, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(180, 160, 255, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  min-height: 1.25rem;
  background: rgba(19, 19, 26, 0.4);
  border-radius: 1rem;
  color: rgba(255, 255, 240, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 14%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.btn-toggle:hover {
  background-color: rgba(157, 127, 255, 0.04);
  border-color: rgba(180, 160, 255, 0.4);
  color: rgba(255, 255, 240, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 8px rgba(180, 160, 255, 0.2);
}
.btn-toggle.active {
  background-color: rgba(157, 127, 255, 0.08);
  font-weight: 500;
  transform: translateY(-1px);
  background: rgba(180, 160, 255, 0.2);
  border-color: #B4A0FF;
  color: #FFFFF0;
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.3);
}
.btn-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(180, 160, 255, 0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}
@media (max-width: 575.98px) {
  .btn-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    flex: 0 0 auto;
    min-width: fit-content;
    letter-spacing: 0;
  }
  .btn-toggle::before {
    display: none;
  }
  .btn-toggle:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(180, 160, 255, 0.2);
  }
  .btn-toggle.active {
    box-shadow: 0 0 8px rgba(180, 160, 255, 0.3);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .btn-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    flex: 0 0 auto;
    min-width: fit-content;
    letter-spacing: 0;
  }
  .btn-toggle::before {
    display: none;
  }
  .btn-toggle:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(180, 160, 255, 0.2);
  }
  .btn-toggle.active {
    box-shadow: 0 0 8px rgba(180, 160, 255, 0.3);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .btn-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    flex: 0 0 auto;
    min-width: fit-content;
    letter-spacing: 0;
  }
  .btn-toggle::before {
    display: none;
  }
  .btn-toggle:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(180, 160, 255, 0.2);
  }
  .btn-toggle.active {
    box-shadow: 0 0 8px rgba(180, 160, 255, 0.3);
  }
}

@media screen and (orientation: landscape) and (max-height: 480px) {
  .btn-login {
    padding: clamp(0.35rem, 1.5vh, 0.5rem) clamp(0.75rem, 2vw, 1rem);
    min-height: clamp(2rem, 5vh, 2.5rem);
    font-size: clamp(0.8rem, 1.75vh, 0.9rem);
    width: clamp(120px, 35%, 150px);
  }
}
@media screen and (min-width: 48em) {
  .btn-login {
    min-width: clamp(10rem, 15vw, 12rem);
    padding: calc(0.75rem + env(safe-area-inset-top, 0)) calc(1.5rem + env(safe-area-inset-right, 0));
    font-size: clamp(0.875rem, 1vw, 1rem);
    width: auto;
  }
  .draft-selection-page .btn-draft-selection, .btn-login, .btn-undo, .btn-toggle {
    padding: 0.75rem 1.5rem;
    min-height: 3rem;
    font-size: 1rem;
  }
}
.position-filters {
  display: flex;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: nowrap;
  opacity: 0;
  width: 100%;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
  gap: 0.5rem;
  margin: 2rem auto 1rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .position-filters {
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    position: relative;
    justify-content: center;
    margin-bottom: 0;
    margin: 1rem auto 0.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .position-filters {
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    position: relative;
    justify-content: center;
    margin-bottom: 0;
    margin: 1rem auto 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .position-filters {
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    position: relative;
    justify-content: center;
    margin-bottom: 0;
    margin: 1rem auto 0.5rem;
  }
}

:root {
  --nav-height: calc(5rem + env(safe-area-inset-top, 0));
}

.top-nav {
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  width: 100%;
  height: var(--nav-height);
  padding: 0 calc(1rem + env(safe-area-inset-right, 0)) 0 calc(1rem + env(safe-area-inset-left, 0));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1000;
  background: none;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.3s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media screen and (max-width: 47.99em) {
  .top-nav.nav-scrolled {
    transform: translateY(-100%);
  }
  .top-nav.nav-scrolled:hover {
    transform: translateY(0);
  }
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: calc(4rem + env(safe-area-inset-top)) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-menu.is-active {
  transform: translateX(-100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}
.nav-menu.is-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #13131A;
  z-index: -1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vh, 1.5rem);
  background: transparent;
}

.top-nav ul li {
  width: 100%;
  text-align: center;
}

.top-nav ul li a {
  font-weight: 400;
  text-decoration: none;
  padding: clamp(0.75rem, 2vh, 1rem);
  color: #FFFFF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2.5vh, 1.1rem);
  transition: color 0.2s ease, transform 0.2s ease;
  min-height: 2.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.top-nav ul li a:hover {
  color: #9D7FFF;
  transform: translateY(-1px);
}
.top-nav ul li a:active {
  transform: translateY(1px);
}
.top-nav ul li a:focus {
  outline: none;
  color: #9D7FFF;
  position: relative;
}

.hamburger {
  display: block;
  background: none;
  border: none;
  padding: 1rem;
  padding-left: 0;
  cursor: pointer;
  position: fixed;
  left: calc(0.1rem + env(safe-area-inset-left, 0));
  top: calc(0.1rem + env(safe-area-inset-top, 0));
  z-index: 1001;
  min-height: 3rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger .hamburger-box {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  position: relative;
}
.hamburger .hamburger-inner {
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #9D7FFF;
  top: 50%;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #9D7FFF;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .hamburger-inner::before {
  top: -0.5rem;
}
.hamburger .hamburger-inner::after {
  top: 0.5rem;
}
.hamburger.is-active .hamburger-inner {
  background-color: transparent;
}
.hamburger.is-active .hamburger-inner::before {
  transform: translateY(0.5rem) rotate(45deg);
}
.hamburger.is-active .hamburger-inner::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

@media screen and (orientation: landscape) and (max-height: 480px) {
  .nav-menu {
    padding-top: calc(3.5rem + env(safe-area-inset-top));
  }
  .top-nav ul {
    gap: 0.75rem;
  }
  .top-nav ul li {
    width: 100%;
  }
  .top-nav ul li a {
    padding: 0.5rem 1rem;
    min-height: 2rem;
    font-size: 0.95rem;
  }
}
@media screen and (min-width: 64em) {
  .hamburger {
    display: none;
  }
  .nav-menu {
    position: static;
    height: auto;
    padding: 0;
    transform: none;
    background: none;
    width: auto;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .top-nav {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: auto;
    right: 0;
    width: auto;
    margin: calc(1rem + env(safe-area-inset-top, 0)) calc(1rem + env(safe-area-inset-right, 0)) 1rem 1rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    justify-content: flex-end;
    display: flex;
  }
  .top-nav ul {
    flex-direction: row;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: nowrap;
  }
  .top-nav ul li {
    width: auto;
  }
  .top-nav ul li a {
    padding: 0.625rem 1.25rem;
    font-size: clamp(0.875rem, 1vw, 1rem);
    min-height: 2.5rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 48em) and (min-resolution: 192dpi) {
  .top-nav ul li a {
    font-weight: 500;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-menu,
  .top-nav ul li a,
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    transition-duration: 0.1s;
  }
}
.btn-follow-us-nav {
  padding: calc(0.15rem + env(safe-area-inset-top, 0)) calc(0.35rem + env(safe-area-inset-right, 0));
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.6rem, 1.2vmin, 0.7rem);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vh, 1.1rem);
  padding: clamp(0.75rem, 2vh, 1rem);
  background: linear-gradient(to right, rgba(13, 13, 18, 0.95), rgba(13, 13, 18, 0.98));
  color: #FFFFF0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(19, 19, 26, 0.2);
  letter-spacing: 0.04em;
  min-height: 2.5rem;
  border-radius: 1rem;
  transition: all 0.2s ease;
  width: auto;
  position: static;
  transform: none;
  animation: none;
  margin: 0 auto;
  max-width: 200px;
}
.btn-follow-us-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-follow-us-nav:hover::before {
  transform: translateX(100%);
}
.btn-follow-us-nav.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-follow-us-nav::before {
    transition-duration: 0.1s;
  }
}
.btn-follow-us-nav img {
  width: clamp(0.9rem, 2.5vmin, 1.1rem);
  height: clamp(0.9rem, 2.5vmin, 1.1rem);
  margin-right: clamp(0.4rem, 1.2vw, 0.6rem);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
}
.btn-follow-us-nav:hover {
  background: linear-gradient(to right, rgba(157, 127, 255, 0.04), rgba(157, 127, 255, 0.06));
  border-color: #9D7FFF;
  transform: translateY(-1px);
  color: #9D7FFF;
}
.btn-follow-us-nav:hover img {
  transform: scale(1.15) rotate(5deg);
}
.btn-follow-us-nav:active {
  transform: translateY(1px);
}
@media screen and (orientation: landscape) and (max-height: 480px) {
  .btn-follow-us-nav {
    padding: 0.5rem 1rem;
    min-height: 2rem;
    font-size: 0.95rem;
  }
  .btn-follow-us-nav img {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media screen and (min-width: 64em) {
  .btn-follow-us-nav {
    padding: 0.625rem 1.25rem;
    font-size: clamp(0.875rem, 1vw, 1rem);
    min-height: 2.5rem;
    white-space: nowrap;
  }
}

.tabs {
  display: flex;
  border-bottom: 1px solid rgba(180, 160, 255, 0.2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(19, 19, 26, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}
.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 240, 0.7);
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.tab-button:hover {
  color: #B4A0FF;
  transform: translateY(-2px);
}
.tab-button.active {
  color: #B4A0FF;
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #B4A0FF 0%, #9D7FFF 100%);
  border-radius: 2px 2px 0 0;
}

.tab-content-container {
  position: relative;
  height: calc(100vh - 12rem);
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.tab-content {
  display: none;
  height: 100%;
  overflow: auto;
  padding: 1rem;
}
.tab-content.active {
  display: block;
  animation: slideIn 0.3s ease-out;
}
.tab-content::-webkit-scrollbar {
  width: 6px;
}
.tab-content::-webkit-scrollbar-track {
  background: rgba(19, 19, 26, 0.2);
  border-radius: 3px;
}
.tab-content::-webkit-scrollbar-thumb {
  background: rgba(180, 160, 255, 0.3);
  border-radius: 3px;
}
.tab-content::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 160, 255, 0.5);
}

@media screen and (min-width: 768px) {
  .tabs {
    padding: 0 2rem;
    gap: 1rem;
  }
  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  .tab-content-container {
    height: calc(100vh - 14rem);
  }
}
.dropdown-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  position: relative;
}
.dropdown-container .dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 1rem 3rem 1rem 1.5rem;
  background-color: rgba(19, 19, 26, 0.6);
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 2rem;
  color: #FFFFF0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23B4A0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 1.25rem;
}
.dropdown-container .dropdown:hover {
  border-color: rgba(180, 160, 255, 0.4);
  background-color: rgba(19, 19, 26, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(157, 127, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.dropdown-container .dropdown:focus {
  outline: none;
  border-color: #B4A0FF;
  box-shadow: 0 0 20px rgba(180, 160, 255, 0.2);
  background-color: rgba(157, 127, 255, 0.03);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media screen and (min-width: 48em) {
  .dropdown-container {
    flex-direction: row;
    width: auto;
  }
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: none;
  font-size: clamp(0.7rem, 1.8vh, 0.8rem);
}

.table-section {
  background: rgba(19, 19, 26, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  box-sizing: border-box;
}
@media (max-width: 575.98px) {
  .table-section {
    padding: 0.75rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .table-section {
    padding: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .table-section {
    padding: 0.75rem;
  }
}

thead {
  background-color: #B4A0FF;
  color: #13131A;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

th {
  padding: 0.75rem 0.5rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  background-color: #B4A0FF;
}

td {
  padding: 0.75rem 0.5rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid rgba(180, 160, 255, 0.1);
  transition: background-color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 0.85rem;
  line-height: 1.4;
}

td:nth-child(1), th:nth-child(1) {
  width: 3.5rem;
  min-width: 3.5rem;
  max-width: 3.5rem;
  padding-right: 0.25rem;
}

td:nth-child(2), th:nth-child(2) {
  width: 35%;
  min-width: 14rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: left;
}

td:nth-child(3), th:nth-child(3),
td:nth-child(4), th:nth-child(4),
td:nth-child(5), th:nth-child(5),
td:nth-child(6), th:nth-child(6) {
  width: 15%;
  min-width: 5rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  text-align: center;
}

td:nth-child(3),
td:nth-child(4),
td:nth-child(5),
td:nth-child(6) {
  font-size: 0.85em;
}

tbody {
  background: rgba(19, 19, 26, 0.5);
}

tbody tr {
  cursor: pointer;
  transition: all 0.2s ease;
}
tbody tr:hover {
  background-color: rgba(19, 19, 26, 0.25);
  transform: translateX(0.25rem);
}
tbody tr:active {
  background-color: rgba(19, 19, 26, 0.25);
  transform: translateX(0);
}

@media screen and (orientation: landscape) and (max-height: 480px) {
  table {
    font-size: clamp(0.7rem, 1.8vh, 0.8rem);
  }
  th {
    padding: 0.5rem 0.25rem;
    font-size: 0.65rem;
  }
  td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }
  td:nth-child(1), th:nth-child(1) {
    width: 3.5rem;
    min-width: 3.5rem;
    max-width: 3.5rem;
    padding-right: 0.5rem;
  }
  td:nth-child(2), th:nth-child(2) {
    min-width: 12rem;
    padding-left: 0.5rem;
    padding-right: 0.75rem;
  }
}
@media screen and (min-width: 48em) {
  table {
    font-size: 0.9rem;
    border-radius: 0.5rem;
  }
  th {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 0.5rem;
  }
  td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  td:nth-child(1), th:nth-child(1) {
    width: 4rem;
    min-width: 4rem;
    max-width: 4rem;
  }
  td:nth-child(2), th:nth-child(2) {
    min-width: 16rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  td:nth-child(5), th:nth-child(5) {
    min-width: 7rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  td:nth-child(3),
  td:nth-child(4),
  td:nth-child(5),
  td:nth-child(6) {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 64em) {
  th {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 0.5rem;
  }
  td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  td:nth-child(1), th:nth-child(1) {
    width: 5rem;
    min-width: 5rem;
    max-width: 5rem;
  }
  td:nth-child(2), th:nth-child(2) {
    min-width: 18rem;
  }
  td:nth-child(5), th:nth-child(5) {
    min-width: 8rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  td:nth-child(3),
  td:nth-child(4),
  td:nth-child(5),
  td:nth-child(6) {
    font-size: 0.95em;
  }
}
@media screen and (min-resolution: 192dpi) {
  td {
    border-bottom-width: 0.5px;
  }
}
@media print {
  thead {
    background-color: transparent;
    color: #000;
    border-bottom: 2px solid #000;
  }
  tbody tr {
    page-break-inside: avoid;
  }
  td {
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 768px) {
  table {
    font-size: 0.85rem;
  }
  thead th:nth-child(1) {
    width: 2.5rem;
    min-width: 2.5rem;
    max-width: 2.5rem;
    padding: 0.5rem 0.25rem;
  }
  thead th:nth-child(2) {
    width: auto;
    min-width: unset;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
  thead th:nth-child(6) {
    display: none;
  }
  tbody tr td:nth-child(1) {
    width: 2.5rem;
    min-width: 2.5rem;
    max-width: 2.5rem;
    padding: 0.25rem;
  }
  tbody tr td:nth-child(2) {
    width: auto;
    min-width: unset;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  tbody tr td:nth-child(6) {
    display: none;
  }
}
.search-container {
  position: relative;
  width: 100%;
  z-index: 10000;
}

.search-bar {
  padding: clamp(0.5rem, 1.5vh, 1rem);
  width: 100%;
  background: rgba(19, 19, 26, 0.5);
  position: relative;
  z-index: 10000;
  flex: 1;
  min-width: 250px;
}
.search-bar .search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(19, 19, 26, 0.6);
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 2rem;
  color: #FFFFF0;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.search-bar .search-input::placeholder {
  color: rgba(255, 255, 240, 0.4);
}
.search-bar .search-input:focus {
  outline: none;
  border-color: #B4A0FF;
  background: rgba(19, 19, 26, 0.8);
  box-shadow: 0 0 20px rgba(180, 160, 255, 0.2);
  transform: translateY(-1px);
}

#search-bar {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: clamp(0.75rem, 2vh, 1rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(19, 19, 26, 0.5);
  border: 0.125rem solid #B4A0FF;
  border-radius: 0.75rem;
  color: #FFFFF0;
  font-size: clamp(0.875rem, 2vw, 1rem);
  min-height: clamp(2.5rem, 6vh, 3rem);
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  z-index: 1000;
}
#search-bar:focus {
  outline: none;
  border-color: #9D7FFF;
  box-shadow: 0 0 0 0.188rem rgba(255, 255, 240, 0.3);
}
#search-bar::placeholder {
  color: rgba(255, 255, 240, 0.6);
}

.search-results {
  position: absolute;
  top: calc(100% + clamp(0.25rem, 1vh, 0.5rem));
  left: clamp(0.5rem, 1.5vw, 1rem);
  right: clamp(0.5rem, 1.5vw, 1rem);
  background-color: #13131A;
  border: 0.125rem solid #B4A0FF;
  border-radius: clamp(0.75rem, 2vw, 0.9375rem);
  max-height: clamp(15rem, 50vh, 25rem);
  overflow-y: auto;
  z-index: 9999;
  transition: all 0.3s ease;
  display: none;
  box-shadow: 0 0.25rem 0.375rem rgba(157, 127, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.search-results.active {
  display: block;
  animation: slideIn 0.2s ease-out;
}

.search-result-item {
  padding: clamp(0.75rem, 2vh, 1rem);
  min-height: clamp(3rem, 8vh, 3.5rem);
  border-bottom: 0.0625rem solid rgba(180, 160, 255, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:active {
  background-color: rgba(157, 127, 255, 0.2);
}
.search-result-item.selected {
  background-color: rgba(157, 127, 255, 0.2);
}

@media screen and (orientation: landscape) and (max-height: 480px) {
  .search-bar {
    padding: clamp(0.25rem, 1vh, 0.5rem);
  }
  #search-bar {
    min-height: clamp(2rem, 5vh, 2.5rem);
    padding: clamp(0.5rem, 1.5vh, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.8rem, 2vh, 0.875rem);
  }
  .search-results {
    max-height: clamp(10rem, 60vh, 15rem);
  }
  .search-result-item {
    padding: clamp(0.5rem, 1.5vh, 0.75rem);
    min-height: clamp(2.5rem, 7vh, 3rem);
  }
}
@media screen and (min-width: 48em) {
  .search-bar {
    padding: clamp(0.75rem, 2vh, 1rem);
    max-width: 90rem;
    margin: 0 auto;
  }
  #search-bar {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    padding: clamp(0.75rem, 1.5vh, 1rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 1.563rem;
  }
  .search-results {
    left: clamp(1rem, 2vw, 1.5rem);
    right: clamp(1rem, 2vw, 1.5rem);
  }
  .search-result-item {
    padding: clamp(0.75rem, 1.5vh, 1rem) clamp(1rem, 2vw, 1.5rem);
  }
  .search-result-item:hover {
    background-color: rgba(157, 127, 255, 0.1);
  }
}
@media screen and (min-resolution: 192dpi) {
  .search-results {
    border-width: 0.0625rem;
  }
}
.loading-spinner {
  position: relative;
  width: 3rem;
  height: 3rem;
}
.loading-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, #B4A0FF 60deg, transparent 120deg);
  animation: magicSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  filter: blur(1px);
}
.loading-spinner::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #13131A;
  box-shadow: inset 0 0 15px rgba(180, 160, 255, 0.2), 0 0 25px rgba(180, 160, 255, 0.4);
}
.loading-spinner .orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #B4A0FF;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #B4A0FF;
}
.loading-spinner .orbit-dot:nth-child(1) {
  animation: orbit 2s linear infinite;
}
.loading-spinner .orbit-dot:nth-child(2) {
  animation: orbit 2s linear infinite 0.5s;
  opacity: 0.6;
}
.loading-spinner .orbit-dot:nth-child(3) {
  animation: orbit 2s linear infinite 1s;
  opacity: 0.3;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
}
.loading-container .loading-text {
  color: rgba(180, 160, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

#loading-indicator {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(19, 19, 26, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(180, 160, 255, 0.1);
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
#loading-indicator.hidden {
  display: none !important;
}
#loading-indicator:not(.hidden) {
  display: flex !important;
}

.loading-row td {
  padding: 3rem 1rem;
  text-align: center;
  border: none !important;
  background: transparent !important;
}

@media (prefers-reduced-motion: reduce) {
  .loading-spinner::before,
  .orbit-dot {
    animation-duration: 3s;
  }
  .loading-text {
    animation: none;
    opacity: 0.9;
  }
}
@media screen and (max-width: 48em) {
  .loading-spinner {
    width: 2.5rem;
    height: 2.5rem;
  }
  .loading-container {
    padding: 1.5rem;
    gap: 1rem;
  }
  #loading-indicator {
    width: 90%;
    max-width: 20rem;
  }
}
.custom-input, .salary-cap-draft-page .bid-controls .bid-input-group input {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: transparent;
  border: 1px solid #FFFFF0;
  border-radius: 0.5rem;
  color: #FFFFF0;
  transition: border-color 0.3s ease;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-input::-webkit-outer-spin-button, .salary-cap-draft-page .bid-controls .bid-input-group input::-webkit-outer-spin-button, .custom-input::-webkit-inner-spin-button, .salary-cap-draft-page .bid-controls .bid-input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-input[type=number], .salary-cap-draft-page .bid-controls .bid-input-group input[type=number] {
  -moz-appearance: textfield;
}
.custom-input:focus, .salary-cap-draft-page .bid-controls .bid-input-group input:focus {
  outline: none;
  border-color: #B4A0FF;
  box-shadow: 0 0 0 0.1875rem rgba(157, 127, 255, 0.2);
}

@media screen and (min-width: 48em) {
  .custom-input, .salary-cap-draft-page .bid-controls .bid-input-group input {
    width: auto;
    min-width: 18.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1.5625rem;
    font-size: 0.9rem;
    min-height: 2.5rem;
  }
}
.player-tooltip {
  position: absolute;
  background-color: #13131A;
  border-radius: 0.25rem;
  padding: 0.75rem;
  z-index: 10000;
  min-width: 12.5rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(180, 160, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.player-tooltip.visible {
  opacity: 1;
  transform: translateY(-2px);
}

.tooltip-content {
  font-size: 0.9rem;
  line-height: 1.4;
}
.tooltip-content .player-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #B4A0FF;
}
.tooltip-content .player-details {
  color: #B0AFAE;
}
.tooltip-content .tooltip-hint {
  font-size: 0.75rem;
  color: rgba(176, 175, 174, 0.7);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(180, 160, 255, 0.1);
  font-style: italic;
}

body:has(.home-page) {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.home-page {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-page .hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #9D7FFF;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  padding-top: 5rem;
}
.home-page .hero h1 {
  font-size: clamp(8rem, 15vmin, 18rem);
  margin: 0;
  background: linear-gradient(135deg, #9D7FFF 0%, #B4A0FF 40%, #C5B3FF 70%, #9D7FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  line-height: 1.1;
}
.home-page .hero h1::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9D7FFF 0%, #B4A0FF 40%, #C5B3FF 70%, #9D7FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(3px);
  opacity: 0.5;
  z-index: -1;
}
.home-page .hero h1:hover {
  transform: scale(1.01);
}
@media (max-width: 575.98px) and (orientation: landscape) {
  .home-page .hero h1 {
    font-size: clamp(4rem, 12vmin, 8rem);
    margin-top: 1rem;
  }
}
.home-page .hero p {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1rem, 2.5vmin, 2rem);
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  margin: 4vh auto 0;
  max-width: 75vw;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  color: rgba(255, 255, 240, 0.85);
  letter-spacing: 0.03em;
  padding: 0 3vw;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding-bottom: 8rem;
}
.home-page .hero p span {
  display: inline-block;
  background: linear-gradient(90deg, #B4A0FF, #C5B3FF, #B4A0FF);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  animation: shimmer 3s linear infinite;
}
.home-page .hero p span:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
}
@media (max-width: 575.98px) and (orientation: landscape) {
  .home-page .hero p {
    padding-bottom: 4rem;
    font-size: clamp(0.9rem, 2vmin, 1.2rem);
    margin-top: 2vh;
    max-width: 85vw;
  }
}
@media (max-width: 575.98px) and (orientation: landscape) {
  .home-page .hero {
    padding-top: 3rem;
    justify-content: flex-start;
    padding-bottom: 3rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) and (orientation: landscape) {
  .home-page .hero {
    padding-top: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
  .home-page .hero {
    padding-top: 4rem;
  }
}
.home-page .btn-follow-us {
  padding: calc(0.15rem + env(safe-area-inset-top, 0)) calc(0.35rem + env(safe-area-inset-right, 0));
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.6rem, 1.2vmin, 0.7rem);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vmin, 4rem);
  position: fixed;
  bottom: clamp(3rem, 4vh, 6rem);
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: clamp(2rem, 10vh, 3.5rem);
  max-height: 4rem;
  min-height: 3.5rem;
  background: linear-gradient(to right, rgba(13, 13, 18, 0.95), rgba(13, 13, 18, 0.98));
  color: #FFFFF0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 240, 0.1);
  box-shadow: inset 0 0 0 1px rgba(180, 160, 255, 0.01), 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(157, 127, 255, 0.03);
  letter-spacing: 0.04em;
  min-height: unset;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, floatButton 6s ease-in-out infinite;
}
.home-page .btn-follow-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-page .btn-follow-us:hover::before {
  transform: translateX(100%);
}
.home-page .btn-follow-us.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .home-page .btn-follow-us::before {
    transition-duration: 0.1s;
  }
}
.home-page .btn-follow-us.purple {
  font-weight: 800;
  background: linear-gradient(to right, rgba(180, 160, 255, 0.04), rgba(180, 160, 255, 0.06));
  border-color: #B4A0FF;
}
.home-page .btn-follow-us img {
  width: clamp(0.9rem, 2.5vmin, 1.1rem);
  height: clamp(0.9rem, 2.5vmin, 1.1rem);
  margin-right: clamp(0.4rem, 1.2vw, 0.6rem);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
}
.home-page .btn-follow-us:hover {
  background: linear-gradient(to right, rgba(157, 127, 255, 0.04), rgba(157, 127, 255, 0.06));
  border-color: #9D7FFF;
  transform: translateX(-50%) translateY(-3px);
  color: #9D7FFF;
}
.home-page .btn-follow-us:hover img {
  transform: scale(1.15) rotate(5deg);
}
@media (max-width: 575.98px) {
  .home-page .btn-follow-us {
    width: clamp(280px, 85%, 500px);
    height: clamp(2.4rem, 10vh, 3rem);
    font-size: clamp(1rem, 4vmin, 1.2rem);
  }
}
@media (orientation: landscape) {
  .home-page .btn-follow-us {
    bottom: clamp(2rem, 4vh, 3rem);
  }
}
@media (max-width: 575.98px) and (orientation: landscape) {
  .home-page .btn-follow-us {
    bottom: 1rem;
    height: 2.2rem;
    font-size: 0.9rem;
    width: clamp(200px, 70%, 300px);
  }
  .home-page .btn-follow-us img {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.home-page .aurora-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #13131A;
}
.home-page .aurora-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(19, 19, 26, 0.4) 50%), radial-gradient(circle at 20% 80%, rgba(157, 127, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(68, 161, 160, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(180, 160, 255, 0.05) 0%, transparent 50%);
}
.home-page .aurora-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(19, 19, 26, 0.3) 50%, rgba(19, 19, 26, 0.6) 100%);
  pointer-events: none;
}
.home-page .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  mix-blend-mode: screen;
  will-change: transform;
  pointer-events: none;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 575.98px) {
  .home-page .aurora-blob {
    filter: blur(80px);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .aurora-blob {
    filter: blur(80px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .aurora-blob {
    filter: blur(80px);
  }
}
@media (max-width: 575.98px) and (orientation: landscape) {
  .home-page .aurora-blob {
    filter: blur(60px);
    opacity: 0.3;
  }
}
.home-page .blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 30%, rgba(157, 127, 255, 0.5) 0%, rgba(157, 127, 255, 0.2) 25%, rgba(157, 127, 255, 0.1) 45%, transparent 50%);
  left: -300px;
  top: -300px;
  animation: moveBlob1 20s infinite ease-in-out;
}
@media (max-width: 575.98px) {
  .home-page .blob-1 {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .blob-1 {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .blob-1 {
    width: 500px;
    height: 500px;
  }
}
.home-page .blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 70% 70%, rgba(68, 161, 160, 0.4) 0%, rgba(68, 161, 160, 0.15) 25%, rgba(68, 161, 160, 0.08) 45%, transparent 50%);
  right: -200px;
  top: 20%;
  animation: moveBlob2 25s infinite ease-in-out;
  animation-delay: -5s;
}
@media (max-width: 575.98px) {
  .home-page .blob-2 {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .blob-2 {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .blob-2 {
    width: 400px;
    height: 400px;
  }
}
.home-page .blob-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle at 50% 50%, rgba(68, 161, 160, 0.35) 0%, rgba(68, 161, 160, 0.12) 25%, rgba(68, 161, 160, 0.06) 45%, transparent 50%);
  left: 35%;
  bottom: -200px;
  animation: moveBlob3 22s infinite ease-in-out;
  animation-delay: -10s;
}
@media (max-width: 575.98px) {
  .home-page .blob-3 {
    width: 350px;
    height: 350px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .blob-3 {
    width: 350px;
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .blob-3 {
    width: 350px;
    height: 350px;
  }
}
.home-page .blob-4 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 60% 40%, rgba(180, 160, 255, 0.3) 0%, rgba(180, 160, 255, 0.1) 25%, rgba(180, 160, 255, 0.05) 45%, transparent 50%);
  right: 20%;
  top: 5%;
  animation: moveBlob4 28s infinite ease-in-out;
  animation-delay: -15s;
}
@media (max-width: 575.98px) {
  .home-page .blob-4 {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .blob-4 {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .blob-4 {
    width: 300px;
    height: 300px;
  }
}

.predictions-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  animation: fadeInUp 0.6s ease-out;
  max-width: 1400px;
  margin: 0 auto;
}
.predictions-page .predictions-info {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.05) 0%, rgba(180, 160, 255, 0.02) 100%);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  position: relative;
  width: 90%;
  max-width: 50rem;
  margin: 1rem auto 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.predictions-page .predictions-info:hover {
  border-color: rgba(180, 160, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 160, 255, 0.1);
}
.predictions-page .predictions-info.hidden {
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  margin: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
  display: none;
}
.predictions-page .predictions-info p {
  margin: 0;
  color: rgba(255, 255, 240, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.predictions-page .predictions-info .info-close-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: #FFFFF0;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.25rem;
  min-height: auto;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding: 0;
  color: rgba(255, 255, 240, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}
.predictions-page .predictions-info .info-close-btn:hover {
  color: #B4A0FF;
}
.predictions-page .predictions-info .info-close-btn:focus {
  outline: 2px solid #9D7FFF;
  outline-offset: 2px;
}
.predictions-page .predictions-info .info-close-btn:hover {
  opacity: 1;
  color: #B4A0FF;
  transform: scale(1.1);
}
.predictions-page .controls-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
  position: relative;
  z-index: 100;
  border-bottom: 0.0625rem solid rgba(180, 160, 255, 0.1);
}
.predictions-page .predictions-player-headshot {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  object-fit: cover;
  border: 0.09375rem solid #B0AFAE;
  border-radius: 50%;
  display: block;
}
.predictions-page .predictions-player-headshot:hover {
  transform: scale(1.1);
  border-color: rgba(180, 160, 255, 0.5);
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.2);
}
@media (max-width: 575.98px) {
  .predictions-page .predictions-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .predictions-page .predictions-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .predictions-page .predictions-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
.predictions-page .predictions-table-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(19, 19, 26, 0.5);
  border-radius: 1rem;
  position: relative;
  margin-bottom: env(safe-area-inset-bottom);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  flex: 1;
  max-height: calc(100vh - 400px);
}
.predictions-page .predictions-table-container::-webkit-scrollbar {
  display: none;
  width: 6px;
}
.predictions-page .predictions-table-container::-webkit-scrollbar-track {
  background: rgba(19, 19, 26, 0.2);
  border-radius: 3px;
}
.predictions-page .predictions-table-container::-webkit-scrollbar-thumb {
  background: rgba(180, 160, 255, 0.3);
  border-radius: 3px;
}
.predictions-page .predictions-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 160, 255, 0.5);
}
.predictions-page #predictions-table {
  position: relative;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  word-break: break-word;
}
.predictions-page #predictions-table thead tr th {
  background: transparent;
  border-bottom: 1px solid rgba(180, 160, 255, 0.1);
  position: relative;
  z-index: 1;
}
.predictions-page #predictions-table thead tr th.th-rank {
  width: 20%;
  text-align: center;
}
.predictions-page #predictions-table thead tr th.th-avatar {
  width: 10%;
  padding: 0.5rem;
}
.predictions-page #predictions-table thead tr th.th-name {
  width: 50%;
  text-align: left;
  padding-right: 1rem;
}
.predictions-page #predictions-table thead tr th.th-team {
  width: 20%;
  text-align: center;
}
.predictions-page #predictions-table thead tr th.th-points {
  width: 20%;
  text-align: center;
  padding: 0.5rem;
}
.predictions-page #predictions-table tbody tr {
  opacity: 0;
  animation: rowSlideIn 0.5s ease-out forwards;
}
.predictions-page #predictions-table tbody tr:nth-child(1) {
  animation-delay: 0.05s;
}
.predictions-page #predictions-table tbody tr:nth-child(2) {
  animation-delay: 0.1s;
}
.predictions-page #predictions-table tbody tr:nth-child(3) {
  animation-delay: 0.15s;
}
.predictions-page #predictions-table tbody tr:nth-child(4) {
  animation-delay: 0.2s;
}
.predictions-page #predictions-table tbody tr:nth-child(5) {
  animation-delay: 0.25s;
}
.predictions-page #predictions-table tbody tr:nth-child(6) {
  animation-delay: 0.3s;
}
.predictions-page #predictions-table tbody tr:nth-child(7) {
  animation-delay: 0.35s;
}
.predictions-page #predictions-table tbody tr:nth-child(8) {
  animation-delay: 0.4s;
}
.predictions-page #predictions-table tbody tr:nth-child(9) {
  animation-delay: 0.45s;
}
.predictions-page #predictions-table tbody tr:nth-child(10) {
  animation-delay: 0.5s;
}
.predictions-page #predictions-table tbody tr:nth-child(11) {
  animation-delay: 0.55s;
}
.predictions-page #predictions-table tbody tr:nth-child(12) {
  animation-delay: 0.6s;
}
.predictions-page #predictions-table tbody tr:nth-child(13) {
  animation-delay: 0.65s;
}
.predictions-page #predictions-table tbody tr:nth-child(14) {
  animation-delay: 0.7s;
}
.predictions-page #predictions-table tbody tr:nth-child(15) {
  animation-delay: 0.75s;
}
.predictions-page #predictions-table tbody tr:nth-child(16) {
  animation-delay: 0.8s;
}
.predictions-page #predictions-table tbody tr:nth-child(17) {
  animation-delay: 0.85s;
}
.predictions-page #predictions-table tbody tr:nth-child(18) {
  animation-delay: 0.9s;
}
.predictions-page #predictions-table tbody tr:nth-child(19) {
  animation-delay: 0.95s;
}
.predictions-page #predictions-table tbody tr:nth-child(20) {
  animation-delay: 1s;
}
.predictions-page #predictions-table tbody tr.clickable {
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.predictions-page #predictions-table tbody tr.clickable:hover {
  background: linear-gradient(90deg, rgba(180, 160, 255, 0.02) 0%, rgba(180, 160, 255, 0.05) 50%, rgba(180, 160, 255, 0.02) 100%);
  transform: translateX(5px);
}
.predictions-page #predictions-table tbody tr.clickable:hover td {
  color: #FFFFF0;
}
.predictions-page #predictions-table tbody tr.clickable:hover .predictions-player-headshot {
  transform: scale(1.1);
  border-color: rgba(180, 160, 255, 0.5);
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.2);
}
.predictions-page #predictions-table tbody tr.active {
  background: linear-gradient(90deg, rgba(180, 160, 255, 0.05) 0%, rgba(180, 160, 255, 0.08) 50%, rgba(180, 160, 255, 0.05) 100%);
}
.predictions-page #predictions-table tbody tr.active .predictions-player-headshot {
  border-color: #B4A0FF;
  transform: scale(1.1);
}
.predictions-page #predictions-table tbody tr.active td {
  color: #FFFFF0;
}
@media (max-width: 575.98px) {
  .predictions-page #predictions-table {
    font-size: 0.85rem;
    min-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .predictions-page #predictions-table thead tr th.th-rank {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-avatar {
    width: 20%;
    padding: 0.5rem;
  }
  .predictions-page #predictions-table thead tr th.th-name {
    width: 40%;
    text-align: left;
    padding-right: 0.5rem;
  }
  .predictions-page #predictions-table thead tr th.th-team {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-points {
    width: 20%;
    text-align: center;
    padding: 0.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .predictions-page #predictions-table {
    font-size: 0.85rem;
    min-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .predictions-page #predictions-table thead tr th.th-rank {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-avatar {
    width: 20%;
    padding: 0.5rem;
  }
  .predictions-page #predictions-table thead tr th.th-name {
    width: 40%;
    text-align: left;
    padding-right: 0.5rem;
  }
  .predictions-page #predictions-table thead tr th.th-team {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-points {
    width: 20%;
    text-align: center;
    padding: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .predictions-page #predictions-table {
    font-size: 0.85rem;
    min-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .predictions-page #predictions-table thead tr th.th-rank {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-avatar {
    width: 20%;
    padding: 0.5rem;
  }
  .predictions-page #predictions-table thead tr th.th-name {
    width: 40%;
    text-align: left;
  }
  .predictions-page #predictions-table thead tr th.th-team {
    width: 20%;
    text-align: center;
  }
  .predictions-page #predictions-table thead tr th.th-points {
    width: 20%;
    text-align: center;
    padding: 0.5rem;
  }
}
.predictions-page .player-row td {
  border-bottom: 1px solid rgba(180, 160, 255, 0.05);
  color: rgba(255, 255, 240, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.predictions-page .player-name-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.predictions-page .player-name-container:hover .player-label-badge {
  opacity: 1;
  transform: translateY(-1px);
}
.predictions-page .player-name {
  font-weight: 500;
  color: #FFFFF0;
  line-height: 1.2;
}
.predictions-page .player-labels-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  animation: fadeInUp 0.4s ease-out 0.1s both;
}
.predictions-page .outlook-row {
  display: none;
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.03) 0%, rgba(19, 19, 26, 0.5) 100%);
  border-bottom: 1px solid rgba(180, 160, 255, 0.1);
}
.predictions-page .outlook-row.visible {
  display: table-row;
  animation: fadeInUp 0.4s ease-out;
}
.predictions-page .outlook-row td {
  padding: 2rem 3rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.predictions-page .outlook-content {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.predictions-page .outlook-section {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(19, 19, 26, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.predictions-page .outlook-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(180, 160, 255, 0.1);
  border-color: rgba(180, 160, 255, 0.2);
}
.predictions-page .outlook-section h4 {
  color: #B4A0FF;
  margin: 0 0 1rem 0;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.predictions-page .outlook-section p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 240, 0.8);
  font-weight: 300;
}
.predictions-page .outlook-text {
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 240, 0.85);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
.predictions-page .outlook-text * {
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}
.predictions-page .outlook-text p {
  margin: 0 0 0.75rem 0;
  padding: 0;
  line-height: inherit;
  color: inherit;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  width: 100%;
  max-width: 100%;
}
.predictions-page .outlook-text p:last-child {
  margin-bottom: 0;
}
.predictions-page .outlook-text strong, .predictions-page .outlook-text b {
  font-weight: 500;
  color: #FFFFF0;
  display: inline;
}
.predictions-page .outlook-text em, .predictions-page .outlook-text i {
  font-style: italic;
  opacity: 0.9;
  display: inline;
}
.predictions-page .outlook-text ul, .predictions-page .outlook-text ol {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
}
.predictions-page .outlook-text li {
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.predictions-page .outlook-text a {
  color: #B4A0FF;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline;
  word-break: break-word;
}
.predictions-page .outlook-text a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.predictions-page .outlook-text code {
  font-family: monospace;
  background: rgba(180, 160, 255, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  font-size: 0.9em;
  display: inline;
  word-break: break-all;
}
.predictions-page .outlook-text blockquote {
  border-left: 3px solid rgba(180, 160, 255, 0.3);
  padding-left: 1rem;
  margin: 1rem 0;
  opacity: 0.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.predictions-page .outlook-text h1, .predictions-page .outlook-text h2, .predictions-page .outlook-text h3, .predictions-page .outlook-text h4, .predictions-page .outlook-text h5, .predictions-page .outlook-text h6 {
  font-weight: 500;
  color: #B4A0FF;
  margin: 1rem 0 0.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.predictions-page .outlook-toggle-btn {
  background: transparent;
  border: 1px solid rgba(180, 160, 255, 0.3);
  color: rgba(255, 255, 240, 0.7);
  padding: 0.5rem 3rem 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23B4A0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 1.25rem;
}
.predictions-page .outlook-toggle-btn:hover {
  border-color: rgba(180, 160, 255, 0.4);
  background-color: rgba(19, 19, 26, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(157, 127, 255, 0.15);
  color: rgba(255, 255, 240, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.predictions-page .outlook-toggle-btn:active {
  transform: translateY(0);
  color: #FFFFF0;
}
.predictions-page .outlook-toggle-btn:focus {
  outline: none;
  border-color: #B4A0FF;
  box-shadow: 0 0 20px rgba(180, 160, 255, 0.2);
  background-color: rgba(157, 127, 255, 0.03);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239D7FFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.predictions-page .outlook-expanded {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(180, 160, 255, 0.1);
  animation: fadeIn 0.3s ease-out;
  font-size: 0.95rem;
}
.predictions-page .outlook-expanded p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 240, 0.85);
}
@media (max-width: 575.98px) {
  .predictions-page .outlook-row td {
    padding: 1rem;
  }
  .predictions-page .outlook-section {
    padding: 1rem;
  }
  .predictions-page .outlook-text {
    font-size: 0.95rem;
  }
  .predictions-page .outlook-toggle-btn {
    font-size: 0.8rem;
    padding: 0.4rem 2.5rem 0.4rem 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .predictions-page .outlook-expanded {
    font-size: 0.9rem;
  }
  .predictions-page .outlook-expanded p {
    font-size: 0.9rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .predictions-page .outlook-row td {
    padding: 1.5rem;
  }
  .predictions-page .outlook-section {
    padding: 1.5rem;
  }
}
.predictions-page .player-label-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  opacity: 0.85;
  user-select: none;
}
.predictions-page .player-label-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
  border-color: rgba(180, 160, 255, 0.4);
}
.predictions-page .player-label-badge:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.predictions-page .player-label-badge:focus {
  outline: 2px solid rgba(180, 160, 255, 0.5);
  outline-offset: 2px;
}
.predictions-page .player-label-badge.tooltip-active {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(180, 160, 255, 0.2);
  border-color: rgba(180, 160, 255, 0.6);
}
.predictions-page .player-label-badge.badge-sleeper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}
.predictions-page .player-label-badge.badge-bust {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.predictions-page .player-label-badge.badge-stud {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}
.predictions-page .player-label-badge.badge-breakout {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
}
.predictions-page .player-label-badge.badge-handcuff {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}
.predictions-page .player-label-badge.badge-value-target {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}
.predictions-page .player-label-badge.badge-boom-bust {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}
.predictions-page .player-label-badge.badge-streamer {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.08) 100%);
  color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.3);
}
.predictions-page .player-label-badge.badge-injury-risk {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
}
.predictions-page .player-label-badge.badge-rookie {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.08) 100%);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.3);
}
.predictions-page .player-label-badge.badge-default {
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.15) 0%, rgba(180, 160, 255, 0.08) 100%);
  color: #B4A0FF;
  border-color: rgba(180, 160, 255, 0.3);
}
@media (max-width: 575.98px) {
  .predictions-page .player-name-container {
    gap: 0.4rem;
  }
  .predictions-page .player-labels-inline {
    gap: 0.2rem;
  }
  .predictions-page .player-label-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
}
.predictions-page .player-tooltip .tooltip-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #B0AFAE;
  text-align: center;
}

.draft-selection-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 1400px;
  margin: 0 auto;
}
.draft-selection-page .draft-selection {
  text-align: left;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
}
.draft-selection-page .draft-selection p {
  color: rgba(255, 255, 240, 0.8);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.draft-selection-page .draft-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .draft-selection-page .draft-options {
    flex-direction: row;
    max-width: 900px;
    gap: 2rem;
  }
}
.draft-selection-page .draft-option {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  position: relative;
}
.draft-selection-page .draft-card {
  background-color: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(180, 160, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  min-height: 300px;
  height: 100%;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  margin: 0;
  box-sizing: border-box;
  justify-content: space-between;
}
.draft-selection-page .draft-card:hover {
  border-color: rgba(180, 160, 255, 0.4);
  background-color: rgba(180, 160, 255, 0.02);
  box-shadow: 0 10px 30px rgba(180, 160, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .draft-selection-page .draft-card {
    min-height: 340px;
    padding: 3rem 2.5rem;
    border-radius: 2rem;
  }
}
.draft-selection-page .draft-card h3 {
  color: rgba(255, 255, 240, 0.8);
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  padding-bottom: 1rem;
}
.draft-selection-page .draft-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(120, 120, 120, 0.8784313725);
  opacity: 0.3;
  animation: underlineExpand 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
@media screen and (min-width: 768px) {
  .draft-selection-page .draft-card h3 {
    font-size: 2rem;
  }
}
.draft-selection-page .draft-card ul {
  list-style: none;
  padding-bottom: 2rem;
  margin: 0;
}
.draft-selection-page .draft-card li {
  color: rgba(255, 255, 240, 0.85);
  position: relative;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: all 0.3s ease;
  padding-left: 1.5em;
}
.draft-selection-page .draft-card li::before {
  content: "◦";
  position: absolute;
  left: 0;
  top: 0;
  color: #B4A0FF;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
}
.draft-selection-page .draft-card li strong {
  font-weight: 400;
}
.draft-selection-page .btn-draft-selection {
  background: linear-gradient(135deg, #B4A0FF 0%, rgba(180, 160, 255, 0.8) 100%);
  color: #13131A;
  border: none;
  padding: 1rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: auto;
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  max-height: 50px;
  align-self: center;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out forwards;
  animation: pulseGlowSmall 2s infinite;
}
.draft-selection-page .btn-draft-selection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%) skewX(-45deg);
  transition: transform 0.6s ease;
}
.draft-selection-page .btn-draft-selection:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgb(200.1315789474, 185.5, 255) 0%, #B4A0FF 100%);
}
.draft-selection-page .btn-draft-selection:hover::after {
  transform: translateX(200%) skewX(-45deg);
}
.draft-selection-page .btn-draft-selection:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 160, 255, 0.3);
  transition-duration: 0.1s;
}
.draft-selection-page .btn-draft-selection:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(180, 160, 255, 0.3), 0 0 0 3px rgba(180, 160, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .draft-selection-page .btn-draft-selection {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}

.salary-cap-draft-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  max-width: 1400px;
  margin: 0 auto;
}
.salary-cap-draft-page .table-section {
  overflow: visible;
  position: relative;
}
.salary-cap-draft-page .controls-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0 1rem 0;
}
.salary-cap-draft-page .controls-row #ai-recs-toggle {
  --toggle-height: 2.25rem;
  --toggle-padding: 0.25rem;
  --toggle-radius: 9999px;
  display: inline-flex;
  align-items: center;
  position: relative;
  height: var(--toggle-height);
  border-radius: var(--toggle-radius);
  padding: var(--toggle-padding);
  background: #13131A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  user-select: none;
  min-width: 280px;
  width: max-content;
  gap: 0.25rem;
}
.salary-cap-draft-page .controls-row #ai-recs-toggle .option {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 240, 0.8);
  padding: 0 0.75rem;
  font-size: 0.85rem;
}
.salary-cap-draft-page .controls-row #ai-recs-toggle .thumb {
  position: absolute;
  z-index: 1;
  top: var(--toggle-padding);
  left: var(--toggle-padding);
  width: calc(50% - var(--toggle-padding));
  height: calc(var(--toggle-height) - var(--toggle-padding) * 2);
  border-radius: var(--toggle-radius);
  background: #0b0d12;
  border: 1px solid rgba(180, 160, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(180, 160, 255, 0.08), 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  transform: translateX(0%);
}
.salary-cap-draft-page .controls-row #ai-recs-toggle.active .thumb {
  transform: translateX(100%);
}
.salary-cap-draft-page .controls-row #ai-recs-toggle.active .option-right {
  color: #FFFFF0;
}
.salary-cap-draft-page .controls-row #ai-recs-toggle:not(.active) .option-left {
  color: #FFFFF0;
}
@keyframes aiRecsSubtleGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
.salary-cap-draft-page #available-players {
  position: relative;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow-y: auto;
}
.salary-cap-draft-page #available-players thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.salary-cap-draft-page #available-players th, .salary-cap-draft-page #available-players td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.salary-cap-draft-page #available-players td:nth-child(1), .salary-cap-draft-page #available-players th:nth-child(1) {
  width: 20%;
  text-align: center;
  padding: 0.5rem;
}
.salary-cap-draft-page #available-players td:nth-child(2), .salary-cap-draft-page #available-players th:nth-child(2) {
  width: 40%;
  text-align: left;
}
.salary-cap-draft-page #available-players td:nth-child(3), .salary-cap-draft-page #available-players th:nth-child(3) {
  width: 20%;
}
.salary-cap-draft-page #available-players td:nth-child(4), .salary-cap-draft-page #available-players th:nth-child(4) {
  width: 20%;
}
.salary-cap-draft-page #available-players td:nth-child(5), .salary-cap-draft-page #available-players th:nth-child(5) {
  width: 20%;
}
.salary-cap-draft-page #available-players td:nth-child(2) {
  white-space: normal;
  overflow: visible;
}
.salary-cap-draft-page #available-players td:nth-child(2) .player-name-container {
  align-items: flex-start;
}
.salary-cap-draft-page #available-players td:nth-child(2) .player-labels-inline {
  flex-wrap: wrap;
  white-space: normal;
  min-width: 0;
}
.salary-cap-draft-page #available-players td:nth-child(2) .player-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.salary-cap-draft-page #available-players td:nth-child(2) .player-label-badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.salary-cap-draft-page .player-name-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}
.salary-cap-draft-page .player-name {
  font-weight: 500;
  color: #FFFFF0;
}
.salary-cap-draft-page .player-labels-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.salary-cap-draft-page .player-label-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  opacity: 0.9;
}
.salary-cap-draft-page .player-label-badge.badge-sleeper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-bust {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-stud {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-breakout {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-handcuff {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-value-target {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-boom-bust {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-streamer {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.08) 100%);
  color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-injury-risk {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-rookie {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.08) 100%);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.3);
}
.salary-cap-draft-page .player-label-badge.badge-default {
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.15) 0%, rgba(180, 160, 255, 0.08) 100%);
  color: #B4A0FF;
  border-color: rgba(180, 160, 255, 0.3);
}
.salary-cap-draft-page .value-bar {
  position: relative;
  width: 100%;
  height: 0.65rem;
  background: rgba(255, 255, 240, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 240, 0.12);
}
.salary-cap-draft-page .value-bar-fill {
  height: 100%;
  width: 0%;
  background: none;
  background-color: rgba(9, 188, 138, 0.65);
  border-radius: 9999px;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.salary-cap-draft-page .value-bar-fill.tier-low {
  background: linear-gradient(90deg, rgba(225, 85, 84, 0.2), rgba(225, 85, 84, 0.5));
}
.salary-cap-draft-page .value-bar-fill.tier-mid {
  background: linear-gradient(90deg, rgba(255, 184, 77, 0.3), rgba(255, 184, 77, 0.6));
}
.salary-cap-draft-page .value-bar-fill.tier-high {
  background: linear-gradient(90deg, rgba(9, 188, 138, 0.35), rgba(9, 188, 138, 0.85));
}
.salary-cap-draft-page .position-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.salary-cap-draft-page .pos-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  background: rgba(19, 19, 26, 0.5);
  border: 1px solid rgba(180, 160, 255, 0.2);
  color: #FFFFF0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.salary-cap-draft-page .pos-label {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #B4A0FF;
}
.salary-cap-draft-page .pos-values {
  opacity: 0.85;
  font-weight: 500;
  color: rgba(255, 255, 240, 0.9);
}
.salary-cap-draft-page .roster-stats {
  background: rgba(19, 19, 26, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  width: 100%;
  gap: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.salary-cap-draft-page .roster-stats p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFFFF0;
}
.salary-cap-draft-page .roster-stats p span {
  color: #B4A0FF;
  font-weight: 600;
  font-size: 1.3rem;
}
.salary-cap-draft-page .roster-stats.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
}
.salary-cap-draft-page .roster-section {
  margin-top: 1rem;
  background: rgba(19, 19, 26, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.25rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow-y: auto;
  margin: 0;
  max-height: calc(100vh - 0rem);
  overflow: visible;
}
.salary-cap-draft-page .roster-section::after {
  display: none;
}
.salary-cap-draft-page .roster-section.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
}
.salary-cap-draft-page .roster-section.active {
  display: flex !important;
  min-height: 5rem;
  max-height: 20rem;
  margin: 0;
  padding: 1rem 0 0 0;
}
.salary-cap-draft-page .salary-cap-info {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.05) 0%, rgba(180, 160, 255, 0.02) 100%);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  position: relative;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}
.salary-cap-draft-page .salary-cap-info:hover {
  border-color: rgba(180, 160, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 160, 255, 0.1);
}
.salary-cap-draft-page .salary-cap-info p {
  margin: 0;
  color: rgba(255, 255, 240, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 575.98px) {
  .salary-cap-draft-page .salary-cap-info p {
    font-size: 0.85rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .salary-cap-draft-page .salary-cap-info p {
    font-size: 0.85rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .salary-cap-draft-page .salary-cap-info p {
    font-size: 0.85rem;
  }
}
.salary-cap-draft-page .salary-cap-info .close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 240, 0.5);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 2rem;
  height: 2rem;
  line-height: 1;
}
.salary-cap-draft-page .salary-cap-info .close-btn:hover {
  color: #B4A0FF;
  transform: scale(1.1);
}
.salary-cap-draft-page .bid-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
  min-height: 0;
  max-width: 320px;
  margin: 0;
  padding: 0;
}
.salary-cap-draft-page .bid-controls .bid-input-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(180, 160, 255, 0.1);
}
.salary-cap-draft-page .bid-controls .bid-input-group label {
  font-size: 0.9rem;
  color: rgba(255, 255, 240, 0.65);
  font-weight: 300;
  opacity: 1;
}
.salary-cap-draft-page .bid-controls .bid-input-group input {
  border-color: #FFFFF0;
  min-width: 80px;
  max-width: 120px;
  width: 100%;
  height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 240, 0.2);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFF0;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.salary-cap-draft-page .bid-controls .bid-input-group input:focus {
  border-color: #FFFFF0;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 240, 0.1);
}
.salary-cap-draft-page .bid-controls .bid-input-group input:hover {
  border-color: rgba(255, 255, 240, 0.4);
}
.salary-cap-draft-page .bid-controls label {
  font-weight: 700;
  white-space: nowrap;
}
.salary-cap-draft-page .bid-controls button {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: #FFFFF0;
  border: 1px solid #FFFFF0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  min-width: 120px;
  cursor: pointer;
  min-height: 2.75rem;
  max-width: 200px;
}
.salary-cap-draft-page .bid-controls button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.salary-cap-draft-page .bid-controls button:hover::before {
  transform: translateX(100%);
}
.salary-cap-draft-page .bid-controls button:hover {
  background-color: rgba(255, 255, 240, 0.1);
  color: #FFFFF0;
  border-color: #B4A0FF;
}
.salary-cap-draft-page .bid-controls button.secondary {
  background-color: transparent;
  border: 1px solid rgba(180, 160, 255, 0.2);
  border-radius: 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 2.75rem;
}
.salary-cap-draft-page .bid-controls button.secondary:hover {
  background-color: rgba(255, 255, 240, 0.1);
  color: #FFFFF0;
  border-color: #B4A0FF;
}
.salary-cap-draft-page .success {
  max-width: 37.5rem;
  margin: 1rem auto 2rem;
  padding: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Roboto", sans-serif;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  color: #FFFFF0;
  width: 100%;
  margin: 0 auto 1rem;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: 1rem;
}
.salary-cap-draft-page .error {
  max-width: 37.5rem;
  margin: 1rem auto 2rem;
  padding: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Roboto", sans-serif;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  color: #E15554;
  border: 0.0625rem solid rgba(225, 85, 84, 0.2);
  border-radius: 0.5rem;
  width: 100%;
  margin: 0 auto;
}
.salary-cap-draft-page .error p {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.salary-cap-draft-page .message-info {
  max-width: 37.5rem;
  margin: 1rem auto 2rem;
  padding: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Roboto", sans-serif;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  color: #FFFFF0;
  border: 0.0625rem solid #B4A0FF;
}
.salary-cap-draft-page .bid-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(180, 160, 255, 0.1);
  width: 100%;
}
.salary-cap-draft-page .bid-message p {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 0;
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
  color: rgba(255, 255, 240, 0.65);
}
.salary-cap-draft-page .bid-message p.max-recommended-bid-text {
  font-size: 0.8rem;
  font-weight: 300;
}
.salary-cap-draft-page .bid-message p.player-name {
  font-size: 1.25rem;
  color: #B4A0FF;
}
.salary-cap-draft-page .bid-message p.bid-amount {
  font-size: 1.5rem;
  color: #09BC8A;
  font-weight: 800;
}
.salary-cap-draft-page .salary-cap-result-section {
  background: #13131A;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  height: 0;
  max-height: 80vh;
  padding: 0;
  transition: opacity 0.3s ease-out, min-height 0.3s ease-out;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.salary-cap-draft-page .salary-cap-result-section.active {
  display: flex !important;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  min-height: 250px;
  height: auto;
  overflow: visible;
  align-items: center;
  justify-content: center;
  max-height: none;
}
.salary-cap-draft-page .salary-cap-result-section:not(.active) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
.salary-cap-draft-page .salary-cap-result-section:has(#loading-indicator:not(.hidden)) {
  display: flex !important;
  min-height: 250px;
  height: auto;
  padding: 1.5rem;
  overflow: visible;
}
.salary-cap-draft-page .salary-cap-result-section .result-container {
  width: 100%;
  max-width: 37.5rem;
  height: 100%;
  position: relative;
  display: flex;
  margin: 0 auto;
  overflow: visible;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.salary-cap-draft-page .drafted-players-section {
  background: rgba(19, 19, 26, 0.5);
  border-radius: 0.25rem;
  height: auto;
  max-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow-y: auto;
  margin: 0;
}
.salary-cap-draft-page .salary-cap-table-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(19, 19, 26, 0.5);
  border-radius: 1rem;
  position: relative;
  margin-bottom: env(safe-area-inset-bottom);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  flex: 1;
  max-height: calc(100vh - 400px);
}
.salary-cap-draft-page .salary-cap-table-container::-webkit-scrollbar {
  display: none;
  width: 6px;
}
.salary-cap-draft-page .salary-cap-table-container::-webkit-scrollbar-track {
  background: rgba(19, 19, 26, 0.2);
  border-radius: 3px;
}
.salary-cap-draft-page .salary-cap-table-container::-webkit-scrollbar-thumb {
  background: rgba(180, 160, 255, 0.3);
  border-radius: 3px;
}
.salary-cap-draft-page .salary-cap-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 160, 255, 0.5);
}
.salary-cap-draft-page .salary-cap-table-container.ai-recs-active {
  background: linear-gradient(90deg, rgba(180, 160, 255, 0.06), rgba(180, 160, 255, 0.12));
}
.salary-cap-draft-page .salary-cap-table th,
.salary-cap-draft-page #available-players th,
.salary-cap-draft-page #drafted-players th,
.salary-cap-draft-page #rostered-players-table th {
  font-size: 0.7rem;
  padding: 0.75rem 0.5rem;
  letter-spacing: 0.05em;
}
.salary-cap-draft-page .salary-cap-table td,
.salary-cap-draft-page #available-players td,
.salary-cap-draft-page #drafted-players td,
.salary-cap-draft-page #rostered-players-table td {
  font-size: 0.85rem;
  padding: 0.75rem 0.5rem;
  line-height: 1.4;
}
@media (max-width: 575.98px) {
  .salary-cap-draft-page .salary-cap-table th,
  .salary-cap-draft-page #available-players th,
  .salary-cap-draft-page #drafted-players th,
  .salary-cap-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .salary-cap-draft-page .salary-cap-table td,
  .salary-cap-draft-page #available-players td,
  .salary-cap-draft-page #drafted-players td,
  .salary-cap-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .salary-cap-draft-page .salary-cap-table th,
  .salary-cap-draft-page #available-players th,
  .salary-cap-draft-page #drafted-players th,
  .salary-cap-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .salary-cap-draft-page .salary-cap-table td,
  .salary-cap-draft-page #available-players td,
  .salary-cap-draft-page #drafted-players td,
  .salary-cap-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .salary-cap-draft-page .salary-cap-table th,
  .salary-cap-draft-page #available-players th,
  .salary-cap-draft-page #drafted-players th,
  .salary-cap-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .salary-cap-draft-page .salary-cap-table td,
  .salary-cap-draft-page #available-players td,
  .salary-cap-draft-page #drafted-players td,
  .salary-cap-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
.salary-cap-draft-page #drafted-players {
  position: relative;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow-y: auto;
  box-shadow: none;
}
.salary-cap-draft-page #drafted-players thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.salary-cap-draft-page #drafted-players th, .salary-cap-draft-page #drafted-players td {
  overflow: hidden;
  white-space: nowrap;
}
.salary-cap-draft-page #drafted-players td:nth-child(n+2), .salary-cap-draft-page #drafted-players th:nth-child(n+2) {
  text-overflow: ellipsis;
}
.salary-cap-draft-page #drafted-players td:nth-child(1), .salary-cap-draft-page #drafted-players th:nth-child(1) {
  width: 20%;
}
.salary-cap-draft-page #drafted-players td:nth-child(2), .salary-cap-draft-page #drafted-players th:nth-child(2) {
  width: 40%;
  text-align: left;
}
.salary-cap-draft-page #drafted-players td:nth-child(3), .salary-cap-draft-page #drafted-players th:nth-child(3) {
  width: 20%;
}
.salary-cap-draft-page #drafted-players td:nth-child(4), .salary-cap-draft-page #drafted-players th:nth-child(4) {
  width: 20%;
}
.salary-cap-draft-page #drafted-players td:nth-child(5), .salary-cap-draft-page #drafted-players th:nth-child(5) {
  width: 20%;
}
.salary-cap-draft-page #rostered-players-table {
  position: relative;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow-y: auto;
  box-shadow: none;
}
.salary-cap-draft-page #rostered-players-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.salary-cap-draft-page #rostered-players-table th, .salary-cap-draft-page #rostered-players-table td {
  overflow: hidden;
  white-space: normal;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(1), .salary-cap-draft-page #rostered-players-table th:nth-child(1) {
  width: 20%;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(2), .salary-cap-draft-page #rostered-players-table th:nth-child(2) {
  width: 40%;
  text-align: left;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(3), .salary-cap-draft-page #rostered-players-table th:nth-child(3) {
  width: 20%;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(4), .salary-cap-draft-page #rostered-players-table th:nth-child(4) {
  width: 20%;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(5), .salary-cap-draft-page #rostered-players-table th:nth-child(5) {
  width: 20%;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(2) {
  overflow: visible;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(2) .player-labels-inline {
  flex-wrap: wrap;
}
.salary-cap-draft-page #rostered-players-table td:nth-child(2) .player-label-badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
@media (max-width: 575.98px) {
  .salary-cap-draft-page .player-labels-inline {
    gap: 0.2rem;
  }
  .salary-cap-draft-page .player-label-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
}

.snake-draft-page {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  max-width: 1400px;
  margin: 0 auto;
}
.snake-draft-page .draft-counter {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(19, 19, 26, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  flex-wrap: wrap;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
  position: relative;
}
@media (max-width: 575.98px) {
  .snake-draft-page .draft-counter {
    padding: 1rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page .draft-counter {
    padding: 1rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page .draft-counter {
    padding: 1rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
}
.snake-draft-page .draft-counter span {
  color: #B4A0FF;
  padding: 0.5rem 1rem;
  background: rgba(19, 19, 26, 0.5);
  border-radius: 2rem;
  border: 1px solid rgba(180, 160, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .snake-draft-page .draft-counter span {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page .draft-counter span {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page .draft-counter span {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
.snake-draft-page .draft-counter .turn-indicator {
  display: none;
  background: linear-gradient(135deg, rgba(9, 188, 138, 0.2) 0%, rgba(9, 188, 138, 0.1) 100%);
  color: #09BC8A;
  font-weight: 600;
  animation: pulseGlow 2s ease-in-out infinite;
  border: 1px solid #09BC8A;
  border-radius: 2rem;
  margin-right: 0;
  margin-left: auto;
  flex: 0 0 auto;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.snake-draft-page .draft-counter .turn-indicator.active {
  display: inline-flex;
  animation: pulseGlow 2s ease-in-out infinite;
}
.snake-draft-page .draft-counter .draft-completion {
  display: none;
  background: linear-gradient(135deg, #09BC8A 0%, rgb(6.6700507614, 139.3299492386, 102.2741116751) 100%);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  margin: 0 auto;
  border: none;
  border-radius: 2rem;
  animation: fadeInUp 0.5s ease-in-out;
  box-shadow: 0 10px 30px rgba(9, 188, 138, 0.3);
}
@media screen and (min-width: 768px) {
  .snake-draft-page .draft-counter .draft-completion {
    font-size: 1.1rem;
    padding: 1rem 3rem;
  }
}
.snake-draft-page .draft-counter .draft-board-completion {
  display: none;
  color: #09BC8A;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgba(9, 188, 138, 0.4);
  background: linear-gradient(135deg, rgba(9, 188, 138, 0.12) 0%, rgba(9, 188, 138, 0.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(9, 188, 138, 0.12);
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
}
.snake-draft-page #snake-draft-search-container {
  border-bottom: 0.0625rem solid rgba(180, 160, 255, 0.1);
  padding-bottom: 1rem;
}
.snake-draft-page .controls-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0 1rem 0;
}
.snake-draft-page .controls-row #ai-recs-toggle {
  --toggle-height: 2.25rem;
  --toggle-padding: 0.25rem;
  --toggle-radius: 9999px;
  --thumb-width: 50%;
  display: inline-flex;
  align-items: center;
  position: relative;
  height: var(--toggle-height);
  border-radius: var(--toggle-radius);
  padding: var(--toggle-padding);
  background: #13131A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  user-select: none;
  min-width: 280px;
  width: max-content;
  gap: 0.25rem;
}
.snake-draft-page .controls-row #ai-recs-toggle .option {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 240, 0.8);
  padding: 0 0.75rem;
  font-size: 0.85rem;
}
.snake-draft-page .controls-row #ai-recs-toggle .thumb {
  position: absolute;
  z-index: 1;
  top: var(--toggle-padding);
  left: var(--toggle-padding);
  width: calc(50% - var(--toggle-padding));
  height: calc(var(--toggle-height) - var(--toggle-padding) * 2);
  border-radius: var(--toggle-radius);
  background: #0b0d12;
  border: 1px solid rgba(180, 160, 255, 0.35);
  box-shadow: 0 0 0 2px rgba(180, 160, 255, 0.08), 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  transform: translateX(0%);
}
.snake-draft-page .controls-row #ai-recs-toggle.active .thumb {
  transform: translateX(100%);
}
.snake-draft-page .controls-row #ai-recs-toggle.active .option-right {
  color: #FFFFF0;
}
.snake-draft-page .controls-row #ai-recs-toggle:not(.active) .option-left {
  color: #FFFFF0;
}
.snake-draft-page .snake-table-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(19, 19, 26, 0.5);
  border-radius: 1rem;
  position: relative;
  margin-bottom: env(safe-area-inset-bottom);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  flex: 1;
  max-height: calc(100vh - 400px);
}
.snake-draft-page .snake-table-container::-webkit-scrollbar {
  display: none;
  width: 6px;
}
.snake-draft-page .snake-table-container::-webkit-scrollbar-track {
  background: rgba(19, 19, 26, 0.2);
  border-radius: 3px;
}
.snake-draft-page .snake-table-container::-webkit-scrollbar-thumb {
  background: rgba(180, 160, 255, 0.3);
  border-radius: 3px;
}
.snake-draft-page .snake-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 160, 255, 0.5);
}
.snake-draft-page .snake-table-container.ai-recs-active {
  background: linear-gradient(90deg, rgba(180, 160, 255, 0.06), rgba(180, 160, 255, 0.12));
}
.snake-draft-page .position-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.snake-draft-page .pos-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  background: rgba(19, 19, 26, 0.5);
  border: 1px solid rgba(180, 160, 255, 0.2);
  color: #FFFFF0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.snake-draft-page .pos-label {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #B4A0FF;
}
.snake-draft-page .pos-values {
  opacity: 0.85;
  font-weight: 500;
  color: rgba(255, 255, 240, 0.9);
}
.snake-draft-page .roster-stats {
  background: rgba(19, 19, 26, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 160, 255, 0.1);
  border-radius: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  width: 100%;
  gap: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.snake-draft-page .roster-stats p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFFFF0;
}
.snake-draft-page .roster-stats.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
}
.snake-draft-page .roster-section {
  margin-top: 1rem;
  background: rgba(19, 19, 26, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.25rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow-y: auto;
  margin: 0;
  max-height: calc(100vh - 0rem);
  overflow: visible;
}
.snake-draft-page .roster-section::after {
  display: none;
}
.snake-draft-page .roster-section.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
}
.snake-draft-page .roster-section.active {
  display: flex !important;
  min-height: 5rem;
  max-height: 20rem;
  margin: 0;
  padding: 1rem 0 0 0;
}
.snake-draft-page .salary-cap-table-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(19, 19, 26, 0.5);
  border-radius: 1rem;
  position: relative;
  margin-bottom: env(safe-area-inset-bottom);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  flex: 1;
  max-height: calc(100vh - 400px);
}
.snake-draft-page .salary-cap-table-container::-webkit-scrollbar {
  display: none;
  width: 6px;
}
.snake-draft-page .salary-cap-table-container::-webkit-scrollbar-track {
  background: rgba(19, 19, 26, 0.2);
  border-radius: 3px;
}
.snake-draft-page .salary-cap-table-container::-webkit-scrollbar-thumb {
  background: rgba(180, 160, 255, 0.3);
  border-radius: 3px;
}
.snake-draft-page .salary-cap-table-container::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 160, 255, 0.5);
}
.snake-draft-page .salary-cap-table-container.ai-recs-active {
  background: linear-gradient(90deg, rgba(180, 160, 255, 0.06), rgba(180, 160, 255, 0.12));
}
.snake-draft-page .salary-cap-table th,
.snake-draft-page #rostered-players-table th {
  font-size: 0.7rem;
  padding: 0.75rem 0.5rem;
  letter-spacing: 0.05em;
}
.snake-draft-page .salary-cap-table td,
.snake-draft-page #rostered-players-table td {
  font-size: 0.85rem;
  padding: 0.75rem 0.5rem;
  line-height: 1.4;
}
@media (max-width: 575.98px) {
  .snake-draft-page .salary-cap-table th,
  .snake-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page .salary-cap-table td,
  .snake-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page .salary-cap-table th,
  .snake-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page .salary-cap-table td,
  .snake-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page .salary-cap-table th,
  .snake-draft-page #rostered-players-table th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page .salary-cap-table td,
  .snake-draft-page #rostered-players-table td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
.snake-draft-page #rostered-players-table {
  position: relative;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow-y: auto;
  box-shadow: none;
}
.snake-draft-page #rostered-players-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.snake-draft-page #rostered-players-table th, .snake-draft-page #rostered-players-table td {
  overflow: hidden;
  white-space: normal;
}
.snake-draft-page #rostered-players-table td:nth-child(1), .snake-draft-page #rostered-players-table th:nth-child(1) {
  width: 20%;
}
.snake-draft-page #rostered-players-table td:nth-child(2), .snake-draft-page #rostered-players-table th:nth-child(2) {
  width: 40%;
  text-align: left;
}
.snake-draft-page #rostered-players-table td:nth-child(3), .snake-draft-page #rostered-players-table th:nth-child(3) {
  width: 20%;
}
.snake-draft-page #rostered-players-table td:nth-child(4), .snake-draft-page #rostered-players-table th:nth-child(4) {
  width: 20%;
}
.snake-draft-page #rostered-players-table td:nth-child(5), .snake-draft-page #rostered-players-table th:nth-child(5) {
  width: 20%;
}
.snake-draft-page #rostered-players-table td:nth-child(2) .player-labels-inline {
  flex-wrap: wrap;
}
.snake-draft-page #rostered-players-table td:nth-child(2) .player-label-badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.snake-draft-page #available-players-snake-draft {
  position: relative;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  overflow-y: auto;
}
.snake-draft-page #available-players-snake-draft thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.snake-draft-page #available-players-snake-draft th {
  font-size: 0.7rem;
  padding: 0.75rem 0.5rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.snake-draft-page #available-players-snake-draft td {
  font-size: 0.85rem;
  padding: 0.75rem 0.5rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.snake-draft-page #available-players-snake-draft td:nth-child(1), .snake-draft-page #available-players-snake-draft th:nth-child(1) {
  width: 20%;
  text-align: center;
  padding: 0.5rem;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2), .snake-draft-page #available-players-snake-draft th:nth-child(2) {
  width: 40%;
  text-align: left;
}
.snake-draft-page #available-players-snake-draft td:nth-child(3), .snake-draft-page #available-players-snake-draft th:nth-child(3) {
  width: 20%;
}
.snake-draft-page #available-players-snake-draft td:nth-child(4), .snake-draft-page #available-players-snake-draft th:nth-child(4) {
  width: 20%;
}
.snake-draft-page #available-players-snake-draft td:nth-child(5), .snake-draft-page #available-players-snake-draft th:nth-child(5) {
  width: 20%;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2) {
  white-space: normal;
  overflow: visible;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2) .player-name-container {
  align-items: flex-start;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2) .player-labels-inline {
  flex-wrap: wrap;
  white-space: normal;
  min-width: 0;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2) .player-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.snake-draft-page #available-players-snake-draft td:nth-child(2) .player-label-badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
@media (max-width: 575.98px) {
  .snake-draft-page #available-players-snake-draft th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page #available-players-snake-draft td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page #available-players-snake-draft th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page #available-players-snake-draft td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page #available-players-snake-draft th {
    font-size: 0.65rem;
    padding: 0.5rem 0.25rem;
  }
  .snake-draft-page #available-players-snake-draft td {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
}
.snake-draft-page .value-bar {
  position: relative;
  width: 100%;
  height: 0.65rem;
  background: rgba(255, 255, 240, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 240, 0.12);
}
.snake-draft-page .value-bar-fill {
  height: 100%;
  width: 0%;
  background: none;
  background-color: rgba(9, 188, 138, 0.65);
  border-radius: 9999px;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.snake-draft-page .value-bar-fill.tier-low {
  background: linear-gradient(90deg, rgba(225, 85, 84, 0.2), rgba(225, 85, 84, 0.5));
}
.snake-draft-page .value-bar-fill.tier-mid {
  background: linear-gradient(90deg, rgba(255, 184, 77, 0.3), rgba(255, 184, 77, 0.6));
}
.snake-draft-page .value-bar-fill.tier-high {
  background: linear-gradient(90deg, rgba(9, 188, 138, 0.35), rgba(9, 188, 138, 0.85));
}
@media (max-width: 575.98px) {
  .snake-draft-page .player-labels-inline {
    gap: 0.2rem;
  }
  .snake-draft-page .player-label-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
}
.snake-draft-page .player-name-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}
.snake-draft-page .player-name {
  font-weight: 500;
  color: #FFFFF0;
}
.snake-draft-page .player-labels-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.snake-draft-page .player-label-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  opacity: 0.9;
}
.snake-draft-page .player-label-badge.badge-sleeper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}
.snake-draft-page .player-label-badge.badge-bust {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.snake-draft-page .player-label-badge.badge-stud {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}
.snake-draft-page .player-label-badge.badge-breakout {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.3);
}
.snake-draft-page .player-label-badge.badge-handcuff {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}
.snake-draft-page .player-label-badge.badge-value-target {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}
.snake-draft-page .player-label-badge.badge-boom-bust {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}
.snake-draft-page .player-label-badge.badge-streamer {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.08) 100%);
  color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.3);
}
.snake-draft-page .player-label-badge.badge-injury-risk {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
}
.snake-draft-page .player-label-badge.badge-rookie {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.08) 100%);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.3);
}
.snake-draft-page .player-label-badge.badge-default {
  background: linear-gradient(135deg, rgba(180, 160, 255, 0.15) 0%, rgba(180, 160, 255, 0.08) 100%);
  color: #B4A0FF;
  border-color: rgba(180, 160, 255, 0.3);
}
.snake-draft-page .draft-column {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-width: 6rem;
}
.snake-draft-page .draft-column.fixed {
  position: sticky;
  left: 0;
  z-index: 3;
  background: rgba(19, 19, 26, 0.95);
  border-right: 2px solid rgba(180, 160, 255, 0.2);
  min-width: 4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.snake-draft-page .draft-columns-scrollable {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  flex: 1;
}
.snake-draft-page .draft-board-section {
  background: rgba(19, 19, 26, 0.5);
  border-radius: 0.25rem;
  height: auto;
  max-height: calc(100vh - 12rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 0 0 0;
  position: relative;
  overflow: hidden;
}
.snake-draft-page .draft-board {
  flex: 1;
  position: relative;
  margin: 0;
  padding: 0.5rem;
  isolation: isolate;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.snake-draft-page .draft-board::-webkit-scrollbar {
  display: none;
}
.snake-draft-page .draft-cell {
  width: 6rem;
  height: 5rem;
  min-width: 6rem;
  min-height: 5rem;
  max-width: 6rem;
  max-height: 5rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(176, 175, 174, 0.1);
  box-sizing: border-box;
}
.snake-draft-page .draft-cell:hover {
  z-index: 100;
}
.snake-draft-page .draft-cell.header {
  background-color: rgb(16.8466666667, 16.8466666667, 23.0533333333);
  font-weight: 700;
  color: #B0AFAE;
  border-bottom: 2px solid rgba(157, 127, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 3;
  height: 4rem;
  min-height: 4rem;
  max-height: 4rem;
}
.snake-draft-page .draft-cell.round-number {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: rgb(16.8466666667, 16.8466666667, 23.0533333333);
  justify-content: center;
  align-items: center;
  color: #B0AFAE;
  font-weight: 700;
  width: 4rem;
  min-width: 4rem;
  max-width: 4rem;
}
.snake-draft-page .draft-cell.round-number.header {
  z-index: 4;
  background-color: rgb(14.6933333333, 14.6933333333, 20.1066666667);
  border-right: 1px solid rgba(176, 175, 174, 0.1);
  border-bottom: 2px solid rgba(157, 127, 255, 0.2);
}
.snake-draft-page .draft-cell-player-headshot {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  object-fit: cover;
  border: 0.09375rem solid #B0AFAE;
  border-radius: 50%;
  display: block;
}
.snake-draft-page .draft-cell-player-headshot:hover {
  transform: scale(1.1);
  border-color: rgba(180, 160, 255, 0.5);
  box-shadow: 0 0 8px rgba(180, 160, 255, 0.2);
}
@media (max-width: 575.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .snake-draft-page .draft-cell-player-headshot {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
  }
}
.snake-draft-page .draft-cell.round-number {
  text-align: center;
}
.snake-draft-page .draft-cell.my-pick {
  background-color: rgba(157, 127, 255, 0.05);
  border-left: 2px solid rgba(157, 127, 255, 0.2);
  border-right: 2px solid rgba(157, 127, 255, 0.2);
  position: relative;
}
.snake-draft-page .draft-cell.my-pick.current-pick {
  background-color: rgba(157, 127, 255, 0.15);
  position: relative;
  z-index: 3;
  border: 2px solid #9D7FFF;
  animation: pulse-border 2s infinite;
  transform: translateZ(1px);
}
.snake-draft-page .draft-cell.current-pick {
  background-color: rgba(157, 127, 255, 0.1);
  position: relative;
  z-index: 3;
  border: 2px solid #9D7FFF;
  animation: pulse-border 2s infinite;
  transform: translateZ(1px);
}
.snake-draft-page .player-name,
.snake-draft-page .player-details {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.snake-draft-page .player-details {
  color: #B0AFAE;
}
.snake-draft-page .player-card {
  position: relative;
  width: 100%;
  height: 100%;
}
.snake-draft-page .player-card:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.snake-draft-page .draft-cell-content {
  width: 100%;
  height: 100%;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.snake-draft-page .round-label,
.snake-draft-page .round-value,
.snake-draft-page .pick-label,
.snake-draft-page .pick-number {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.snake-draft-page .pick-label,
.snake-draft-page .pick-number {
  color: #B0AFAE;
  line-height: 1.2;
}

.privacy-policy-page {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  max-width: 90rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.privacy-policy-page #privacy-policy-title {
  margin-top: 4rem;
  margin-bottom: 0;
  margin-left: 0;
}
.privacy-policy-page p {
  max-width: 65ch;
  margin: 0.5rem 0;
  white-space: normal;
  line-height: 1.6;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-align: left;
}
.privacy-policy-page .policy-heading {
  position: relative;
  color: #9D7FFF;
  margin: 2rem 0 1rem;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #B4A0FF 0%, #9D7FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.privacy-policy-page .policy-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(120, 120, 120, 0.8784313725);
  opacity: 0.3;
  animation: underlineExpand 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.privacy-policy-page .privacy-policy-content {
  align-items: left;
  text-align: left;
  animation: fadeInUp 0.6s ease-out forwards;
}

/*# sourceMappingURL=main.css.138b0f11348b.map */
