
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all .4s .2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #fff;
  opacity: .6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  vertical-align: text-bottom;
  background-color: #d7dde2; 
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255,255,255,.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


.salary-locked-box {
  backdrop-filter: blur(6px);
  color: #ccc;
  line-height: 1.2;
 
}
.salary-locked-box:hover {
  cursor: pointer;
}
.salary-locked-box .lock-icon {
  font-size:15px;
  padding: 4px;
  color: #448c74;
  animation: pulseLock 2.5s infinite;
}
@media (max-width: 768px) {
  .salary-locked-box span {
    font-size: 13px;
  }
}
@keyframes pulseLock {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}



.players-svg-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  align-items: center;
}
@media (max-width: 576px) {
  .players-svg-wrapper{
      font-size: 11px;
      flex-direction: row;
      width: 100%;
      gap: 2px;
      justify-content: space-between;
  }
}

.players-svg-bar {
  --hint-color: #448c74;
  border-color: rgba(68,140,116,.3) !important;
  background-color: rgba(68,140,116,.08);
  color: var(--hint-color);
  max-width: 100%;
}

.players-svg-bar .text-primary {
color: var(--hint-color) !important;
}

/* Icon hint */
.scroll-hint .scroll-icon {
width: 20px;

}

/* Mobile: icon orizontal + animatie stânga-dreapta */
@media (max-width: 992px) {
.scroll-hint .scroll-icon {
  width: 40px;
  animation: nudgeX 1.6s ease-in-out infinite;
}
}

/* Desktop: icon vertical + animatie sus-jos */
@media (min-width: 993px) {
.scroll-hint .scroll-icon {
  animation: nudgeY 1.6s ease-in-out infinite;
}
}

@keyframes nudgeX {
0%,100% { transform: translateX(0); }
50% { transform: translateX(6px); }
}

@keyframes nudgeY {
0%,100% { transform: translateY(0); }
50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
.scroll-hint .scroll-icon {
  animation: none !important;
}
}



.locked-content {
  background: rgba(255, 255, 255, 0.05); /* subtil, transparent */
  border: 1px solid rgba(255, 209, 102, 0.4); /* aurie discretă */
  border-radius: .5rem;
  font-size: 0.95rem;
}
@media(min-width: 550px){
  .locked-content{
    max-width: 50%;
  }
}
.locked-content, .lock-icon {
  animation: pulseLockTeam 1.6s ease-in-out infinite;
}


@keyframes pulseLockTeam {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.02); opacity: 1; }
}

.premium {
  color: #fff;
}

.exclusive {
  font-style: italic;
  opacity: 0.9;
}
