
.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;
  text-decoration: none;
}
.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;
}

/* Competition country box filter */
.competitions-country-nav {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  overflow: hidden;
}
.country-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.83rem;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid transparent;
  border-radius: 0;
  background: rgba(255,255,255,0.02);
  color: var(--bs-body-color);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  width: 100%;
  text-align: left;
}
.country-box:last-child {
  border-bottom: none;
}
.country-box:hover {
  background: rgba(255,255,255,0.06);
  border-left-color: rgba(255,255,255,0.15);
}
.country-box.active {
  background: rgba(68,140,116,0.1);
  border-left-color: #448c74;
  color: #6dcba8;
}
.country-box.active:hover {
  background: rgba(68,140,116,0.16);
}
.country-box.d-none {
  display: none !important;
}
.country-box-check {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  transition: background 0.15s, border-color 0.15s;
}
.country-box.active .country-box-check {
  background: #448c74;
  border-color: #448c74;
  color: #fff;
}
.country-box-left {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}
.country-box-left .competitions-country-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-box-count {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.45;
  flex-shrink: 0;
  margin-left: auto;
}
