@charset "UTF-8";
.mobile {
  display: none;
}

.site-header {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #FFD700;
  margin-bottom: 0;
  position: relative;
  z-index: 500;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}
.site-header .site-logo img {
  transition: transform 0.3s ease;
}
.site-header .site-logo img:hover {
  transform: scale(1.05);
}
.site-header .site-logo {
  align-items: center;
  position: relative;
  width: 120px;
}
.site-header .site-logo .logo-text {
  font-family: "Bungee", cursive;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.site-header .site-logo .logo-text::before, .site-header .site-logo .logo-text::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .site-logo .logo-text::before {
  height: 3px;
  width: 40%;
  top: 0;
  left: 0;
  border-top-right-radius: 3px;
}
.site-header .site-logo .logo-text::after {
  height: 3px;
  width: 40%;
  bottom: 0;
  right: 0;
  border-top-left-radius: 3px;
}
.site-header .site-logo .logo-text:hover {
  transform: scale(1.05);
}
.site-header .site-logo .logo-text:hover::before {
  width: 60%;
}
.site-header .site-logo .logo-text:hover::after {
  width: 60%;
}
.site-header .site-logo img {
  width: auto;
  padding: 10px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.site-header .site-logo img:hover {
  transform: scale(1.05) rotate(2deg);
}
.site-header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav li {
  margin-left: 1rem;
  position: relative;
}
.site-header nav li:hover::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: #FFD700;
  border-radius: 50%;
  opacity: 0.7;
  animation: particleFadeOut 1s ease-out;
}
.site-header nav li > ul > li {
  margin: 0;
}
.site-header nav a, .site-header nav button {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.25rem 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.site-header nav a:hover, .site-header nav button:hover {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  text-decoration: none;
}
.site-header nav a .material-icons, .site-header nav button .material-icons {
  font-size: 14px;
  margin-right: 5px;
}
.site-header nav a::after, .site-header nav button::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.site-header nav a:hover::after, .site-header nav button:hover::after {
  width: 100%;
}
.site-header .dropdown {
  position: relative;
}
.site-header .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
}
.site-header .dropdown .dropdown-toggle svg {
  margin-left: 0.25rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .dropdown .dropdown-toggle:hover svg {
  transform: translateY(2px);
}
.site-header .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
  min-width: 220px;
  padding: 0.5rem;
  margin: 0;
  background-color: rgba(235, 238, 245, 0.95);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #FFD700;
}
.site-header .dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFD700;
}
.site-header .dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  animation: dropdownFadeIn 0.3s ease-out;
}
.site-header .dropdown .dropdown-menu a {
  display: flex;
  padding: 0.5rem 1rem;
  color: #1a1a2e !important;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
}
.site-header .dropdown .dropdown-menu a:last-child {
  margin-bottom: 0;
}
.site-header .dropdown .dropdown-menu a:hover {
  background-color: rgba(0, 0, 150, 0.1);
  color: #000096 !important;
  transform: translateX(3px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.site-header .dropdown .dropdown-menu a::after {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    display: flex;
    position: sticky;
    z-index: 1000;
    top: 0;
    left: 0;
    overflow: visible;
  }
  .site-header:after {
    display: none;
  }
  .site-header .container {
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .container .site-logo {
    order: 2;
    width: auto;
    display: flex;
    height: auto;
    transition: transform 0.3s ease;
  }
  .site-header .container .site-logo img {
    padding: 0;
    height: 60px;
    position: relative;
    margin: 0;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  }
  .site-header .container .site-logo:hover img {
    transform: scale(1.05);
  }
  .site-header .container nav {
    order: 1;
    transition: none;
    height: 24px;
  }
  .site-header .container nav.open .site-logo {
    display: flex;
  }
  .site-header .container nav .site-logo {
    padding-top: 1.5rem;
    margin: 0;
    justify-content: center;
    padding-bottom: 0;
    display: none;
  }
  .site-header .container nav .site-logo img {
    height: 80px;
  }
  .site-header .container nav .mobile-menu-icon {
    display: flex;
    color: #FFD700;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 150, 0.5));
  }
  .site-header .container nav .mobile-menu-icon:hover {
    transform: rotate(90deg);
  }
  .site-header .container nav .mobile-menu-close {
    color: #FFD700;
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
  }
  .site-header .container nav .mobile-menu-close:hover {
    transform: rotate(90deg);
  }
  .site-header .container nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 0;
    margin-top: 1rem;
  }
  .site-header .container nav ul li form {
    display: flex;
    width: 100%;
  }
  .site-header .container nav ul li form button {
    display: flex;
  }
  .site-header .container nav li {
    margin: 0.5rem 0;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    transition-delay: calc(var(--item-index, 0) * 0.05s);
    position: relative;
  }
  .site-header .container nav li a {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    display: block;
    position: relative;
  }
  .site-header .container nav li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
  }
  .site-header .container nav li a:hover:before {
    width: 30px;
  }
  .site-header .container nav li.dropdown:before {
    display: none;
  }
  .site-header .container nav li.dropdown .dropdown-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    margin-top: 0.5rem;
    display: flex !important;
    flex-direction: column;
    top: auto;
    left: auto;
    opacity: 1;
    transform: none;
    background: rgba(0, 0, 150, 0.2);
    padding: 0.5rem 0;
    border-radius: 8px;
    justify-content: left;
    border: none;
  }
  .site-header .container nav li.dropdown .dropdown-menu:before {
    display: none;
  }
  .site-header .container nav li.dropdown .dropdown-menu .bg-white {
    background: transparent;
    padding: 0;
  }
  .site-header .container nav li.dropdown .dropdown-menu li {
    margin: 0.25rem 0;
    padding-left: 1rem;
    opacity: 1;
    transform: none;
  }
  .site-header .container nav li.dropdown .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: left;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
  }
  .site-header .container nav li.dropdown .dropdown-menu a:hover {
    color: #FFD700 !important;
    background: rgba(0, 0, 150, 0.3);
    border-radius: 4px;
  }
  .site-header .container nav.open {
    position: fixed;
    z-index: 100;
    background: linear-gradient(135deg, #000030, rgb(0, 0, 73.5));
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    padding: 20px;
    overflow-y: auto;
  }
  .site-header .container nav.open:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .site-header .container nav.open ul {
    width: 100%;
    height: auto;
    opacity: 1;
    padding: 1rem 0;
  }
  .site-header .container nav.open li {
    opacity: 1;
    transform: translateX(0);
  }
  .site-header .container nav.open .mobile-menu-close {
    display: flex;
    opacity: 1;
  }
  .site-header .container nav.open .mobile-menu-icon {
    display: none;
  }
}
.site-footer {
  border-top: 3px solid rgb(255, 215, 0);
  background-color: #000096;
  color: #ffffff;
  padding: 2.5rem 0;
  margin: 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer .footer-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .site-footer .footer-section {
    margin-bottom: 0;
    flex: 1;
    padding-right: 1.5rem;
  }
  .site-footer .footer-section:last-child {
    padding-right: 0;
  }
}
.site-footer .footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFD700;
}
.site-footer .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-section ul li {
  margin-bottom: 0.25rem;
}
.site-footer .footer-section ul a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-section ul a:hover {
  color: #FFD700;
}
.site-footer .footer-section p {
  margin-bottom: 1rem;
  opacity: 0.8;
}
.site-footer .footer-bottom {
  padding-top: 1rem;
  text-align: center;
}
.site-footer .footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}
.site-footer .footer-bottom .footer-links {
  margin-top: 0.5rem;
}
.site-footer .footer-bottom .footer-links a {
  color: #ffffff;
  margin: 0 0.25rem;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .footer-bottom .footer-links a:hover {
  opacity: 1;
  color: #FFD700;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Rajdhani", sans-serif;
  color: #1a1a2e;
  background-color: #ebeef5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

main {
  min-height: calc(100vh - 200px);
  padding: 0;
}
main .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section {
  margin-bottom: 2.5rem;
}
.section.no-margin {
  margin: 0;
}
.section.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2.5rem 0;
}
.section.primary-bg {
  background-color: #000096;
  color: #ffffff;
}
.section.secondary-bg {
  background-color: #FFD700;
  color: #000096;
}
.section.dark-bg {
  background-color: #000070;
  color: #ffffff;
}
.section.light-bg {
  background-color: #ebeef5;
  color: #1a1a2e;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.row.no-gutters {
  margin: 0;
}
.row.no-gutters > .col {
  padding: 0;
}
.row.align-center {
  align-items: center;
}
.row.justify-center {
  justify-content: center;
}
.row.justify-between {
  justify-content: space-between;
}

.col {
  flex: 1 0 100%;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .col.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .col.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (min-width: 992px) {
  .col.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.m-1 {
  margin: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.m-3 {
  margin: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.m-4 {
  margin: 1.5rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.ml-5 {
  margin-left: 2.5rem;
}

.mr-5 {
  margin-right: 2.5rem;
}

.m-5 {
  margin: 2.5rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.p-0 {
  padding: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pr-3 {
  padding-right: 1rem;
}

.p-3 {
  padding: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.p-4 {
  padding: 1.5rem;
}

.pt-5 {
  padding-top: 2.5rem;
}

.pb-5 {
  padding-bottom: 2.5rem;
}

.pl-5 {
  padding-left: 2.5rem;
}

.pr-5 {
  padding-right: 2.5rem;
}

.p-5 {
  padding: 2.5rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #000096;
}

.text-secondary {
  color: #FFD700;
}

.text-light {
  color: #ffffff;
}

.text-dark {
  color: #1a1a2e;
}

.text-black {
  color: #333;
}

.bg-primary {
  background-color: #000096;
}

.bg-secondary {
  background-color: #FFD700;
}

.bg-dark {
  background-color: #000070;
}

.bg-black {
  background-color: #333;
}

.bg-light {
  background-color: #ebeef5;
}

.bg-danger {
  background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
  color: #ebeef5;
}

.border {
  border: 1px solid #dee2e6;
}

.border-top {
  border-top: 1px solid #dee2e6;
}

.border-right {
  border-right: 1px solid #dee2e6;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

.border-left {
  border-left: 1px solid #dee2e6;
}

.border-0 {
  border: 0;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-circle {
  border-radius: 50%;
}

.border-color-primary {
  border-color: #000096;
}

.border-color-secondary {
  border-color: #FFD700;
}

.overall {
  padding: 0.25rem 1rem;
  background: #666;
  color: #fff;
  font-weight: bold;
  border-radius: 0.5rem;
}
.overall.orange {
  background: #ffc107;
}
.overall.green {
  background: #28a745;
}
.overall.blue {
  background: #17a2b8;
}

@media (max-width: 768px) {
  main {
    position: relative;
    z-index: 5;
  }
}
.text-xs .material-icons, .material-icons .text-xs {
  font-size: 0.75rem;
}

.badge.status-badge {
  padding: 0.5rem 1rem;
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}
.badge.status-badge.pending {
  background-color: #dbeafe;
  color: #1e40af;
}
.badge.status-badge.won {
  background-color: #dcfce7;
  color: #166534;
}
.badge.position-badge {
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 4px;
  border: 1px solid #FFD700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #000096, rgb(0, 0, 73.5));
  flex-shrink: 0;
}
.badge.position-badge[data-position=GK], .badge.position-badge[data-position=GB] {
  background: linear-gradient(135deg, #ff9900, rgb(178.5, 107.1, 0));
}
.badge.position-badge[data-position=CB], .badge.position-badge[data-position=DC] {
  background: linear-gradient(135deg, #00BCD4, rgb(0, 120.1603773585, 135.5));
}
.badge.position-badge[data-position=LB], .badge.position-badge[data-position=DG] {
  background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
}
.badge.position-badge[data-position=RB], .badge.position-badge[data-position=DD] {
  background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
}
.badge.position-badge[data-position=DMF], .badge.position-badge[data-position=MDF] {
  background: linear-gradient(135deg, #339933, rgb(31.875, 95.625, 31.875));
}
.badge.position-badge[data-position=CMF], .badge.position-badge[data-position=MR] {
  background: linear-gradient(135deg, #66cc66, rgb(57.375, 172.125, 57.375));
}
.badge.position-badge[data-position=AMF], .badge.position-badge[data-position=MO] {
  background: linear-gradient(135deg, #99cc33, rgb(107.1, 142.8, 35.7));
}
.badge.position-badge[data-position=LMF], .badge.position-badge[data-position=MG] {
  background: linear-gradient(135deg, #66cc99, rgb(57.375, 172.125, 114.75));
}
.badge.position-badge[data-position=RMF], .badge.position-badge[data-position=MD] {
  background: linear-gradient(135deg, #33cc99, rgb(35.7, 142.8, 107.1));
}
.badge.position-badge[data-position=LWF], .badge.position-badge[data-position=AiG] {
  background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
}
.badge.position-badge[data-position=RWF], .badge.position-badge[data-position=AiD] {
  background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
}
.badge.position-badge[data-position=SS], .badge.position-badge[data-position=SA] {
  background: linear-gradient(135deg, #cc3366, rgb(142.8, 35.7, 71.4));
}
.badge.position-badge[data-position=CF], .badge.position-badge[data-position=AC] {
  background: linear-gradient(135deg, #cc0000, rgb(127.5, 0, 0));
}
.badge.age-badge {
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  flex-direction: column;
  gap: 0;
}
.badge.age-badge span {
  display: flex;
  line-height: 10px;
}
.badge.age-badge span.label {
  font-size: 8px;
  line-height: 8px;
}
.badge.age-badge.blue {
  background: #000096;
}
.badge.price-badge {
  display: inline-block;
  font-weight: 700;
  color: #FFD700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  padding: 6px 10px;
  border-radius: 4px;
  background: #000096;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.badge.price-badge:before {
  content: "💰";
  margin-right: 5px;
  font-size: 14px;
}
.badge.price-badge:before {
  position: relative;
  top: 1px;
}
.badge.price-badge.little {
  font-size: 14px;
  padding: 4px 10px;
}
.badge.price-badge.salary:before {
  content: "💵";
}
.badge.price-badge.release-clause:before {
  content: "⛓️‍💥";
}
.badge.role-badge {
  background: #000;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 14px;
  box-shadow: 0 0 2px #FFD700;
}
.badge.role-badge.little-badge {
  font-size: 10px;
  padding: 1px 10px;
}
.badge.duration-badge {
  background: #FFD700;
  border-radius: 3px;
  padding: 10px;
  font-size: 16px;
  box-shadow: 0 0 2px #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  width: 45px;
  height: 55px;
  color: #000096;
}
.badge.duration-badge .icon svg {
  width: 20px;
  height: 20px;
  color: #000096;
}
.badge.duration-badge .text {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 10px;
  font-weight: bold;
}

.rating.overall {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}
.rating.overall:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.rating.overall.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.rating.overall.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.rating.overall.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.rating.overall.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.rating.overall.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.rating.overall.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.rating.overall.little {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.rating.overall.m-auto {
  margin: auto;
}

.bg-primary-color {
  background-color: #000096;
  color: #ebeef5;
}

.bg-secondary-color {
  background: #FFD700;
  color: #000096;
}

.bg-black-color {
  background-color: #333;
  color: #ebeef5;
}

.bg-black-gradient {
  background: linear-gradient(135deg, #333 0%, rgb(38.25, 38.25, 38.25) 100%);
  color: #ebeef5;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  color: #ebeef5;
}

.bg-secondary-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #ebeef5;
}

main {
  margin-top: 0;
  padding-top: 0;
}

.content-block {
  background-color: #ebeef5;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.content-block.no-margin-top {
  margin-top: 0;
}

.blue-block {
  background-color: #000096;
  color: #ebeef5;
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .full-width-section .container .content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Russo One", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.page-title {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  margin-top: 0.5rem;
  border-radius: 0.25rem;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

.competition-title {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: #000096;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 rgba(255, 215, 0, 0.3);
}

.accent-text {
  font-family: "Bungee", cursive;
  font-weight: 700;
  color: #000096;
}

.feature-title {
  font-family: "Bungee", cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #000096;
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
}

p {
  margin-bottom: 1rem;
}
p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
}

small, .small {
  font-size: 0.875rem;
  font-weight: 400;
}

strong, .bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-primary {
  color: #000096;
}

.text-secondary {
  color: #FFD700;
}

.text-accent {
  color: #ff6b00;
}

.text-light {
  color: #ffffff;
}

.text-dark {
  color: #1a1a2e;
}

.text-muted {
  color: #6c757d;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
  z-index: -1;
}
.btn:focus, .btn:hover {
  text-decoration: none;
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}
.btn:focus::after, .btn:hover::after {
  background: rgba(255, 255, 255, 0.1);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
  box-shadow: none;
}
.btn.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.btn.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  letter-spacing: 0.05em;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-color: #000096;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: linear-gradient(135deg, #2626b8 0%, #000096 100%);
  border-color: rgb(0, 0, 88.8);
  box-shadow: 0 4px 15px rgba(0, 0, 150, 0.4);
}
.btn.btn-secondary {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-color: #FFD700;
  color: #1a1a2e;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: linear-gradient(135deg, #FFDF4D 0%, #FFD700 100%);
  border-color: rgb(193.8, 163.4, 0);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.btn.btn-success {
  background: linear-gradient(135deg, #28a745, rgb(30.1449275362, 125.8550724638, 52));
  border-color: #28a745;
  color: #ffffff;
}
.btn.btn-success:hover, .btn.btn-success:focus {
  background: linear-gradient(135deg, #28a745, rgb(25.2173913043, 105.2826086957, 43.5));
  border-color: rgb(28.1739130435, 117.6260869565, 48.6);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}
.btn.btn-danger {
  background: linear-gradient(135deg, #dc3545, rgb(189.2151898734, 32.7848101266, 47.7721518987));
  border-color: #dc3545;
  color: #ffffff;
}
.btn.btn-danger:hover, .btn.btn-danger:focus {
  background: linear-gradient(135deg, #dc3545, rgb(167.4810126582, 29.0189873418, 42.2848101266));
  border-color: rgb(180.5215189873, 31.2784810127, 45.5772151899);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}
.btn.btn-warning {
  background: linear-gradient(135deg, #ffc107, rgb(211, 158.25, 0));
  border-color: #ffc107;
  color: #1a1a2e;
}
.btn.btn-warning:hover, .btn.btn-warning:focus {
  background: linear-gradient(135deg, #ffc107, rgb(185.5, 139.125, 0));
  border-color: rgb(200.8, 150.6, 0);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}
.btn.btn-info {
  background: linear-gradient(135deg, #17a2b8, rgb(17.3333333333, 122.0869565217, 138.6666666667));
  border-color: #17a2b8;
  color: #ffffff;
}
.btn.btn-info:hover, .btn.btn-info:focus {
  background: linear-gradient(135deg, #17a2b8, rgb(14.5, 102.1304347826, 116));
  border-color: rgb(16.2, 114.1043478261, 129.6);
  box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}
.btn.btn-light {
  background: linear-gradient(135deg, #ebeef5, rgb(218, 223.55, 236.5));
  border-color: #dee2e6;
  color: #1a1a2e;
}
.btn.btn-light:hover, .btn.btn-light:focus {
  background: linear-gradient(135deg, #ebeef5, rgb(207.8, 214.88, 231.4));
  border-color: rgb(187.1793103448, 195.4, 203.6206896552);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn.btn-dark {
  background: linear-gradient(135deg, #000070, #00003d);
  border-color: #000070;
  color: #ffffff;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: linear-gradient(135deg, #000070, rgb(0, 0, 35.5));
  border-color: rgb(0, 0, 50.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.btn.btn-outline-primary {
  background-color: transparent;
  border-color: #000096;
  color: #000096;
  position: relative;
  z-index: 1;
}
.btn.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.8;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  color: #ffffff;
  border-color: #000096;
}
.btn.btn-outline-primary:hover::before, .btn.btn-outline-primary:focus::before {
  width: 100%;
}
.btn.btn-outline-secondary {
  background-color: transparent;
  border-color: #FFD700;
  color: #FFD700;
  position: relative;
  z-index: 1;
}
.btn.btn-outline-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.8;
}
.btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:focus {
  color: #1a1a2e;
  border-color: #FFD700;
}
.btn.btn-outline-secondary:hover::before, .btn.btn-outline-secondary:focus::before {
  width: 100%;
}
.btn.btn-outline-success {
  background-color: transparent;
  border-color: #28a745;
  color: #28a745;
  position: relative;
  z-index: 1;
}
.btn.btn-outline-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #28a745, rgb(30.1449275362, 125.8550724638, 52));
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.8;
}
.btn.btn-outline-success:hover, .btn.btn-outline-success:focus {
  color: #ffffff;
  border-color: #28a745;
}
.btn.btn-outline-success:hover::before, .btn.btn-outline-success:focus::before {
  width: 100%;
}
.btn.btn-outline-danger {
  background-color: transparent;
  border-color: #dc3545;
  color: #dc3545;
  position: relative;
  z-index: 1;
}
.btn.btn-outline-danger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #dc3545, rgb(189.2151898734, 32.7848101266, 47.7721518987));
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.8;
}
.btn.btn-outline-danger:hover, .btn.btn-outline-danger:focus {
  color: #ffffff;
  border-color: #dc3545;
}
.btn.btn-outline-danger:hover::before, .btn.btn-outline-danger:focus::before {
  width: 100%;
}
.btn.btn-pulse {
  position: relative;
}
.btn.btn-pulse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0, 0, 150, 0.7);
  animation: btnPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: -1;
}
.btn.btn-pulse.btn-secondary::after {
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
}
.btn.btn-pulse.btn-success::after {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
}
.btn.btn-pulse.btn-danger::after {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
}
.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-icon .icon {
  margin-right: 0.25rem;
  transition: transform 0.3s ease;
}
.btn.btn-icon:hover .icon {
  transform: translateX(-2px);
}
.btn.btn-icon.icon-right .icon {
  margin-right: 0;
  margin-left: 0.25rem;
}
.btn.btn-icon.icon-right:hover .icon {
  transform: translateX(2px);
}
.btn.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn.btn-shine::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 2;
}
.btn.btn-shine:hover::before {
  opacity: 1;
  left: 100%;
}
.btn.btn-block {
  display: block;
  width: 100%;
}

@keyframes btnPulse {
  to {
    box-shadow: 0 0 0 12px rgba(0, 0, 150, 0);
  }
}
.btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.btn-group .btn {
  position: relative;
  flex: 1 1 auto;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  border-width: 1px;
}
.btn-group .btn:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-group .btn:hover {
  transform: none;
  z-index: 2;
}
.btn-group:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}

.btn-master-league {
  font-family: "Bungee", cursive;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0.75rem;
  padding: 0.5rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-master-league::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 2;
}
.btn-master-league:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.btn-master-league:hover::before {
  opacity: 1;
  left: 100%;
}
.btn-master-league:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}
.btn-master-league.btn-secondary {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #1a1a2e;
}
.btn-master-league.btn-bordered {
  background: transparent;
  border: 2px solid #000096;
  color: #000096;
}
.btn-master-league.btn-bordered::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0.9;
}
.btn-master-league.btn-bordered:hover {
  color: #ffffff;
}
.btn-master-league.btn-bordered:hover::after {
  width: 100%;
}
.btn-master-league.btn-bordered.btn-secondary {
  border-color: #FFD700;
  color: #FFD700;
}
.btn-master-league.btn-bordered.btn-secondary::after {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}
.btn-master-league.btn-bordered.btn-secondary:hover {
  color: #1a1a2e;
}

.card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 150, 0.3);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.card:hover::before {
  opacity: 1;
}
.card.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}
.card .card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.card .card-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
}
.card .card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  position: relative;
  display: inline-block;
}
.card .card-header h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.card .card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.card .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.5;
}
.card .card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, rgba(255, 215, 0, 0.05), rgba(0, 0, 150, 0.05));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card.card-primary {
  border-top: none;
  position: relative;
}
.card.card-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  z-index: 1;
}
.card.card-secondary {
  border-top: none;
  position: relative;
}
.card.card-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  z-index: 1;
}
.card.card-success {
  border-top: none;
  position: relative;
}
.card.card-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #28a745, rgb(72.268115942, 211.231884058, 104));
  z-index: 1;
}
.card.card-danger {
  border-top: none;
  position: relative;
}
.card.card-danger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #dc3545, rgb(231.2974683544, 118.2025316456, 129.0379746835));
  z-index: 1;
}
.card.card-warning {
  border-top: none;
  position: relative;
}
.card.card-warning::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #ffc107, rgb(255, 212.125, 83.5));
  z-index: 1;
}
.card.card-info {
  border-top: none;
  position: relative;
}
.card.card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #17a2b8, rgb(53.6666666667, 205.7608695652, 229.8333333333));
  z-index: 1;
}
.card .card-img-top {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.card .card-img-top:hover {
  transform: scale(1.03);
}
.card.card-overlay {
  position: relative;
  overflow: hidden;
}
.card.card-overlay .card-img-top {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.card.card-overlay:hover .card-img-top {
  transform: scale(1.05);
}
.card.card-overlay .card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: #ffffff;
  transform: translateY(5px);
  transition: transform 0.3s ease;
}
.card.card-overlay .card-overlay-content h3 {
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.card.card-overlay .card-overlay-content p {
  margin-bottom: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}
.card.card-overlay:hover .card-overlay-content {
  transform: translateY(0);
}
.card.card-horizontal {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .card.card-horizontal {
    flex-direction: row;
  }
  .card.card-horizontal .card-img {
    width: 35%;
    position: relative;
    overflow: hidden;
  }
  .card.card-horizontal .card-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
    z-index: 1;
  }
  .card.card-horizontal .card-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.5s ease;
  }
  .card.card-horizontal:hover .card-img img {
    transform: scale(1.05);
  }
  .card.card-horizontal .card-content {
    width: 65%;
    display: flex;
    flex-direction: column;
  }
}
.card.card-stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.card.card-stat .stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.card.card-stat .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}
.card.card-stat .stat-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.card.card-stat .stat-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: rgba(0, 0, 150, 0.15);
  transition: transform 0.3s ease;
}
.card.card-stat:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}
.card.card-player {
  position: relative;
  overflow: hidden;
}
.card.card-player .player-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.card.card-player .player-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.card.card-player .player-image .player-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}
.card.card-player .player-info {
  padding: 1rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}
.card.card-player .player-info .player-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.card.card-player .player-info .player-position {
  color: #6c757d;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}
.card.card-player .player-info .player-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.card.card-player .player-info .player-stats .stat {
  text-align: center;
}
.card.card-player .player-info .player-stats .stat .stat-value {
  font-weight: 700;
  color: #000096;
}
.card.card-player .player-info .player-stats .stat .stat-label {
  font-size: 0.75rem;
  color: #6c757d;
}
.card.card-player:hover .player-image img {
  transform: scale(1.05);
}
.card.card-match {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 0.75rem;
  overflow: hidden;
}
.card.card-match .match-header {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  color: #ffffff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.card.card-match .match-content {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card.card-match .match-content .team {
  text-align: center;
  width: 40%;
}
.card.card-match .match-content .team .team-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.25rem;
}
.card.card-match .match-content .team .team-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card.card-match .match-content .team .team-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.card.card-match .match-content .match-details {
  text-align: center;
  width: 20%;
}
.card.card-match .match-content .match-details .match-score {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #000096;
}
.card.card-match .match-content .match-details .match-date {
  font-size: 0.75rem;
  color: #6c757d;
}
.card.card-match .match-footer {
  padding: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.875rem;
}
.card.card-match .match-footer a {
  color: #000096;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.card.card-match .match-footer a:hover {
  color: #000063;
  text-decoration: none;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.025em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0.5rem;
}
.form-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-radius: 0.25rem;
}
.form-group label.floating {
  position: absolute;
  top: -10px;
  left: 0.5rem;
  font-size: 0.75rem;
  padding: 0 0.25rem;
  background-color: #fff;
  z-index: 1;
}
.form-group label.floating::before {
  display: none;
}
.form-group .form-control, .form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=number],
.form-group input[type=date],
.form-group input[type=tel],
.form-group textarea,
.form-group select {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
  background-color: rgba(255, 255, 255, 0.9);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}
.form-group .form-control:focus, .form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus,
.form-group input[type=number]:focus,
.form-group input[type=date]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus,
.form-group select:focus {
  color: #1a1a2e;
  background-color: #fff;
  border-color: rgba(0, 0, 150, 0.5);
  outline: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 150, 0.1);
  transform: translateY(-2px);
}
.form-group .form-control::-moz-placeholder, .form-group input[type=text]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=password]::-moz-placeholder, .form-group input[type=number]::-moz-placeholder, .form-group input[type=date]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #6c757d;
  opacity: 0.7;
  font-style: italic;
}
.form-group .form-control::placeholder, .form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=password]::placeholder,
.form-group input[type=number]::placeholder,
.form-group input[type=date]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #6c757d;
  opacity: 0.7;
  font-style: italic;
}
.form-group .form-control:disabled, .form-group input[type=text]:disabled,
.form-group input[type=email]:disabled,
.form-group input[type=password]:disabled,
.form-group input[type=number]:disabled,
.form-group input[type=date]:disabled,
.form-group input[type=tel]:disabled,
.form-group textarea:disabled,
.form-group select:disabled, .form-group .form-control[readonly], .form-group input[readonly][type=text],
.form-group input[readonly][type=email],
.form-group input[readonly][type=password],
.form-group input[readonly][type=number],
.form-group input[readonly][type=date],
.form-group input[readonly][type=tel],
.form-group textarea[readonly],
.form-group select[readonly] {
  background-color: rgba(0, 0, 0, 0.03);
  opacity: 0.8;
  cursor: not-allowed;
}
.form-group .form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6c757d;
  padding-left: 0.5rem;
  position: relative;
}
.form-group .form-text.info::before {
  content: "ℹ️";
  margin-right: 0.25rem;
  font-size: 0.75rem;
}
.form-group .is-invalid {
  border-color: #dc3545;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.form-group .is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}
.form-group .invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
  padding-left: 0.5rem;
  position: relative;
}
.form-group .invalid-feedback::before {
  content: "⚠️";
  margin-right: 0.25rem;
  font-size: 0.75rem;
}
@keyframes shake {
  10%, 90% {
    transform: translateX(-1px);
  }
  20%, 80% {
    transform: translateX(2px);
  }
  30%, 50%, 70% {
    transform: translateX(-2px);
  }
  40%, 60% {
    transform: translateX(2px);
  }
}

.auth-form {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.auth-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: 0;
  opacity: 0.5;
}
.auth-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  z-index: 1;
}
.auth-form .form-title {
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}
.auth-form .form-title h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.auth-form .form-title p {
  color: #6c757d;
  font-size: 0.875rem;
  max-width: 80%;
  margin: 0 auto;
}
.auth-form .form-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.auth-form .form-footer {
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  padding-top: 1rem;
}
.auth-form .form-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.auth-form .form-footer a {
  color: #000096;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2px;
}
.auth-form .form-footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  transition: width 0.3s ease;
}
.auth-form .form-footer a:hover {
  text-decoration: none;
  color: #000063;
}
.auth-form .form-footer a:hover::after {
  width: 100%;
}
.auth-form .remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.auth-form .remember-me input[type=checkbox] {
  margin-right: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 150, 0.3);
  border-radius: 0.25rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-form .remember-me input[type=checkbox]:checked {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-color: transparent;
}
.auth-form .remember-me input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.auth-form .remember-me input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 150, 0.2);
  outline: none;
}
.auth-form .remember-me label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: #6c757d;
  padding-left: 0;
}
.auth-form .remember-me label::before {
  display: none;
}
.auth-form .btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.auth-form .btn-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}
.auth-form .btn-submit:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=tel],
textarea,
select {
  position: relative;
  z-index: 1;
}
input[type=text]:focus + .focus-effect,
input[type=email]:focus + .focus-effect,
input[type=password]:focus + .focus-effect,
input[type=number]:focus + .focus-effect,
input[type=date]:focus + .focus-effect,
input[type=tel]:focus + .focus-effect,
textarea:focus + .focus-effect,
select:focus + .focus-effect {
  opacity: 1;
  transform: scale(1);
}

.input-wrapper {
  position: relative;
}
.input-wrapper .focus-effect {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 0.75rem;
  background: linear-gradient(to right, rgba(0, 0, 150, 0.05), rgba(255, 215, 0, 0.05));
  z-index: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  padding: 1rem;
}
textarea::-webkit-resizer {
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 150, 0.2) 50%);
  border-radius: 0 0 0.5rem 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
}
select option {
  padding: 0.5rem 1rem;
}
select option:checked {
  background-color: rgba(0, 0, 150, 0.1);
  color: #000096;
}
select:hover {
  background-color: rgba(0, 0, 150, 0.02);
}

input[type=date] {
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 4h10M7 2v2M9 2v2M2 6h12v8H2z'/%3e%3c/svg%3e");
  background-position: center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  margin-right: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(0, 0, 150, 0.3);
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-check input[type=checkbox]:focus,
.form-check input[type=radio]:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 150, 0.2);
  outline: none;
}
.form-check input[type=checkbox] {
  border-radius: 0.25rem;
}
.form-check input[type=checkbox]:checked {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-color: transparent;
}
.form-check input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.form-check input[type=radio] {
  border-radius: 50%;
}
.form-check input[type=radio]:checked {
  border-width: 6px;
  border-color: #000096;
  background-color: white;
}
.form-check label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1rem;
  padding-left: 0;
}
.form-check label::before {
  display: none;
}
.form-check.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-check.disabled input, .form-check.disabled label {
  cursor: not-allowed;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.input-group:focus-within {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}
.input-group .form-control, .input-group input[type=text],
.input-group input[type=email],
.input-group input[type=password],
.input-group input[type=number],
.input-group input[type=date],
.input-group input[type=tel],
.input-group textarea,
.input-group select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  box-shadow: none;
}
.input-group .form-control:focus, .input-group input[type=text]:focus,
.input-group input[type=email]:focus,
.input-group input[type=password]:focus,
.input-group input[type=number]:focus,
.input-group input[type=date]:focus,
.input-group input[type=tel]:focus,
.input-group textarea:focus,
.input-group select:focus {
  box-shadow: none;
  transform: none;
}
.input-group .form-control:not(:last-child), .input-group input[type=text]:not(:last-child),
.input-group input[type=email]:not(:last-child),
.input-group input[type=password]:not(:last-child),
.input-group input[type=number]:not(:last-child),
.input-group input[type=date]:not(:last-child),
.input-group input[type=tel]:not(:last-child),
.input-group textarea:not(:last-child),
.input-group select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .form-control:not(:first-child), .input-group input[type=text]:not(:first-child),
.input-group input[type=email]:not(:first-child),
.input-group input[type=password]:not(:first-child),
.input-group input[type=number]:not(:first-child),
.input-group input[type=date]:not(:first-child),
.input-group input[type=tel]:not(:first-child),
.input-group textarea:not(:first-child),
.input-group select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .input-group-prepend,
.input-group .input-group-append {
  display: flex;
}
.input-group .input-group-prepend .input-group-text,
.input-group .input-group-append .input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a2e;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(to right, rgba(0, 0, 150, 0.05), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 45px;
}
.input-group .input-group-prepend {
  margin-right: -1px;
}
.input-group .input-group-prepend .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-group .input-group-append {
  margin-left: -1px;
}
.input-group .input-group-append .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.input-group .btn {
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  z-index: 2;
}
.input-group .btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-group .btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.input-group .btn:focus {
  box-shadow: none;
}
.input-group.search-group .form-control, .input-group.search-group input[type=text],
.input-group.search-group input[type=email],
.input-group.search-group input[type=password],
.input-group.search-group input[type=number],
.input-group.search-group input[type=date],
.input-group.search-group input[type=tel],
.input-group.search-group textarea,
.input-group.search-group select {
  padding-left: 1.5rem;
  font-size: 1rem;
}
.input-group.search-group .input-group-prepend .input-group-text {
  background: transparent;
  border-right: none;
  padding-right: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 5;
  border: none;
}
.input-group.search-group .input-group-append .btn {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.bid-form {
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bid-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
}
.bid-form .bid-title {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #000096;
  position: relative;
  display: inline-block;
}
.bid-form .bid-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.bid-form .bid-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000096;
  text-align: center;
  margin-bottom: 1rem;
}
.bid-form .bid-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bid-form .bid-controls .btn {
  flex: 1;
  margin: 0 0.25rem;
}
.bid-form .bid-controls .btn:first-child {
  margin-left: 0;
}
.bid-form .bid-controls .btn:last-child {
  margin-right: 0;
}
.bid-form .bid-info {
  background-color: rgba(23, 162, 184, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
  border-left: 3px solid #17a2b8;
}
.bid-form .form-group label :before {
  background: linear-gradient(135deg, #FFD700 0%, #ccac00 100%);
}

.hero {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  background-color: #000096;
  color: #ffffff;
  border: none;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .hero .hero-container {
    padding: 4rem 0;
  }
}
.hero .hero-content {
  max-width: 600px;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero .hero-content h1 {
    font-size: 3.5rem;
  }
}
.hero .hero-content h1 .highlight {
  color: #FFD700;
}
.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero .hero-content .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero.hero-centered {
  text-align: center;
}
.hero.hero-centered .hero-content {
  margin: 0 auto;
}
.hero.hero-centered .hero-buttons {
  justify-content: center;
}
.hero.hero-split .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .hero.hero-split .hero-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero.hero-split .hero-content,
.hero.hero-split .hero-image {
  width: 100%;
}
@media (min-width: 992px) {
  .hero.hero-split .hero-content,
  .hero.hero-split .hero-image {
    width: 48%;
  }
}
.hero.hero-split .hero-image {
  margin-top: 2.5rem;
}
@media (min-width: 992px) {
  .hero.hero-split .hero-image {
    margin-top: 0;
  }
}
.hero.hero-split .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.hero .hero-shape {
  position: absolute;
  z-index: 1;
}
.hero .hero-shape.shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
}
.hero .hero-shape.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.05);
}
.hero.hero-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000096 0%, #000070 100%);
  z-index: 1;
}
.hero.hero-bg-image {
  background-size: cover;
  background-position: center;
}
.hero.hero-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 112, 0.7);
  z-index: 1;
}

.bg-primary-blue {
  background-color: #000096;
}

.text-primary-blue {
  color: #000096;
}

.border-primary-blue {
  border-color: #000096;
}

.hover\:bg-primary-blue:hover {
  background-color: #000096;
}

.hover\:text-primary-blue:hover {
  color: #000096;
}

.hover\:border-primary-blue:hover {
  border-color: #000096;
}

.bg-secondary-gold {
  background-color: #FFD700;
}

.text-secondary-gold {
  color: #FFD700;
}

.border-secondary-gold {
  border-color: #FFD700;
}

.hover\:bg-secondary-gold:hover {
  background-color: #FFD700;
}

.hover\:text-secondary-gold:hover {
  color: #FFD700;
}

.hover\:border-secondary-gold:hover {
  border-color: #FFD700;
}

.bg-primary-light {
  background-color: #2626b8;
}

.text-primary-light {
  color: #2626b8;
}

.bg-primary-dark {
  background-color: #00006e;
}

.text-primary-dark {
  color: #00006e;
}

.bg-secondary-light {
  background-color: #FFDF4D;
}

.text-secondary-light {
  color: #FFDF4D;
}

.bg-secondary-dark {
  background-color: #D4AF37;
}

.text-secondary-dark {
  color: #D4AF37;
}

.bg-gradient-primary {
  background-image: linear-gradient(135deg, #000096 0%, #00006e 100%);
}

.bg-gradient-secondary {
  background-image: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.btn-primary-blue {
  background-color: #000096;
  color: #ffffff;
}
.btn-primary-blue:hover {
  background-color: #2626b8;
}

.btn-secondary-gold {
  background-color: #FFD700;
  color: #1a1a2e;
}
.btn-secondary-gold:hover {
  background-color: #FFDF4D;
}

.btn-outline-primary-blue {
  border: 1px solid #000096;
  color: #000096;
  background-color: transparent;
}
.btn-outline-primary-blue:hover {
  background-color: #000096;
  color: #ffffff;
}

.btn-outline-secondary-gold {
  border: 1px solid #FFD700;
  color: #FFD700;
  background-color: transparent;
}
.btn-outline-secondary-gold:hover {
  background-color: #FFD700;
  color: #1a1a2e;
}

.matches-week-slider .slider-header {
  background-color: #000096;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.matches-week-slider .slider-header h3 {
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.matches-week-slider .slider-header button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
.matches-week-slider .slider-header button:hover {
  color: #FFD700;
}
.matches-week-slider .slider-header button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.matches-week-slider .slider-content {
  background-color: #FFD700;
  padding: 1rem;
}
.matches-week-slider .slider-content .empty-state {
  padding: 2rem;
  text-align: center;
}
.matches-week-slider .slider-content .empty-state .material-icons {
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}
.matches-week-slider .slider-content .empty-state p {
  font-size: 1.25rem;
  font-weight: 600;
}

.versus-matches .versus-match {
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.4s ease;
}
.versus-matches .versus-match:hover {
  transform: perspective(1000px) rotateX(0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.3);
}
.versus-matches .versus-match:last-child {
  margin-bottom: 0;
}
.versus-matches .versus-match .match-date {
  background: linear-gradient(to right, #000066, #000096, #000066);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.versus-matches .versus-match .match-date:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}
.versus-matches .versus-match .match-date:before {
  content: "VS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0.05;
  color: #FFD700;
  letter-spacing: 5px;
}
.versus-matches .versus-match .match-container {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFD700;
}
.versus-matches .versus-match .match-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 48%, #FFD700 50%, transparent 52%);
  z-index: 1;
  pointer-events: none;
}
.versus-matches .versus-match .match-container .team-logo {
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.7));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 70px !important;
  width: 70px !important;
  position: relative;
  z-index: 5;
}
.versus-matches .versus-match .match-container .team-logo:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.7) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(5px);
}
.versus-matches .versus-match .match-container .team-logo:hover {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 10px #FFD700) brightness(1.2);
}
.versus-matches .versus-match .match-container .team-logo:hover:before {
  opacity: 0.8;
  animation: pulse-energy 1s infinite alternate;
}
.versus-matches .versus-match .match-container > div:first-child {
  background: linear-gradient(to right, #000066, #000096);
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.versus-matches .versus-match .match-container > div:first-child:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #FFD700, transparent);
  opacity: 0.7;
}
.versus-matches .versus-match .match-container > div:first-child span {
  position: relative;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.3rem;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #ffffff, #cccccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.7));
}
.versus-matches .versus-match .match-container > div:nth-child(2) {
  background: #FFD700;
  position: relative;
  z-index: 3;
  width: 80px !important;
  min-width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  padding: 0;
  overflow: visible;
  height: 40px;
}
.versus-matches .versus-match .match-container > div:nth-child(2) div {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000096;
  transform: rotate(-20deg) scale(1.4);
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.versus-matches .versus-match .match-container > div:nth-child(2) div:hover {
  transform: scale(1.05);
}
.versus-matches .versus-match .match-container > div:nth-child(3) {
  background: linear-gradient(to left, #000066, #000096);
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.versus-matches .versus-match .match-container > div:nth-child(3):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #FFD700, transparent);
  opacity: 0.7;
}
.versus-matches .versus-match .match-container > div:nth-child(3) span {
  position: relative;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.3rem;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #ffffff, #cccccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.7));
}
.versus-matches .versus-match .match-container .launch-match-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.versus-matches .versus-match .match-container .launch-match-button .btn-launch-match {
  background: linear-gradient(to bottom, #FFD700, #FFC500);
  color: #000096;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.versus-matches .versus-match .match-container .launch-match-button .btn-launch-match:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.versus-matches .versus-match .match-container .launch-match-button .btn-launch-match:hover {
  transform: scale(1);
  box-shadow: 0 0 30px rgb(255, 215, 0);
}
.versus-matches .versus-match .match-container .launch-match-button .btn-launch-match:hover:before {
  opacity: 0.5;
}
.versus-matches .versus-match .match-container .launch-match-button .btn-launch-match .material-icons {
  font-size: 1.2rem;
}
.versus-matches .versus-match .match-container:hover .launch-match-button {
  opacity: 1;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes pulse-energy {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .matches-section h3 {
    font-size: 1rem;
  }
  .championships-section h3 {
    font-size: 1rem;
  }
  .versus-matches {
    padding: 0;
  }
  .versus-matches .versus-match {
    margin-bottom: 0;
    border-bottom: 2px solid #FFD700;
    box-shadow: none;
    transform: none;
  }
  .versus-matches .versus-match .match-date {
    font-size: 0.8rem;
    padding: 0.5rem;
    letter-spacing: 0.5px;
    background-color: #000096;
    color: white;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #FFD700;
  }
  .versus-matches .versus-match .match-date:after {
    display: none;
  }
  .versus-matches .versus-match .match-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 80px;
  }
  .versus-matches .versus-match .match-container > div:nth-child(2) {
    position: relative;
    width: 60px !important;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFD700;
    z-index: 2;
    padding: 0;
    margin: 0 10px;
  }
  .versus-matches .versus-match .match-container > div:nth-child(2):before, .versus-matches .versus-match .match-container > div:nth-child(2):after {
    display: none;
  }
  .versus-matches .versus-match .match-container > div:nth-child(2) div {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000096;
    text-shadow: none;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1), .versus-matches .versus-match .match-container > div:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
    height: 100%;
    background-color: #000096;
    position: relative;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1):after, .versus-matches .versus-match .match-container > div:nth-child(3):after {
    display: none;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1) .flex, .versus-matches .versus-match .match-container > div:nth-child(3) .flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1) .flex {
    flex-direction: row;
    justify-content: flex-end;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1) span {
    order: 1;
    text-align: right;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1) .team-logo {
    order: 2;
    height: 40px !important;
    width: 40px !important;
    background-color: white;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .versus-matches .versus-match .match-container > div:nth-child(1) .team-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .versus-matches .versus-match .match-container > div:nth-child(3) .flex {
    flex-direction: row;
    justify-content: flex-start;
  }
  .versus-matches .versus-match .match-container > div:nth-child(3) span {
    order: 2;
    text-align: left;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
  }
  .versus-matches .versus-match .match-container > div:nth-child(3) .team-logo {
    order: 1;
    height: 40px !important;
    width: 40px !important;
    background-color: white;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .versus-matches .versus-match .match-container > div:nth-child(3) .team-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .versus-matches .versus-match .match-container .launch-match-button {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .versus-matches .versus-match .match-container .launch-match-button:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
  }
  .versus-matches .versus-match .match-container .launch-match-button a {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: #FFD700;
    color: #000096;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  .versus-matches .versus-match .match-container .launch-match-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }
  .versus-matches .versus-match .match-container .launch-match-button a .material-icons {
    font-size: 0.9rem;
    margin-right: 4px;
  }
}
.news-slider-container {
  position: relative;
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
}
.news-slider-container .news-slider-header {
  position: relative;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
}
.news-slider-container .news-slider-header.header-gold {
  background: linear-gradient(to right, #FFD700, #E6C200);
  border-color: #000096;
}
.news-slider-container .news-slider-header.header-gold h2, .news-slider-container .news-slider-header.header-gold .material-icons, .news-slider-container .news-slider-header.header-gold a {
  color: #000096;
}
.news-slider-container .news-slider-header .news-title-text {
  font-family: "Russo One", sans-serif;
  letter-spacing: 1px;
}
.news-slider-container .news-slider-wrapper {
  min-height: 500px;
}
.news-slider-container .news-slider-wrapper .slider-bg {
  background: linear-gradient(to bottom, #000096, #000070);
}
.news-slider-container .news-slider-wrapper .circle-accent.gold {
  background-color: #FFD700;
}
.news-slider-container .news-slider-wrapper .circle-accent.blue {
  background-color: #0000CC;
}
.news-slider-container .news-slider-wrapper .news-slider-control {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFD700;
  color: #000096;
}
.news-slider-container .news-slider-wrapper .news-slider-control:hover {
  transform: scale(1.1);
  background-color: #998100;
}
.news-slider-container .news-slider-wrapper .news-slider-control:active {
  transform: scale(0.95);
}
.news-slider-container .news-slider-wrapper .news-slider-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px #998100;
}
.news-slider-container .news-slider-wrapper .slide-indicator.active {
  background-color: #FFD700;
}
.news-slider-container .news-slider-wrapper .slide-indicator.inactive {
  background-color: #9CA3AF;
}
.news-slider-container .news-slider-wrapper .news-slider-track {
  padding: 2rem 1rem;
  min-height: 400px;
  position: relative;
}
.news-slider-container .news-slider-wrapper .news-slider-track > div > template > div {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  height: auto !important;
}
.news-slider-container .news-card {
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.5s ease;
  height: 100%;
  background: linear-gradient(to bottom right, #000096, #000070);
  border-color: #000070;
}
.news-slider-container .news-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateZ(0);
}
.news-slider-container .news-card .news-card-media {
  position: relative;
  overflow: hidden;
  background-color: #000096;
}
.news-slider-container .news-card .news-card-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
}
.news-slider-container .news-card .news-card-media .news-team-logo {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-slider-container .news-card .news-card-media .news-team-logo:hover {
  transform: scale(1.05);
}
.news-slider-container .news-card .news-card-media .news-icon-placeholder {
  animation: glow 3s infinite;
  padding: 1.5rem;
  border-radius: 50%;
  color: #FFD700;
}
.news-slider-container .news-card .news-card-content {
  position: relative;
}
.news-slider-container .news-card .news-card-content .news-title {
  position: relative;
  display: inline-block;
}
.news-slider-container .news-card .news-card-content .news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: #FFD700;
}
.news-slider-container .news-card .news-card-content .news-subtitle {
  font-style: italic;
  color: #FFD700;
}
.news-slider-container .news-card .news-card-content .news-content {
  position: relative;
}
.news-slider-container .news-card .news-card-content .news-content.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-slider-container .slide-indicators button {
  transition: all 0.3s ease;
}
.news-slider-container .slide-indicators button.active {
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .news-slider-container {
    overflow: hidden;
    position: relative;
    background: #000096;
  }
  .news-slider-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 0, 124.5), #000096);
    z-index: 0;
  }
  .news-slider-container .news-slider-header {
    clip-path: none;
    border-radius: 0;
    padding: 0.75rem 1rem;
    position: relative;
    z-index: 2;
    background: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news-slider-container .news-slider-header h2 {
    font-size: 1.25rem;
    color: #000096;
    font-weight: 700;
    margin: 0;
  }
  .news-slider-container .news-slider-header .news-title-text {
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .news-slider-container .news-slider-header .view-all-link {
    font-size: 0.75rem;
    color: #000096;
    display: flex;
    align-items: center;
  }
  .news-slider-container .news-slider-header .view-all-link .material-icons {
    font-size: 14px;
    margin-left: 4px;
  }
  .news-slider-container .news-slider-wrapper {
    min-height: 350px;
    position: relative;
    z-index: 1;
  }
  .news-slider-container .news-slider-wrapper .control-bar {
    padding: 0 0 20px;
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }
  .news-slider-container .news-slider-wrapper .left-nav, .news-slider-container .news-slider-wrapper .right-nav {
    display: none;
  }
  .news-slider-container .news-slider-wrapper .right-nav {
    right: 20px;
  }
  .news-slider-container .news-slider-wrapper .circle-accent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
  }
  .news-slider-container .news-slider-wrapper .circle-accent.gold {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 10px;
    background-color: #FFD700;
  }
  .news-slider-container .news-slider-wrapper .circle-accent.blue {
    width: 100px;
    height: 100px;
    bottom: 10px;
    left: 10px;
    background-color: #0000fc;
  }
  .news-slider-container .news-slider-wrapper .news-slider-track {
    padding: 1rem;
    min-height: 740px;
  }
  .news-slider-container .news-slider-wrapper .slider-controls {
    bottom: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
  }
  .news-slider-container .news-slider-wrapper .slider-controls button {
    width: 36px;
    height: 36px;
    margin: 0 0.5rem;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
  }
  .news-slider-container .news-slider-wrapper .slider-controls button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .news-slider-container .news-slider-wrapper .slider-controls button .material-icons {
    font-size: 1.25rem;
    color: #000096;
  }
  .news-slider-container .news-card {
    flex-direction: column;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  .news-slider-container .news-card .news-card-media {
    width: 100%;
    min-height: 340px;
    border-radius: 8px 8px 0 0;
  }
  .news-slider-container .news-card .news-card-media img {
    height: 100%;
    width: 100%;
  }
  .news-slider-container .news-card .news-card-content {
    width: 100%;
    padding: 1rem;
  }
  .news-slider-container .news-card .news-card-content .news-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .news-slider-container .news-card .news-card-content .news-card-excerpt {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    max-height: 4.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news-slider-container .news-card .news-card-content .news-card-meta {
    font-size: 0.75rem;
  }
  .news-slider-container .news-card .news-card-content .news-card-meta .material-icons {
    font-size: 0.875rem;
  }
  .news-slider-container .news-card .news-card-content .news-card-actions {
    margin-top: 0.75rem;
  }
  .news-slider-container .news-card .news-card-content .news-card-actions .btn-read-more {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .news-slider-container .news-pagination {
    margin-top: 0.5rem;
  }
  .news-slider-container .news-pagination .pagination-dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}
/**
 * Styles pour la section des championnats
 */
.championships-section {
  border-top: 4px solid #FFD700;
  background: #000096;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-bottom: 0;
}
.championships-section-header {
  background: linear-gradient(90deg, #000096, #000063);
  padding: 1rem 1.5rem;
  border-bottom: 3px solid #FFD700;
}
.championships-section-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}
.championships-section-header .action-button {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFD700;
  color: #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.championships-section-header .action-button:hover {
  background-color: #FFD700;
  color: #000063;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.championships-section-header .action-button i {
  margin-right: 0.5rem;
}
.championships-section-content {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.championships-section-content .empty-state {
  text-align: center;
  padding: 3rem 1rem;
}
.championships-section-content .empty-state i {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.championships-section-content .empty-state p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
}
.championships-section-content .championships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.championships-section-content .championship-card {
  background: linear-gradient(135deg, rgba(0, 0, 150, 0.3) 0%, rgba(0, 0, 50, 0.5) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.championships-section-content .championship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}
.championships-section-content .championship-card:hover::after {
  opacity: 0.2;
}
.championships-section-content .championship-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%);
  background-size: 4px 4px;
  opacity: 0.1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.championships-section-content .championship-card-content {
  position: relative;
  z-index: 2;
}
.championships-section-content .championship-card-title {
  color: #FFD700;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.championships-section-content .championship-card-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.championships-section-content .championship-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.championships-section-content .championship-card-footer .divisions-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
.championships-section-content .championship-card-footer .actions {
  display: flex;
  gap: 0.75rem;
}
.championships-section-content .championship-card-footer .actions a {
  color: #FFD700;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.championships-section-content .championship-card-footer .actions a:hover {
  color: rgb(255, 227, 76.5);
  text-decoration: underline;
}
.championships-section-content .championship-card-status {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
}
.championships-section-content .championship-card-status.active {
  background-color: #10b981;
  color: white;
}
.championships-section-content .championship-card-status.pending {
  background-color: #f59e0b;
  color: white;
}
.championships-section-content .championship-card-status.upcoming {
  background-color: #3b82f6;
  color: white;
}
.championships-section-content .championship-card-status.completed {
  background-color: #6b7280;
  color: white;
}
@media (max-width: 768px) {
  .championships-section {
    padding: 0;
    border-top: none;
  }
  .championships-section-header {
    padding: 0.75rem 1rem;
  }
  .championships-section-header h3 {
    font-size: 1rem;
    text-align: left;
    text-transform: none;
  }
  .championships-section .championship-card {
    margin: 0;
    border-radius: 0;
    border-bottom: 2px solid #FFD700;
    box-shadow: none;
    background-color: #000096;
  }
  .championships-section .championship-card-header {
    padding: 0.75rem 1rem;
  }
  .championships-section .championship-card-header h4 {
    font-size: 1.1rem;
    color: #FFD700;
  }
  .championships-section .championship-card-body {
    padding: 0.75rem 1rem;
  }
  .championships-section .championship-card-body .teams-count {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .championships-section .championship-card-body .divisions-info {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .championships-section .championship-card-body .divisions-info .actions {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .championships-section .championship-card-body .divisions-info .actions a {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    font-weight: bold;
  }
  .championships-section .championship-card-body .divisions-info .actions a:hover {
    background-color: rgba(255, 215, 0, 0.4);
    text-decoration: none;
  }
  .championships-section .championship-card-status {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
  }
  .championships-section .championship-card-status.pending {
    background-color: #FFD700;
    color: #000096;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
.transition {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.transform {
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-95 {
  --tw-scale-x: 0.95;
  --tw-scale-y: 0.95;
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.dropdown-menu.show {
  display: block;
}

.transform {
  transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.scale-95 {
  transform: scale(0.95);
}

.scale-100 {
  transform: scale(1);
}

.rotate-180 {
  transform: rotate(180deg);
}

@keyframes particleFadeOut {
  0% {
    transform: translateY(0) translateX(-50%);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-20px) translateX(-50%);
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes notification {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-pulse {
  animation: pulse 3s infinite ease-in-out;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

.animate-shimmer {
  background: linear-gradient(to right, rgba(0, 0, 150, 0) 0%, rgba(0, 0, 150, 0.2) 50%, rgba(0, 0, 150, 0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
}

.hover-glow:hover {
  box-shadow: 0 0 15px rgba(0, 0, 150, 0.5);
}

/**
 * Styles pour la sidebar de notifications
 */
.notifications-sidebar {
  width: 60px;
  background-color: #0a0a3a;
  color: #fff;
  padding: 1rem 0.75rem;
  position: fixed;
  top: 20px;
  right: 20px;
  transition: width 0.3s ease, padding 0.3s ease;
  z-index: 500;
  border-radius: 10px;
}
.notifications-sidebar .user-status {
  z-index: 100;
}
.notifications-sidebar .user-status > span {
  display: none;
}
.notifications-sidebar .user-status > span.icon {
  display: flex;
  position: relative;
  cursor: pointer;
}
.notifications-sidebar .user-status > span.icon svg {
  width: 25px;
  height: 25px;
  color: #FFD700;
}
.notifications-sidebar .user-status > span.icon:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #dc3545;
  border-radius: 100%;
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 10;
}
.notifications-sidebar .user-status > span.details-box.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  right: 28px;
  background-color: #0a0a3a;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.2;
  z-index: 200;
}
.notifications-sidebar .user-status > span.details-box.open .status {
  margin-top: 3px;
  background-color: #28a745;
  font-size: 11px;
  border-radius: 3px;
  padding: 0 10px;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  cursor: pointer;
}
.notifications-sidebar .user-status > span.details-box.open .status.in-game {
  background-color: #ffc107;
}
.notifications-sidebar .user-status > span.details-box.open .status.ready-to-play {
  background-color: #dc3545;
}
.notifications-sidebar .user-status > span.details-box.open .status.offline {
  background-color: #555;
}
.notifications-sidebar .user-status.online > span.icon:after {
  background: #28a745;
}
.notifications-sidebar .user-status.offline > span.icon:after {
  background: #555;
}
.notifications-sidebar .user-status.in-game > span.icon:after {
  background: #ffc107;
}
@media (max-width: 768px) {
  .notifications-sidebar .user-status {
    position: absolute;
    left: -40px;
    top: -5px;
    z-index: 100;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .notifications-sidebar .user-status > span.icon {
    display: flex !important;
  }
}
@media (min-width: 769px) {
  .notifications-sidebar .user-status {
    margin: 0 auto 15px;
    position: relative;
    width: 24px;
  }
  .notifications-sidebar .user-status > span.details-box.open {
    right: 32px;
    top: -16px;
  }
}
.notifications-sidebar .user-status.user-play {
  z-index: 90;
}
.notifications-sidebar .user-status.user-play .icon:after {
  display: none;
}
@media (min-width: 769px) {
  .notifications-sidebar .user-status.user-play {
    margin: 15px auto 0;
  }
}
@media (max-width: 768px) {
  .notifications-sidebar .user-status.user-play {
    top: -5px;
    left: -80px;
    z-index: 90;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .notifications-sidebar .user-status.user-play > span.icon {
    display: flex !important;
  }
}
.notifications-sidebar.expanded {
  width: 450px;
  padding: 1.5rem;
  overflow-y: auto;
  height: calc(100vh - 40px);
}
.notifications-sidebar.expanded .user-status {
  display: none;
}
.notifications-sidebar.expanded .mini-icons {
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  height: auto;
  overflow: visible;
}
.notifications-sidebar.expanded .mini-icons .mini-icon {
  margin-bottom: 1rem;
}
.notifications-sidebar.expanded .mini-icons .mini-icon:last-child {
  margin-bottom: 1rem;
}
.notifications-sidebar .sidebar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.notifications-sidebar .sidebar-header h3 {
  color: #FFD700;
  white-space: nowrap;
}
.notifications-sidebar .sidebar-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 50;
  color: #FFD700;
}
.sidebar.expanded .notifications-sidebar .sidebar-toggle {
  display: block;
}
.notifications-sidebar .notification-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ff3b30;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}
.notifications-sidebar .mini-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 30px;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}
.notifications-sidebar .mini-icons .mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}
.notifications-sidebar .mini-icons .mini-icon:last-child {
  margin-bottom: 0;
}
.notifications-sidebar .mini-icons .mini-icon.has-unread::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff3b30;
}
.notifications-sidebar .mini-icons .mini-icon i {
  color: #FFD700;
  font-size: 18px;
}
.notifications-sidebar .expanded-content {
  opacity: 0;
  display: none;
  transition: opacity 0.2s ease;
}
.notifications-sidebar .expanded-content.expanded {
  opacity: 1;
  display: block;
}
.notifications-sidebar .notifications-list {
  margin-bottom: 2rem;
}
.notifications-sidebar .notification-item {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.notifications-sidebar .notification-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.notifications-sidebar .notification-item.unread {
  background-color: rgba(0, 0, 150, 0.3);
  border-left: 3px solid #FFD700; /* Or */
}
.notifications-sidebar .notification-item.unread .notification-message {
  font-weight: 600;
}
.notifications-sidebar .notification-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.notifications-sidebar .notification-item:hover::after {
  transform: translateX(100%);
}
.notifications-sidebar .notification-indicator {
  min-width: 80px;
  height: 24px;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 0;
  flex-shrink: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.notifications-sidebar .notification-content {
  flex: 1;
}
.notifications-sidebar .notification-message {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
  color: #f8f8f8;
}
.notifications-sidebar .sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
.notifications-sidebar .sidebar-footer h3 {
  color: #FFD700;
}
.notifications-sidebar .team-info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.notifications-sidebar .team-info-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.notifications-sidebar .team-info-item.unread {
  background-color: rgba(0, 0, 150, 0.3);
  border-left: 3px solid #FFD700; /* Or */
  padding-left: 10px;
}
.notifications-sidebar .team-info-item.unread .team-info-message {
  font-weight: 600;
}
.notifications-sidebar .team-info-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}
.notifications-sidebar .team-info-content {
  flex: 1;
}
.notifications-sidebar .team-info-message {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.notifications-sidebar .empty-state, .notifications-sidebar .loading-indicator {
  padding: 1rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.notifications-sidebar .users-list-content {
  margin-top: 1rem;
  padding: 0.5rem;
}
.notifications-sidebar .users-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.notifications-sidebar .user-group {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 10, 58, 0.6) 0%, rgba(10, 10, 58, 0.3) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.notifications-sidebar .user-group-title {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #10103a 0%, #080064 100%);
  box-shadow: 0 4px 12px rgba(43, 68, 128, 0.4);
}
.notifications-sidebar .user-group-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
.notifications-sidebar .user-group-title i {
  font-size: 1.125rem;
}
.notifications-sidebar .user-group-title .count {
  margin: 0 0 0 auto;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 100%;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.notifications-sidebar .user-group-title.bg-ready .count {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.notifications-sidebar .user-group-title.bg-online .count {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.notifications-sidebar .user-group-title.bg-ingame .count {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.notifications-sidebar .user-group-list {
  padding: 0.75rem;
}
.notifications-sidebar .user-card {
  background: linear-gradient(135deg, rgba(15, 15, 45, 0.8) 0%, rgba(20, 20, 60, 0.6) 100%);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.notifications-sidebar .user-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.notifications-sidebar .user-card:hover::before {
  opacity: 1;
}
.notifications-sidebar .user-card:last-child {
  margin-bottom: 0;
}
.notifications-sidebar .user-card.ready-card {
  border-left-color: #f97316;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
}
.notifications-sidebar .user-card.ready-card:hover {
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}
.notifications-sidebar .user-card.online-card {
  border-left-color: #10b981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.notifications-sidebar .user-card.online-card:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.notifications-sidebar .user-card.ingame-card {
  border-left-color: #ef4444;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}
.notifications-sidebar .user-card.ingame-card:hover {
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}
.notifications-sidebar .user-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.notifications-sidebar .club-logo-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.notifications-sidebar .club-logo-wrapper .club-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.notifications-sidebar .user-info-main {
  flex: 1;
}
.notifications-sidebar .user-info-main .user-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.notifications-sidebar .user-info-main .club-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.125rem;
}
.notifications-sidebar .status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s infinite;
}
.notifications-sidebar .status-pulse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
.notifications-sidebar .status-pulse.ready {
  background-color: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}
.notifications-sidebar .status-pulse.ready::before {
  border: 2px solid #f97316;
}
.notifications-sidebar .status-pulse.online {
  background-color: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}
.notifications-sidebar .status-pulse.online::before {
  border: 2px solid #10b981;
}
.notifications-sidebar .status-pulse.ingame {
  background-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}
.notifications-sidebar .status-pulse.ingame::before {
  border: 2px solid #ef4444;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.notifications-sidebar .btn-challenge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.notifications-sidebar .btn-challenge i {
  font-size: 1rem;
}
.notifications-sidebar .btn-challenge.ready {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
}
.notifications-sidebar .btn-challenge.ready:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.notifications-sidebar .btn-challenge.online {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}
.notifications-sidebar .btn-challenge.online:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.notifications-sidebar .in-match-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.notifications-sidebar .in-match-badge i {
  font-size: 0.875rem;
}
.notifications-sidebar .user-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.notifications-sidebar .detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.notifications-sidebar .detail-row.stats-row {
  margin-top: 0.25rem;
}
.notifications-sidebar .detail-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.notifications-sidebar .detail-item i {
  font-size: 0.875rem;
  color: #FFD700;
}
.notifications-sidebar .stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  min-width: 70px;
  transition: all 0.3s ease;
}
.notifications-sidebar .stat-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}
.notifications-sidebar .stat-badge i {
  font-size: 1.125rem;
  color: #FFD700;
  margin-bottom: 0.25rem;
}
.notifications-sidebar .stat-badge span {
  font-size: 1rem;
  font-weight: 700;
  color: #FFD700;
}
.notifications-sidebar .stat-badge small {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.125rem;
}
.notifications-sidebar .stat-badge.reputation i {
  color: #fbbf24;
}
.notifications-sidebar .stat-badge.reputation span {
  color: #fbbf24;
}
.notifications-sidebar .stat-badge.courtesy i {
  color: #f472b6;
}
.notifications-sidebar .stat-badge.courtesy span {
  color: #f472b6;
}
.notifications-sidebar .stat-badge.ranking i {
  color: #a78bfa;
}
.notifications-sidebar .stat-badge.ranking span {
  color: #a78bfa;
}
.notifications-sidebar .efootball-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-size: 0.8125rem;
  color: #93c5fd;
}
.notifications-sidebar .efootball-info i {
  font-size: 1rem;
  color: #60a5fa;
}
.notifications-sidebar .efootball-info .division-badge {
  margin-left: auto;
  padding: 0.25rem 0.625rem;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  color: #dbeafe;
}
.notifications-sidebar .matches-to-play-content {
  margin-top: 1rem;
  padding: 0.5rem;
  margin-bottom: 20px;
}
.notifications-sidebar .matches-groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.notifications-sidebar .matches-group {
  border-radius: 12px;
  overflow: hidden;
}
.notifications-sidebar .matches-group-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.notifications-sidebar .user-card.match-card {
  border-left-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}
.notifications-sidebar .user-card.match-card:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.notifications-sidebar .user-card.match-card.late-match {
  border-left-color: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 20, 60, 0.6) 100%);
}
.notifications-sidebar .user-card.match-card.late-match:hover {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}
.notifications-sidebar .late-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.notifications-sidebar .late-badge i {
  font-size: 0.75rem;
}
.notifications-sidebar .offline-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  background: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(107, 114, 128, 0.3);
}
.notifications-sidebar .offline-badge i {
  font-size: 0.875rem;
}
.notifications-sidebar .match-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.notifications-sidebar .match-location i {
  color: #FFD700;
}
.notifications-sidebar .status-pulse.offline {
  background-color: #6b7280;
  box-shadow: 0 0 10px rgba(107, 114, 128, 0.6);
}
.notifications-sidebar .status-pulse.offline::before {
  border: 2px solid #6b7280;
}

@media (max-width: 768px) {
  .notifications-sidebar {
    position: relative;
    right: auto;
    top: auto;
    height: 24px;
    width: 24px;
    z-index: 50;
    transition: left 0.3s ease;
    background: none;
    padding: 0;
    order: 3;
    border-radius: 0;
    overflow: visible;
  }
  .notifications-sidebar.mobile-visible {
    left: 0;
  }
  .notifications-sidebar .mobile-icon {
    display: flex;
    position: relative;
    color: #FFD700;
    cursor: pointer;
  }
  .notifications-sidebar .mobile-icon .count {
    position: absolute;
    background: #dc3545;
    color: #fff;
    border-radius: 100%;
    font-size: 10px;
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -2px;
    right: -2px;
  }
  .notifications-sidebar .mini-icons {
    height: 40px;
  }
  .notifications-sidebar .mini-icons .mini-icon {
    height: 40px;
    width: 40px;
    margin: 0;
    display: none;
  }
  .notifications-sidebar.expanded {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    height: 100vh;
    background: #000030;
  }
  .notifications-sidebar.expanded .mini-icons {
    margin-bottom: 20px;
  }
  .notifications-sidebar.expanded .mini-icons .mini-icon {
    display: flex;
    width: 30px;
    height: 30px;
  }
  .notifications-sidebar.expanded .mobile-icon {
    display: none;
  }
  .mobile-toggle {
    position: fixed;
    top: 100px;
    left: 0;
    background-color: #0a0a3a;
    color: #FFD700;
    padding: 0.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    z-index: 49;
  }
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .desktop-only {
    display: table !important;
  }
}

@media (max-width: 767px) {
  .mobile-cards {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .data-table.desktop-only {
    display: table !important;
  }
}

.invitation-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.invitation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 150, 0.3);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}
.invitation-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.invitation-card:hover::before {
  opacity: 1;
}
.invitation-card.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}
.invitation-card .invitation-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.invitation-card .invitation-header h1, .invitation-card .invitation-header h2, .invitation-card .invitation-header h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.025em;
  position: relative;
  display: inline-block;
}
.invitation-card .invitation-header h1::after, .invitation-card .invitation-header h2::after, .invitation-card .invitation-header h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.invitation-card .invitation-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.invitation-card .invitation-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.5;
}
.invitation-card .invitation-link-container {
  background-color: rgba(0, 0, 150, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
}
.invitation-card .invitation-link-container:hover {
  background-color: rgba(0, 0, 150, 0.1);
}
.invitation-card .invitation-link-container .invitation-link-input {
  background-color: white;
  border: 1px solid rgba(0, 0, 150, 0.2);
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  width: 100%;
  font-family: "Rajdhani", sans-serif;
  color: #1a1a2e;
  transition: all 0.3s ease;
}
.invitation-card .invitation-link-container .invitation-link-input:focus {
  outline: none;
  border-color: #000096;
  box-shadow: 0 0 0 2px rgba(0, 0, 150, 0.2);
}
.invitation-card .invitation-link-container .copy-button {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.invitation-card .invitation-link-container .copy-button:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  transform: translateY(-2px);
}
.invitation-card .invitation-link-container .copy-button:active {
  transform: translateY(0);
}
.invitation-card .invitation-link-container .copy-button.copied {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}
.invitation-card .championship-info {
  margin-top: 1rem;
}
.invitation-card .championship-info .info-title {
  font-weight: 700;
  color: #000096;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.invitation-card .championship-info .info-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  border-radius: 0.25rem;
}
.invitation-card .championship-info .info-list {
  list-style-type: none;
  padding-left: 0;
}
.invitation-card .championship-info .info-list li {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
}
.invitation-card .championship-info .info-list li::before {
  content: "•";
  color: #000096;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.25rem;
}
.invitation-card .back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  color: #000096;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.invitation-card .back-link .material-icons {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.invitation-card .back-link:hover {
  background-color: rgba(0, 0, 150, 0.05);
  color: #00006e;
}
.invitation-card .back-link:hover .material-icons {
  transform: translateX(-3px);
}

@keyframes notification-appear {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background-color: #28a745;
  color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  animation: notification-appear 0.3s ease-out forwards;
}
.notification.success {
  background-color: #28a745;
}
.notification.error {
  background-color: #dc3545;
}

.beaten-bids-desktop {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(17, 24, 39, 0.8);
  border-radius: 0.375rem;
  border-top: 1px solid rgba(75, 85, 99, 0.5);
  position: relative;
  color: white;
}
.beaten-bids-desktop .beaten-bids-header {
  margin-bottom: 0.5rem;
}
.beaten-bids-desktop .beaten-bids-header h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(209, 213, 219, 0.9);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}
.beaten-bids-desktop table {
  width: 100%;
  border-collapse: collapse;
}
.beaten-bids-desktop table thead {
  display: none;
}
.beaten-bids-desktop table tbody tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.375rem;
  border-radius: 0.25rem;
  background-color: rgba(31, 41, 55, 0.6);
  transition: background-color 0.2s ease;
}
.beaten-bids-desktop table tbody tr:hover {
  background-color: rgba(31, 41, 55, 0.8);
}
.beaten-bids-desktop table tbody tr:last-child {
  margin-bottom: 0;
}
.beaten-bids-desktop table tbody tr td:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 0.9);
}
.beaten-bids-desktop table tbody tr td:last-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(248, 113, 113, 0.9);
  text-shadow: 0 0 5px rgba(248, 113, 113, 0.3);
}

.mobile-card .beaten-bids-container {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(17, 24, 39, 0.8);
  border-radius: 0.375rem;
  border-top: 1px solid rgba(75, 85, 99, 0.5);
  position: relative;
}
.mobile-card .beaten-bids-container:before {
  content: "Enchères battues";
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(209, 213, 219, 0.9);
}
.mobile-card .beaten-bids-container .beaten-bid-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.375rem;
  border-radius: 0.25rem;
  background-color: rgba(31, 41, 55, 0.6);
  transition: background-color 0.2s ease;
}
.mobile-card .beaten-bids-container .beaten-bid-item:hover {
  background-color: rgba(31, 41, 55, 0.8);
}
.mobile-card .beaten-bids-container .beaten-bid-item:last-child {
  margin-bottom: 0;
}
.mobile-card .beaten-bids-container .beaten-bid-item .team-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 0.9);
}
.mobile-card .beaten-bids-container .beaten-bid-item .bid-amount {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(248, 113, 113, 0.9);
  text-shadow: 0 0 5px rgba(248, 113, 113, 0.3);
}
.mobile-card .card-actions {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}
.mobile-card .card-actions .action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: rgba(31, 41, 55, 0.8);
  border-radius: 0.375rem;
  color: rgba(209, 213, 219, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(75, 85, 99, 0.5);
}
.mobile-card .card-actions .action-button:hover {
  background-color: rgb(31, 41, 55);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.mobile-card .card-actions .action-button:active {
  transform: translateY(0);
}
.mobile-card .card-actions .action-button .material-icons {
  font-size: 1rem;
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  #other-teams .mobile-card .info-row.progression .value {
    width: 100%;
  }
  #other-teams .mobile-card .info-row:last-child .value {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  #other-teams .mobile-card .info-row .value .bg-gray-800 {
    height: 10px !important;
    margin-top: 5px !important;
    width: calc(100% - 15px) !important;
    display: block !important;
    box-shadow: 0 0 10px rgba(200, 140, 200, 0.5);
    margin-left: 15px;
  }
  #other-teams .mobile-card .info-row .value .bg-gray-800 .bg-green-600, #other-teams .mobile-card .info-row .value .bg-gray-800 .bg-blue-600, #other-teams .mobile-card .info-row .value .bg-gray-800 .bg-red-600 {
    height: 10px !important;
    display: block !important;
  }
  .tab-content {
    position: relative;
    overflow: visible;
  }
  .tab-content .tab-title {
    font-size: 1.5rem;
  }
  .mobile-cards {
    position: relative;
  }
  .mobile-cards .recap.mobile-card {
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .mobile-cards .recap.mobile-card:before {
    display: none;
  }
  .mobile-cards .mobile-card .card-header .player-position {
    font-size: 0.6rem;
    padding: 1px 4px;
    border-radius: 4px;
    border: 1px solid #FFD700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #000096, rgb(0, 0, 73.5));
    flex-shrink: 0;
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=GK], .mobile-cards .mobile-card .card-header .player-position[data-position=GB] {
    background: linear-gradient(135deg, #ff9900, rgb(178.5, 107.1, 0));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=CB], .mobile-cards .mobile-card .card-header .player-position[data-position=DC] {
    background: linear-gradient(135deg, #00BCD4, rgb(0, 120.1603773585, 135.5));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=LB], .mobile-cards .mobile-card .card-header .player-position[data-position=DG] {
    background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=RB], .mobile-cards .mobile-card .card-header .player-position[data-position=DD] {
    background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=DMF], .mobile-cards .mobile-card .card-header .player-position[data-position=MDF] {
    background: linear-gradient(135deg, #339933, rgb(31.875, 95.625, 31.875));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=CMF], .mobile-cards .mobile-card .card-header .player-position[data-position=MR] {
    background: linear-gradient(135deg, #66cc66, rgb(57.375, 172.125, 57.375));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=AMF], .mobile-cards .mobile-card .card-header .player-position[data-position=MO] {
    background: linear-gradient(135deg, #99cc33, rgb(107.1, 142.8, 35.7));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=LMF], .mobile-cards .mobile-card .card-header .player-position[data-position=MG] {
    background: linear-gradient(135deg, #66cc99, rgb(57.375, 172.125, 114.75));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=RMF], .mobile-cards .mobile-card .card-header .player-position[data-position=MD] {
    background: linear-gradient(135deg, #33cc99, rgb(35.7, 142.8, 107.1));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=LWF], .mobile-cards .mobile-card .card-header .player-position[data-position=AiG] {
    background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=RWF], .mobile-cards .mobile-card .card-header .player-position[data-position=AiD] {
    background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=SS], .mobile-cards .mobile-card .card-header .player-position[data-position=SA] {
    background: linear-gradient(135deg, #cc3366, rgb(142.8, 35.7, 71.4));
  }
  .mobile-cards .mobile-card .card-header .player-position[data-position=CF], .mobile-cards .mobile-card .card-header .player-position[data-position=AC] {
    background: linear-gradient(135deg, #cc0000, rgb(127.5, 0, 0));
  }
  .mobile-cards .mobile-card .card-header .player-age {
    font-size: 0.7rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
    flex-direction: column;
    gap: 0;
  }
  .mobile-cards .mobile-card .card-header .player-age span {
    display: flex;
    line-height: 10px;
  }
  .mobile-cards .mobile-card .card-header .player-age span.label {
    font-size: 8px;
    line-height: 8px;
  }
  .mobile-cards .mobile-card .card-header .player-age.blue {
    background: #000096;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 1024px) {
  .e-card {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }
}
@media (max-width: 640px) {
  .e-card {
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .e-card .bg-white {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  form .w-full {
    width: 100%;
  }
  form button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .flex.justify-center.space-x-6 {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .flex.justify-center.space-x-6 button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bg-green-50, .bg-blue-50, .bg-red-50 {
    padding: 0.75rem;
  }
}

@media (max-width: 640px) {
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 640px) {
  .form-select {
    width: 100%;
    padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  h1, h3 {
    font-size: 90%;
  }
}

@media (max-width: 640px) {
  .mb-6, .mb-8 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .mt-6, .mt-8 {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  input, select {
    font-size: 16px;
  }
}

.big-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000096;
  position: relative;
  display: block;
}
.big-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: #f59e0b;
}

.club-card-container {
  margin-bottom: 2rem;
}
.club-card-container .club-card {
  background-color: #161e4a;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.2);
  position: relative;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}
.club-card-container .club-card:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #f59e0b, transparent 40%, transparent 60%, #f59e0b);
  border-radius: 0.5rem;
  z-index: -1;
  opacity: 0.5;
  animation: club-card-glow 3s infinite alternate;
}
.club-card-container .club-card .club-status-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  z-index: 10;
}
.club-card-container .club-card .club-content {
  position: relative;
}
.club-card-container .club-card .club-content .club-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  padding-top: 2.5rem;
}
.club-card-container .club-card .club-content .club-header .club-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  border: 3px solid rgba(245, 158, 11, 0.5);
  margin: 0 auto;
}
.club-card-container .club-card .club-content .club-header .club-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.club-card-container .club-card .club-content .club-header .club-info .club-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
  text-align: left;
  line-height: 1.2;
}
.club-card-container .club-card .club-content .club-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.club-card-container .club-card .club-content .club-details .detail-item {
  margin-bottom: 1rem;
}
.club-card-container .club-card .club-content .club-details .detail-item .detail-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  display: block;
}
.club-card-container .club-card .club-content .club-details .detail-item .detail-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: block;
}
.club-card-container .club-card .club-content .club-details .detail-item .detail-value.highlight {
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
}
.club-card-container .club-card .club-content .club-details .detail-item .detail-value.success {
  color: #10b981;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}
.club-card-container .lost-bids-section {
  margin-top: 2rem;
}
.club-card-container .lost-bids-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 0, 150, 0.5);
  position: relative;
  display: inline-block;
}
.club-card-container .lost-bids-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #f59e0b, transparent);
}
.club-card-container .lost-bids-section .lost-bids-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card {
  background-color: rgba(31, 41, 55, 0.6);
  border-radius: 0.375rem;
  padding: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content {
  display: flex;
  align-items: center;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-logo {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-info {
  flex-grow: 1;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-info .lost-club-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-info .lost-bid-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-info .lost-bid-details .lost-bid-amount {
  color: rgba(255, 255, 255, 0.8);
}
.club-card-container .lost-bids-section .lost-bids-container .lost-bid-card .lost-bid-content .lost-club-info .lost-bid-details .lost-bid-winner {
  color: rgba(255, 255, 255, 0.8);
}
@keyframes club-card-glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

@media (max-width: 991px) {
  .club-card-container .club-card .club-content .club-header {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    text-align: center;
    padding-top: 5rem;
    padding-right: 20px;
  }
  .club-card-container .club-card .club-content .club-header .club-info .club-name {
    text-align: center;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .club-card-container .club-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .club-card-container .club-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .club-card-container .club-card {
    padding: 1rem;
  }
  .club-card-container .club-card .club-status-badge {
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  .club-card-container .club-card .club-content .club-header {
    padding-top: 5rem;
    width: 50%;
  }
  .club-card-container .club-card .club-content .club-header .club-logo {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem auto;
  }
  .club-card-container .club-card .club-content .club-details {
    grid-template-columns: 1fr;
    text-align: center;
    width: 50%;
  }
  .club-card-container .club-card .club-content .club-details .detail-item .detail-label {
    font-size: 0.9rem;
  }
  .club-card-container .club-card .club-content .club-details .detail-item .detail-value {
    font-size: 1.1rem;
  }
  .club-card-container .club-card .club-content .club-details .detail-item .detail-value.highlight, .club-card-container .club-card .club-content .club-details .detail-item .detail-value.success {
    font-size: 1.25rem;
  }
  .club-card-container .lost-bids-section .section-title {
    font-size: 1.5rem;
    display: block;
    text-align: center;
  }
  .club-card-container .lost-bids-section .section-title:after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  .club-card-container .lost-bids-section .lost-bids-container {
    grid-template-columns: 1fr;
  }
}
.results-cards {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.results-cards .club-card {
  background-color: #161e4a;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.results-cards .club-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.results-cards .club-card:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #f59e0b, transparent 40%, transparent 60%, #f59e0b);
  border-radius: 0.5rem;
  z-index: -1;
  opacity: 0.5;
  animation: club-card-glow 3s infinite alternate;
}
.results-cards .club-card .card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(to right, rgba(0, 0, 50, 0.8), rgba(0, 0, 100, 0.6));
  position: relative;
}
.results-cards .club-card .card-header .club-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
  border: 2px solid rgba(245, 158, 11, 0.3);
  margin-right: 1rem;
  flex-shrink: 0;
}
.results-cards .club-card .card-header .club-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.results-cards .club-card .card-header .club-info {
  overflow: hidden;
}
.results-cards .club-card .card-header .club-info .club-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.results-cards .club-card .card-header .club-info .competition-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.results-cards .club-card .card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.results-cards .club-card .card-body .club-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.results-cards .club-card .card-body .club-details .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results-cards .club-card .card-body .club-details .detail-item .detail-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.results-cards .club-card .card-body .club-details .detail-item .detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.results-cards .club-card .card-body .card-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.results-cards .club-card .card-body .card-actions .bid-button {
  background-color: #f59e0b;
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}
.results-cards .club-card .card-body .card-actions .bid-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.results-cards .club-card .card-body .card-actions .bid-button:hover {
  background-color: rgb(246.0039370079, 167.7381889764, 35.4960629921);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(245, 158, 11, 0.5);
}
.results-cards .club-card .card-body .card-actions .bid-button:hover:before {
  left: 100%;
}
.results-cards .club-card .card-body .card-actions .bid-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}
.results-cards .club-card .card-body .card-actions .existing-bid {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
}
@keyframes club-card-glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

@media (max-width: 1024px) {
  .clubs-database .search-container .form-row {
    flex-direction: column;
  }
  .clubs-database .search-container .form-row .form-group {
    width: 100% !important;
    margin-bottom: 1rem;
  }
  .clubs-database .results-table-container {
    display: none;
  }
  .clubs-database .results-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .clubs-database .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  .clubs-database .pagination .pagination-info {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
@media (max-width: 740px) {
  .clubs-database .search-container {
    padding: 1rem;
  }
  .clubs-database .search-container .search-box {
    padding: 1rem;
  }
  .clubs-database .search-container .search-box .search-title {
    font-size: 1.25rem;
  }
  .clubs-database .search-container .search-results > .container {
    padding: 0;
  }
  .clubs-database .results-cards {
    grid-template-columns: 1fr;
  }
  .clubs-database .results-cards .club-card .card-header .club-info .club-name {
    max-width: 150px;
  }
  .clubs-database .results-cards .club-card .card-header .club-info .competition-badge {
    max-width: 140px;
  }
  .clubs-database .pagination .page-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}
.page-content {
  background: linear-gradient(135deg, #000033 0%, #000096 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.page-content ul li, .page-content ol li {
  position: relative;
}
.page-content ul li:before, .page-content ol li:before {
  content: "➜";
  position: absolute;
  left: -20px;
  font-size: 12px;
  top: 3px;
}
.page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/background-pattern.png");
  background-size: 200px;
  opacity: 0.05;
  pointer-events: none;
}
.page-content h1 {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.page-content h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #FFD700;
  margin-top: 8px;
}

.section-selector {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.section-selector .selector-title {
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-selector .selector-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.section-selector .selector-buttons .selector-button {
  background: #000066;
  color: white;
  border: 1px solid #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.section-selector .selector-buttons .selector-button:hover, .section-selector .selector-buttons .selector-button.active {
  background: #000096;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.section-selector .selector-buttons .selector-button:hover::after, .section-selector .selector-buttons .selector-button.active::after {
  opacity: 1;
}
.section-selector .selector-buttons .selector-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #FFD700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sections-container {
  position: relative;
}
.sections-container .section-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid #000096;
  transition: all 0.3s ease;
}
.sections-container .section-item .section-header {
  background: #000096;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.sections-container .section-item .section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}
.sections-container .section-item .section-header h2 {
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}
.sections-container .section-item .section-content {
  padding: 1.5rem;
}
.sections-container .section-item .section-content img {
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 150, 0.1);
}

.section-navigation {
  margin-bottom: 1.5rem;
}
.section-navigation button {
  background: #000066;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.section-navigation button:hover:not(:disabled) {
  background: #000096;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.section-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.section-navigation .section-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  background: #aaa;
}
.section-navigation .section-indicators button.active {
  background: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 768px) {
  .section-selector .selector-buttons {
    flex-direction: column;
  }
  .section-selector .selector-buttons .selector-button {
    width: 100%;
    text-align: center;
  }
  .sections-container .section-item .section-content {
    padding: 1rem;
    font-size: 1rem;
  }
}
/* Styles pour les tableaux dans le contenu des sections */
.section-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  table-layout: fixed; /* Fixe la largeur des colonnes */
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
}

.section-content table th {
  background-color: #000096; /* Couleur principale bleue */
  color: white;
  font-weight: bold;
  text-align: left;
  padding: 0.75rem 1rem;
}

.section-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle; /* Alignement vertical au milieu */
}

.section-content table tr:nth-child(even) {
  background-color: #f8fafc;
}

.section-content table tr:last-child td {
  border-bottom: none;
}

/* Style spécifique pour les tableaux de type "clé-valeur" (2 colonnes) */
.section-content table.key-value-table {
  display: grid;
  grid-template-columns: 1fr;
}

.section-content table.key-value-table tr {
  display: grid;
  grid-template-columns: 60% 40%;
  border-bottom: 1px solid #e2e8f0;
}

.section-content table.key-value-table tr:last-child {
  border-bottom: none;
}

.section-content table.key-value-table td {
  border-bottom: none;
  display: flex;
  align-items: center;
}

.section-content table.key-value-table td:first-child {
  font-weight: bold;
  color: #000096; /* Couleur principale bleue */
  padding-right: 1rem;
  justify-content: flex-start;
}

.section-content table.key-value-table td:last-child {
  justify-content: flex-end;
  text-align: right;
}

/* Styles responsives pour les tableaux sur mobile */
@media (max-width: 768px) {
  .section-content table:not(.key-value-table),
  .section-content table:not(.key-value-table) thead,
  .section-content table:not(.key-value-table) tbody,
  .section-content table:not(.key-value-table) th,
  .section-content table:not(.key-value-table) td,
  .section-content table:not(.key-value-table) tr {
    display: block;
  }
  .section-content table:not(.key-value-table) thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .section-content table:not(.key-value-table) tr {
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  .section-content table:not(.key-value-table) tr:nth-child(odd) {
    background-color: white;
  }
  .section-content table:not(.key-value-table) td {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 50%;
    text-align: right;
    min-height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-content table:not(.key-value-table) td:last-child {
    border-bottom: none;
  }
  .section-content table:not(.key-value-table) td:before {
    position: relative;
    padding-right: 10px;
    text-align: left;
    font-weight: bold;
    color: #000096; /* Couleur principale bleue */
    content: attr(data-label);
    display: flex;
    width: 50%;
  }
  /* Style spécifique pour les tableaux de type "clé-valeur" sur mobile */
  .section-content table.key-value-table {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section-content table.key-value-table tr {
    display: grid;
    grid-template-columns: 60% 40%;
    border-bottom: 1px solid #e2e8f0;
  }
  .section-content table.key-value-table tr:last-child {
    border-bottom: none;
  }
  .section-content table {
    width: 120%;
    position: relative;
    left: -30px;
  }
}
/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
  .section-content table.key-value-table td:first-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .section-content table.key-value-table td:last-child {
    padding-top: 0.25rem;
    justify-content: flex-start;
    text-align: left;
  }
}
/* Styles spécifiques pour les tableaux comme celui de l'image */
.infrastructure-table {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.infrastructure-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.infrastructure-table tr:last-child {
  border-bottom: none;
}
.infrastructure-table td {
  padding: 0.6rem 0.8rem;
  vertical-align: middle;
  line-height: 1.3;
  overflow: hidden;
}
.infrastructure-table td:first-child {
  width: 65%;
  font-weight: bold;
  color: #000096;
  text-align: left;
  white-space: normal;
  padding-right: 0.5rem;
}
.infrastructure-table td:last-child {
  width: 35%;
  text-align: right;
  white-space: nowrap;
  padding-left: 0.5rem;
}
.infrastructure-table td.value-overflow {
  font-size: 0.85rem;
  white-space: normal;
}
@media (max-width: 480px) {
  .infrastructure-table td:first-child {
    width: 60%;
    font-size: 0.85rem;
  }
  .infrastructure-table td:last-child {
    width: 40%;
    font-size: 0.85rem;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  z-index: 9999;
  animation: slideIn 0.3s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
}
.notification.success {
  background-color: #4CAF50;
}
.notification.error {
  background-color: #F44336;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.bid-increase, .bid-decrease {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.bid-increase .material-icons, .bid-decrease .material-icons {
  font-size: 13px;
  line-height: 1;
}

.bid-increase {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.bid-increase:hover:not(:disabled) {
  background-color: #2e7d32;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bid-decrease {
  background-color: #ffebee;
  color: #c62828;
}
.bid-decrease:hover:not(:disabled) {
  background-color: #c62828;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bid-increase:disabled, .bid-decrease:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-cancel-bid {
  background-color: #dc3545;
  color: #fff;
  border: 1px solid rgb(189.2151898734, 32.7848101266, 47.7721518987);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.btn-cancel-bid .material-icons {
  font-size: 14px;
  line-height: 1;
}
.btn-cancel-bid:hover {
  background-color: #ffebee;
  color: #c62828;
  border-color: #ffcdd2;
}
.btn-cancel-bid:hover .material-icons {
  color: #c62828;
}
.btn-cancel-bid.mobile {
  padding: 2px 10px;
  margin-top: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  overflow-y: auto;
}
.popup-overlay.fade-enter-active, .popup-overlay.fade-leave-active {
  transition: opacity 0.3s ease;
}
.popup-overlay.fade-enter-from, .popup-overlay.fade-leave-to {
  opacity: 0;
}

.popup-container {
  background: linear-gradient(135deg, #2c3e50, #1e293b);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.popup-container .popup-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.popup-container .popup-header h3 {
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.popup-container .popup-body {
  padding: 1.5rem;
  color: #e2e8f0;
}
.popup-container .popup-body a {
  color: #60a5fa;
  text-decoration: none;
}
.popup-container .popup-body a:hover {
  text-decoration: underline;
}
.popup-container .popup-body h1, .popup-container .popup-body h2, .popup-container .popup-body h3, .popup-container .popup-body h4, .popup-container .popup-body h5 {
  color: #fff;
}
.popup-container .popup-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-container .popup-footer .popup-navigation {
  display: flex;
  align-items: center;
}
.popup-container .popup-footer .popup-navigation .popup-indicator {
  display: flex;
  margin: 0 1rem;
}
.popup-container .popup-footer .popup-navigation .popup-indicator .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  transition: background-color 0.2s ease;
}
.popup-container .popup-footer .popup-navigation .popup-indicator .indicator-dot.active {
  background-color: #fff;
}
.popup-container .popup-footer .popup-navigation button {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.popup-container .popup-footer .popup-navigation button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.popup-container .popup-footer .popup-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.popup-container .popup-footer .popup-actions {
  display: flex;
  gap: 0.5rem;
}
.popup-container .popup-footer .popup-actions .btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.popup-container .popup-footer .popup-actions .btn.btn-primary {
  background-color: #3b82f6;
  color: #fff;
}
.popup-container .popup-footer .popup-actions .btn.btn-primary:hover {
  background-color: #2563eb;
}
.popup-container .popup-footer .popup-actions .btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.popup-container .popup-footer .popup-actions .btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.popup-container .popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.popup-container .popup-close:hover {
  color: #fff;
}

.popup-slide-enter-active,
.popup-slide-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-slide-enter-from {
  transform: translateX(100%);
  opacity: 0;
}

.popup-slide-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}

@media (max-width: 768px) {
  .popup-overlay .popup-container {
    top: 50px;
    width: 95%;
    max-height: 85vh;
  }
}
.tooltip-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.tooltip-container .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 0.3s ease;
}
.tooltip-container .info-icon:hover {
  color: #FFD700;
}
.tooltip-container .tooltip {
  visibility: hidden;
  position: absolute;
  bottom: -10px;
  right: 25px;
  background-color: #000096;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #0000f4;
  width: 600px;
  white-space: normal;
}
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.data-table .tooltip-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.mobile-card .tooltip-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
}
.mobile-card .tooltip-container .tooltip {
  left: 0;
  transform: translateX(0);
}
.mobile-card .tooltip-container .tooltip::after {
  left: 10px;
  margin-left: 0;
}

.comment-container {
  background-color: #000096;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid #0000f4;
  display: flex;
  gap: 5px;
  align-items: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-container {
  background-color: #1a202c;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  z-index: 10;
}
.popup-close:hover {
  color: white;
}

.popup-header {
  padding: 1.5rem;
  border-bottom: 1px solid #2d3748;
}
.popup-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.popup-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

.popup-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #2d3748;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-actions {
  display: flex;
  gap: 0.75rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #4299e1;
  color: white;
  border: none;
}
.btn-primary:hover:not(:disabled) {
  background-color: #3182ce;
}

.btn-secondary {
  background-color: #2d3748;
  color: white;
  border: none;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #4a5568;
}

.tier-button {
  background-color: #1f2937; /* bg-gray-800 */
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem; /* py-2 px-4 */
  border-radius: 0.25rem; /* rounded */
  transition: all 0.2s ease;
}
.tier-button:hover {
  background-color: #374151; /* bg-gray-700 */
}
.tier-button.active {
  background-color: #2563eb; /* bg-blue-600 */
}
.tier-button.current {
  border: 2px solid #facc15; /* border-2 border-yellow-400 */
}

.staff-selection {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-height: 20rem; /* max-h-80 */
  overflow-y: auto;
}
.staff-selection .staff-option {
  background-color: #1f2937; /* bg-gray-800 */
  padding: 1rem; /* p-4 */
  border-radius: 0.25rem; /* rounded */
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}
.staff-selection .staff-option:hover {
  background-color: #374151; /* bg-gray-700 */
}
.staff-selection .staff-option.selected {
  background-color: #1e3a8a; /* bg-blue-900 */
  border: 1px solid #3b82f6; /* border border-blue-500 */
}
.staff-selection .staff-option .staff-name {
  font-size: 1.125rem; /* text-lg */
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem; /* mb-2 */
}
.staff-selection .staff-option .staff-level {
  display: flex;
  margin-bottom: 0.75rem; /* mb-3 */
}
.staff-selection .staff-option .staff-competences {
  margin-top: 0.5rem;
}
.staff-selection .staff-option .staff-competences .competence-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.staff-selection .staff-option .staff-competences .competence-item .competence-name {
  font-size: 0.875rem; /* text-sm */
  color: #d1d5db; /* text-gray-300 */
}
.staff-selection .staff-option .staff-competences .competence-item .competence-level {
  display: flex;
  margin-left: 0.5rem;
}
.staff-selection .staff-option .staff-competences .competence-item .competence-level .competence-pip {
  width: 0.5rem; /* w-2 */
  height: 0.5rem; /* h-2 */
  border-radius: 9999px; /* rounded-full */
  background-color: #4b5563; /* bg-gray-600 */
  margin-right: 0.25rem;
}
.staff-selection .staff-option .staff-competences .competence-item .competence-level .competence-pip.filled {
  background-color: #60a5fa; /* bg-blue-400 */
}

.table-container {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  position: relative;
  background: rgba(255, 255, 255, 0.95);
}
.table-container:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
  background-color: transparent;
}
table thead {
  background: #000096;
}
table thead th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 150, 0.2);
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
table thead th.sortable {
  cursor: pointer;
}
table thead th.sortable:hover {
  background: linear-gradient(to right, rgba(0, 0, 150, 0.15), rgba(255, 215, 0, 0.15));
}
table thead th.sortable::after {
  content: "↕";
  margin-left: 0.25rem;
  opacity: 0.5;
  font-size: 0.8em;
}
table thead th.sortable.sort-asc::after {
  content: "↑";
  opacity: 1;
}
table thead th.sortable.sort-desc::after {
  content: "↓";
  opacity: 1;
}
table tbody tr {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
table tbody tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
table tbody tr:hover {
  background-color: rgba(0, 0, 150, 0.05);
}
table tbody tr.active {
  background-color: rgba(0, 0, 150, 0.1);
  position: relative;
}
table tbody tr.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
}
table tbody tr.upcoming {
  background-color: rgba(23, 162, 184, 0.05);
}
table tbody tr.upcoming::before {
  background: linear-gradient(to bottom, #17a2b8, rgb(53.6666666667, 205.7608695652, 229.8333333333));
}
table tbody tr.completed {
  background-color: rgba(40, 167, 69, 0.05);
}
table tbody tr.completed::before {
  background: linear-gradient(to bottom, #28a745, rgb(72.268115942, 211.231884058, 104));
}
table tbody tr.live {
  background-color: rgba(255, 193, 7, 0.05);
  animation: pulse-subtle 2s infinite;
}
table tbody tr.live::before {
  background: linear-gradient(to bottom, #ffc107, rgb(255, 212.125, 83.5));
}
table tbody tr td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
table tbody tr td.status {
  position: relative;
  padding-left: 1.5rem;
}
table tbody tr td.status::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
table tbody tr td.status.status-active::before {
  background-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}
table tbody tr td.status.status-inactive::before {
  background-color: #6c757d;
}
table tbody tr td.status.status-pending::before {
  background-color: #ffc107;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}
table tbody tr td.with-avatar {
  display: flex;
  align-items: center;
}
table tbody tr td.with-avatar .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 150, 0.1);
}
table tbody tr td.with-avatar .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
table tbody tr td .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
table tbody tr td .badge.badge-primary {
  background: linear-gradient(135deg, #000096, rgb(0, 0, 226.5));
  color: #ffffff;
}
table tbody tr td .badge.badge-secondary {
  background: linear-gradient(135deg, #FFD700, rgb(255, 227, 76.5));
  color: #ffffff;
}
table tbody tr td .badge.badge-success {
  background: linear-gradient(135deg, #28a745, rgb(72.268115942, 211.231884058, 104));
  color: #ffffff;
}
table tbody tr td .badge.badge-danger {
  background: linear-gradient(135deg, #dc3545, rgb(231.2974683544, 118.2025316456, 129.0379746835));
  color: #ffffff;
}
table tbody tr td .badge.badge-warning {
  background: linear-gradient(135deg, #ffc107, rgb(255, 212.125, 83.5));
  color: #1a1a2e;
}
table tbody tr td .badge.badge-info {
  background: linear-gradient(135deg, #17a2b8, rgb(53.6666666667, 205.7608695652, 229.8333333333));
  color: #ffffff;
}
table tbody tr td .progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.25rem;
  overflow: hidden;
}
table tbody tr td .progress-bar-container .progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-radius: 0.25rem;
  transition: width 0.5s ease;
}
table.table-standings tbody tr.qualification {
  background-color: rgba(40, 167, 69, 0.05);
}
table.table-standings tbody tr.qualification td:first-child {
  position: relative;
}
table.table-standings tbody tr.qualification td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #28a745, rgb(72.268115942, 211.231884058, 104));
}
table.table-standings tbody tr.relegation {
  background-color: rgba(220, 53, 69, 0.05);
}
table.table-standings tbody tr.relegation td:first-child {
  position: relative;
}
table.table-standings tbody tr.relegation td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #dc3545, rgb(231.2974683544, 118.2025316456, 129.0379746835));
}
table.table-standings tbody tr.current-team {
  background-color: rgba(0, 0, 150, 0.1);
  font-weight: 600;
}
table.table-standings tbody tr.current-team td:first-child {
  position: relative;
}
table.table-standings tbody tr.current-team td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
}
table.table-standings tbody tr td.position {
  font-weight: 700;
  text-align: center;
  width: 40px;
}
table.table-standings tbody tr td.team {
  font-weight: 600;
}
table.table-standings tbody tr td.stats {
  text-align: center;
  font-size: 0.875rem;
}
table.table-standings tbody tr td.form .form-indicators {
  display: flex;
  gap: 3px;
}
table.table-standings tbody tr td.form .form-indicators .indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}
table.table-standings tbody tr td.form .form-indicators .indicator.win {
  background: linear-gradient(135deg, #28a745, rgb(72.268115942, 211.231884058, 104));
}
table.table-standings tbody tr td.form .form-indicators .indicator.draw {
  background: linear-gradient(135deg, #ffc107, rgb(255, 212.125, 83.5));
}
table.table-standings tbody tr td.form .form-indicators .indicator.loss {
  background: linear-gradient(135deg, #dc3545, rgb(231.2974683544, 118.2025316456, 129.0379746835));
}
table.table-matches tbody tr td.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
table.table-matches tbody tr td.match-teams .team {
  display: flex;
  align-items: center;
  width: 40%;
}
table.table-matches tbody tr td.match-teams .team.team-home {
  justify-content: flex-end;
  text-align: right;
}
table.table-matches tbody tr td.match-teams .team.team-home .team-name {
  margin-right: 0.5rem;
}
table.table-matches tbody tr td.match-teams .team.team-away {
  justify-content: flex-start;
  text-align: left;
}
table.table-matches tbody tr td.match-teams .team.team-away .team-name {
  margin-left: 0.5rem;
}
table.table-matches tbody tr td.match-teams .team .team-logo {
  width: 30px;
  height: 30px;
}
table.table-matches tbody tr td.match-teams .team .team-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
table.table-matches tbody tr td.match-teams .team .team-name {
  font-weight: 600;
}
table.table-matches tbody tr td.match-teams .match-score {
  width: 20%;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
table.table-matches tbody tr td.match-teams .match-score.live {
  color: #ffc107;
  animation: pulse 2s infinite;
}
table.table-matches tbody tr td.match-date {
  text-align: center;
  font-size: 0.875rem;
  color: #6c757d;
}
table.table-matches tbody tr td.match-actions {
  text-align: right;
}
table.table-player-stats tbody tr td.player {
  font-weight: 600;
}
table.table-player-stats tbody tr td.stat {
  text-align: center;
  font-weight: 600;
}
table.table-player-stats tbody tr td.stat.highlight {
  color: #000096;
  font-weight: 700;
  position: relative;
}
table.table-player-stats tbody tr td.stat.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-radius: 0.25rem;
}

@media (max-width: 768px) {
  .table-responsive {
    display: block;
  }
  .table-responsive thead {
    display: none;
  }
  .table-responsive tbody {
    display: block;
  }
  .table-responsive tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: #fff;
  }
  .table-responsive tbody tr td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .table-responsive tbody tr td::before {
    content: attr(data-label);
    font-weight: 700;
    margin-right: 1rem;
  }
  .table-responsive tbody tr td:last-child {
    border-bottom: none;
  }
  .mobile-table-card {
    display: flex;
  }
  .mobile-table-card thead {
    display: none;
  }
  .mobile-table-card tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-table-card tr td {
    border: none;
  }
}
@keyframes pulse-subtle {
  0% {
    background-color: rgba(255, 193, 7, 0.05);
  }
  50% {
    background-color: rgba(255, 193, 7, 0.1);
  }
  100% {
    background-color: rgba(255, 193, 7, 0.05);
  }
}
.match-invitation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.match-invitation-popup .match-invitation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.match-invitation-popup .match-invitation-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: slideIn 0.3s ease-out;
}
.match-invitation-popup .match-invitation-header {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.match-invitation-popup .match-invitation-header h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.match-invitation-popup .match-invitation-body {
  padding: 30px;
}
.match-invitation-popup .match-invitation-body .opponent-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.match-invitation-popup .match-invitation-body .opponent-info .opponent-logo {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
}
.match-invitation-popup .match-invitation-body .opponent-info .opponent-details {
  flex: 1;
}
.match-invitation-popup .match-invitation-body .opponent-info .opponent-details .opponent-name {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.match-invitation-popup .match-invitation-body .opponent-info .opponent-details .opponent-club {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.match-invitation-popup .match-invitation-body .match-status {
  text-align: center;
}
.match-invitation-popup .match-invitation-body .match-status .spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.match-invitation-popup .match-invitation-body .match-status .status-message {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.match-invitation-popup .match-invitation-body .match-status .status-message.status-accepted {
  color: #00ff88;
}
.match-invitation-popup .match-invitation-body .match-status .status-message.status-refused, .match-invitation-popup .match-invitation-body .match-status .status-message.status-timeout {
  color: #ff4444;
}
.match-invitation-popup .match-invitation-body .match-status .status-timer {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.match-invitation-popup .match-invitation-body .match-status .status-timer #invitation-timer {
  color: #00d4ff;
  font-weight: 600;
}
.match-invitation-popup .match-invitation-footer {
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  justify-content: center;
}
.match-invitation-popup .match-invitation-footer button {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.match-invitation-popup .match-invitation-footer button.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #fff;
}
.match-invitation-popup .match-invitation-footer button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}
.match-invitation-popup .match-invitation-footer button.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.match-invitation-popup .match-invitation-footer button.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .match-invitation-popup .match-invitation-content {
    max-width: 95%;
  }
  .match-invitation-popup .match-invitation-body {
    padding: 20px;
  }
  .match-invitation-popup .match-invitation-body .opponent-info {
    flex-direction: column;
    text-align: center;
  }
}
.hero-section {
  background-color: #000096;
  background-image: linear-gradient(135deg, #000096 0%, #000070 100%);
  color: #ffffff;
  padding: 2.5rem 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 0, 0.1);
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 0, 0.05);
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .hero-section .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.hero-section .hero-content {
  flex: 1;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .hero-section .hero-content {
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
}
.hero-section .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 3rem;
  }
}
.hero-section .hero-content h1 .highlight {
  color: #FFD700;
}
.hero-section .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-section .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}

.auth-tabs {
  background-color: #ebeef5;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}
.auth-tabs .tabs-header {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}
.auth-tabs .tabs-header .tab-button {
  flex: 1;
  padding: 1rem;
  text-align: center;
  background-color: #ebeef5;
  color: #1a1a2e;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-bottom: 2px solid transparent;
}
.auth-tabs .tabs-header .tab-button.active {
  border-bottom: 2px solid #000096;
  color: #000096;
}
.auth-tabs .tabs-header .tab-button:hover:not(.active) {
  background-color: rgb(218, 223.55, 236.5);
}
.auth-tabs .tabs-content {
  padding: 1.5rem;
}
.auth-tabs .tabs-content .tab-pane {
  display: none;
}
.auth-tabs .tabs-content .tab-pane.active {
  display: block;
}

.features-section {
  padding: 2.5rem 0;
  background-color: #ebeef5;
}
.features-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.features-section .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000096;
  margin-bottom: 1rem;
}
.features-section .section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #1a1a2e;
  opacity: 0.8;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features-section .feature-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.features-section .feature-card .feature-icon {
  font-size: 2.5rem;
  color: #000096;
  margin-bottom: 1rem;
}
.features-section .feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.features-section .feature-card p {
  color: #1a1a2e;
  opacity: 0.8;
  flex-grow: 1;
}

.cta-section {
  background-color: #000096;
  color: #ffffff;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-section p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard {
  padding: 1.5rem 0;
}
.dashboard .dashboard-header {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #FFD700;
  overflow: hidden;
}
.dashboard .dashboard-header::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: #FFD700;
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}
.dashboard .dashboard-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 80px;
  height: 80px;
  background: #FFD700;
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
}
.dashboard .dashboard-header h1 {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.dashboard .dashboard-header .dashboard-subtitle {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.dashboard .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .dashboard .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dashboard .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dashboard .dashboard-stats .stat-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 150, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border-left: 3px solid #000096;
  overflow: hidden;
  z-index: 1;
}
.dashboard .dashboard-stats .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 150, 0.05) 0%, rgba(0, 0, 150, 0) 100%);
  z-index: -1;
}
.dashboard .dashboard-stats .stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #000096, #FFD700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dashboard .dashboard-stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 150, 0.15);
}
.dashboard .dashboard-stats .stat-card:hover::after {
  transform: scaleX(1);
}
.dashboard .dashboard-stats .stat-card:hover .stat-icon {
  color: #FFD700;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.dashboard .dashboard-stats .stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000096;
  transition: all 0.3s ease;
}
.dashboard .dashboard-stats .stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #000096;
  position: relative;
  display: inline-block;
}
.dashboard .dashboard-stats .stat-card .stat-value::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #FFD700;
  transform: translateX(-50%);
}
.dashboard .dashboard-stats .stat-card .stat-label {
  color: #6c757d;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}
.dashboard .dashboard-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .dashboard .dashboard-content {
    grid-template-columns: 2fr 1fr;
  }
}
.dashboard .dashboard-content .main-content .card {
  margin-bottom: 1.5rem;
}
.dashboard .dashboard-content .sidebar .card {
  margin-bottom: 1.5rem;
}
.dashboard .competitions-list .competition-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.dashboard .competitions-list .competition-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #000096;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: -1;
}
.dashboard .competitions-list .competition-item:last-child {
  border-bottom: none;
}
.dashboard .competitions-list .competition-item:hover {
  background-color: rgba(0, 0, 150, 0.03);
  padding-left: 1.5rem;
}
.dashboard .competitions-list .competition-item:hover::before {
  transform: scaleY(1);
}
.dashboard .competitions-list .competition-item:hover .competition-icon {
  color: #FFD700;
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.dashboard .competitions-list .competition-item:hover .competition-name {
  color: #000096;
}
.dashboard .competitions-list .competition-item .competition-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #000096;
  transition: all 0.3s ease;
  position: relative;
}
.dashboard .competitions-list .competition-item .competition-info {
  flex: 1;
}
.dashboard .competitions-list .competition-item .competition-info .competition-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.dashboard .competitions-list .competition-item .competition-info .competition-meta {
  display: flex;
  font-size: 0.875rem;
  color: #6c757d;
}
.dashboard .competitions-list .competition-item .competition-info .competition-meta span {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.dashboard .competitions-list .competition-item .competition-info .competition-meta span .material-icons {
  font-size: 1rem;
  margin-right: 4px;
  color: rgba(0, 0, 150, 0.6);
}
.dashboard .competitions-list .competition-item .competition-info .competition-meta span:last-child {
  margin-right: 0;
}
.dashboard .competitions-list .competition-item .competition-status {
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.dashboard .competitions-list .competition-item .competition-status.status-active {
  background: linear-gradient(135deg, #28a745, rgb(30.1449275362, 125.8550724638, 52));
  color: white;
}
.dashboard .competitions-list .competition-item .competition-status.status-pending {
  background: linear-gradient(135deg, #ffc107, rgb(211, 158.25, 0));
  color: white;
}
.dashboard .competitions-list .competition-item .competition-status.status-completed {
  background: linear-gradient(135deg, #17a2b8, rgb(17.3333333333, 122.0869565217, 138.6666666667));
  color: white;
}
.dashboard .competitions-list .competition-item .competition-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.dashboard .teams-overview .team-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dashboard .teams-overview .team-card:last-child {
  border-bottom: none;
}
.dashboard .teams-overview .team-card .team-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.dashboard .teams-overview .team-card .team-logo img {
  max-width: 70%;
  max-height: 70%;
}
.dashboard .teams-overview .team-card .team-info {
  flex: 1;
}
.dashboard .teams-overview .team-card .team-info .team-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.dashboard .teams-overview .team-card .team-info .team-meta {
  font-size: 0.875rem;
  color: #6c757d;
}
.dashboard .teams-overview .team-card .team-actions a {
  color: #000096;
  margin-left: 0.5rem;
}
.dashboard .teams-overview .team-card .team-actions a:hover {
  color: rgb(0, 0, 73.5);
}
.dashboard .mercato-section .mercato-status {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(0, 0, 150, 0.05);
  border-radius: 0.5rem;
}
.dashboard .mercato-section .mercato-status .status-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #000096;
}
.dashboard .mercato-section .mercato-status .status-info {
  flex: 1;
}
.dashboard .mercato-section .mercato-status .status-info h3 {
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.dashboard .mercato-section .mercato-status .status-info p {
  margin: 0;
  color: #6c757d;
}
.dashboard .mercato-section .mercato-status .status-action .btn {
  white-space: nowrap;
}

.competition-dashboard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  padding: 1.5rem 0;
  margin-bottom: 0;
}
.competition-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}
.competition-dashboard .absolute.rounded-full {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.competition-dashboard h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 4rem;
}
.competition-dashboard h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
}
.competition-dashboard .grid .bg-white {
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
}
.competition-dashboard .grid .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.competition-dashboard .grid .bg-white .bg-primary-color {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
  position: relative;
  overflow: hidden;
}
.competition-dashboard .grid .bg-white .bg-primary-color::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -18px;
  width: 120px;
  height: 40px;
  background: #FFD700;
  opacity: 0.2;
  transform: rotate(40deg);
}
.competition-dashboard .grid .bg-white .bg-primary-color h5 {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 1rem;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between:last-child {
  border-bottom: none;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .text-gray-600 {
  font-size: 0.9rem;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium {
  color: #000096;
  font-weight: 600;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium.rounded-full {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 150, 0.1);
  color: #000096;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium.rounded-full.bg-green-100 {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium.rounded-full.bg-yellow-100 {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: white;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium.rounded-full.bg-red-100 {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
}
.competition-dashboard .grid .bg-white .p-4 .flex.justify-between .font-medium.rounded-full.bg-gray-100 {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}
.competition-dashboard .grid .bg-white table {
  width: 100%;
}
.competition-dashboard .grid .bg-white table thead {
  background: linear-gradient(90deg, #f3f4f6, #e5e7eb);
}
.competition-dashboard .grid .bg-white table thead th {
  font-weight: 600;
  color: #000096;
  font-size: 0.75rem;
}
.competition-dashboard .grid .bg-white table tbody tr {
  transition: all 0.2s ease;
}
.competition-dashboard .grid .bg-white table tbody tr:hover {
  background-color: rgba(0, 0, 150, 0.05) !important;
}
.competition-dashboard .grid .bg-white table tbody tr.bg-blue-100 {
  background-color: rgba(0, 0, 150, 0.1);
}
.competition-dashboard .grid .bg-white table tbody tr td {
  font-size: 0.85rem;
}
.competition-dashboard .grid .bg-white table tbody tr td.text-primary-color {
  color: #000096;
}
.competition-dashboard .grid .bg-white .flex.border-b button {
  transition: all 0.3s ease;
  position: relative;
}
.competition-dashboard .grid .bg-white .flex.border-b button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000096;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.competition-dashboard .grid .bg-white .flex.border-b button:hover {
  color: #000096;
}
.competition-dashboard .grid .bg-white .flex.border-b button.border-b-2::after {
  transform: scaleX(1);
}
.competition-dashboard .grid .bg-white ul.divide-y li {
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.competition-dashboard .grid .bg-white ul.divide-y li:hover {
  background-color: rgba(0, 0, 150, 0.05);
}
.competition-dashboard .grid .bg-white ul.divide-y li:hover .bg-primary-color, .competition-dashboard .grid .bg-white ul.divide-y li:hover .bg-secondary-gold {
  transform: scale(1.1);
}
.competition-dashboard .grid .bg-white ul.divide-y li .bg-primary-color, .competition-dashboard .grid .bg-white ul.divide-y li .bg-secondary-gold {
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.competition-dashboard .grid .bg-white ul.divide-y li .bg-secondary-gold {
  background: #FFD700;
}

.matches-lines .match-line {
  border-top: 3px solid #FFD700;
}
.matches-lines .match-line:nth-child(2n+1) > .flex > .flex:last-child {
  background: #000096;
}
.matches-lines .match-line:nth-child(2n+1) > .flex > .flex:first-child {
  background: #FFD700;
  color: #000096;
}
.matches-lines .match-line > .flex > .flex {
  background: #000096;
}
.matches-lines .match-line > .flex > .flex:first-child {
  width: 50%;
}
.matches-lines .match-line > .flex > .flex:last-child {
  background: #FFD700;
  width: 50%;
  color: #000096;
}

.competition-menu {
  position: relative;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #FFD700 #000096;
}
.competition-menu::-webkit-scrollbar {
  height: 4px;
}
.competition-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 150, 0.1);
}
.competition-menu::-webkit-scrollbar-thumb {
  background-color: #FFD700;
  border-radius: 20px;
}
.competition-menu nav {
  display: flex;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0 1rem;
}
.competition-menu nav a, .competition-menu nav span.master-box {
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}
.competition-menu nav a:hover, .competition-menu nav span.master-box:hover {
  transform: translateY(-2px);
}
.competition-menu nav a.border-primary-color, .competition-menu nav span.master-box.border-primary-color {
  position: relative;
}
.competition-menu nav a.border-primary-color:after, .competition-menu nav span.master-box.border-primary-color:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
.competition-menu .admin-bar {
  position: relative;
  width: 100%;
  left: 0;
  bottom: -24px;
  z-index: 100;
  background: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.competition-menu .admin-bar a, .competition-menu .admin-bar button {
  display: flex;
  gap: 2px;
  border-radius: 0;
  padding: 0.25rem 1rem;
  font-size: 13px;
  align-items: center;
  transition: all 0.2s ease;
}
.competition-menu .admin-bar a:hover, .competition-menu .admin-bar button:hover {
  transform: translateY(-2px);
}
.competition-menu .admin-bar a.btn-primary:hover, .competition-menu .admin-bar button.btn-primary:hover {
  color: #fff;
  font-size: 13px;
}
.competition-menu .admin-bar a .material-icons, .competition-menu .admin-bar button .material-icons {
  font-size: 12px;
}
@media (max-width: 768px) {
  .competition-menu .container {
    padding: 0.75rem 0.75rem;
  }
  .competition-menu nav {
    padding: 0;
    gap: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .competition-menu nav a, .competition-menu nav span.master-box {
    padding: 0.75rem 0.3rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: 60px;
  }
  .competition-menu nav a .material-icons, .competition-menu nav span.master-box .material-icons {
    font-size: 18px;
    margin: 0 auto 4px;
  }
  .competition-menu nav a span:not(.material-icons), .competition-menu nav span.master-box span:not(.material-icons) {
    font-size: 10px;
    display: block;
    text-align: center;
    line-height: 1;
  }
  .competition-menu nav a.border-primary-color:after, .competition-menu nav span.master-box.border-primary-color:after {
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }
  .competition-menu nav a.master-box, .competition-menu nav span.master-box.master-box {
    padding: 0.75rem 0.5rem;
  }
  .competition-menu nav a.master-box .content, .competition-menu nav span.master-box.master-box .content {
    font-size: 10px;
    position: relative;
    top: -2px;
  }
  .competition-menu nav a.master-box .icon, .competition-menu nav span.master-box.master-box .icon {
    width: 16px;
    height: 16px;
    margin: 0 auto;
  }
  .competition-menu nav a[href*=mercato] svg, .competition-menu nav a[href*=mercato] img, .competition-menu nav a[href*=coupes] svg, .competition-menu nav a[href*=coupes] img, .competition-menu nav a[href*=parametres] svg, .competition-menu nav a[href*=parametres] img, .competition-menu nav span.master-box[href*=mercato] svg, .competition-menu nav span.master-box[href*=mercato] img, .competition-menu nav span.master-box[href*=coupes] svg, .competition-menu nav span.master-box[href*=coupes] img, .competition-menu nav span.master-box[href*=parametres] svg, .competition-menu nav span.master-box[href*=parametres] img {
    width: 20px;
    height: 20px;
    margin: 0 auto 4px;
  }
  .competition-menu .admin-bar {
    padding: 0.25rem;
    bottom: -20px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .competition-menu .admin-bar a, .competition-menu .admin-bar button {
    padding: 0.25rem 0.5rem;
    font-size: 11px;
    white-space: nowrap;
  }
  .competition-menu .admin-bar a .material-icons, .competition-menu .admin-bar button .material-icons {
    font-size: 10px;
  }
}

[x-cloak] {
  display: none !important;
}

.bids-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background-color: #161e4a;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.bids-sidebar.open {
  right: 0;
}
.bids-sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #000033, #000096, #1b379c);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.bids-sidebar .sidebar-header h3 {
  color: #FFD700;
  margin: 0;
  font-size: 1.25rem;
}
.bids-sidebar .sidebar-header .close-sidebar {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}
.bids-sidebar .sidebar-header .close-sidebar:hover {
  color: #FFD700;
}
.bids-sidebar .sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}
.bids-sidebar .sidebar-content .loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
  color: #a0aec0;
}
.bids-sidebar .sidebar-content .loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  border-top-color: #FFD700;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}
.bids-sidebar .sidebar-content .loading-container p {
  font-size: 0.9rem;
}
.bids-sidebar .sidebar-content .empty-bids {
  color: #a0aec0;
  text-align: center;
  padding: 2.5rem 0;
}
.bids-sidebar .sidebar-content .position-group {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  padding-top: 4px;
}
.bids-sidebar .sidebar-content .position-group.position-gk {
  background-color: rgba(255, 193, 7, 0.15);
  border-left: 3px solid #FFC107;
}
.bids-sidebar .sidebar-content .position-group.position-cb {
  background-color: rgba(0, 188, 212, 0.15);
  border-left: 3px solid #00BCD4;
}
.bids-sidebar .sidebar-content .position-group.position-lb {
  background-color: rgba(51, 102, 204, 0.15);
  border-left: 3px solid #3366cc;
}
.bids-sidebar .sidebar-content .position-group.position-rb {
  background-color: rgba(51, 102, 204, 0.15);
  border-left: 3px solid #3366cc;
}
.bids-sidebar .sidebar-content .position-group.position-dmf {
  background-color: rgba(76, 175, 80, 0.15);
  border-left: 3px solid #4CAF50;
}
.bids-sidebar .sidebar-content .position-group.position-cmf {
  background-color: rgba(139, 195, 74, 0.15);
  border-left: 3px solid #8BC34A;
}
.bids-sidebar .sidebar-content .position-group.position-amf {
  background-color: rgba(139, 195, 74, 0.15);
  border-left: 3px solid #8BC34A;
}
.bids-sidebar .sidebar-content .position-group.position-lmf {
  background-color: rgba(51, 204, 153, 0.15);
  border-left: 3px solid #33cc99;
}
.bids-sidebar .sidebar-content .position-group.position-rmf {
  background-color: rgba(51, 204, 153, 0.15);
  border-left: 3px solid #33cc99;
}
.bids-sidebar .sidebar-content .position-group.position-lwf {
  background-color: rgba(156, 39, 176, 0.15);
  border-left: 3px solid #9C27B0;
}
.bids-sidebar .sidebar-content .position-group.position-rwf {
  background-color: rgba(156, 39, 176, 0.15);
  border-left: 3px solid #9C27B0;
}
.bids-sidebar .sidebar-content .position-group.position-ss {
  background-color: rgba(233, 30, 99, 0.15);
  border-left: 3px solid #E91E63;
}
.bids-sidebar .sidebar-content .position-group.position-cf {
  background-color: rgba(244, 67, 54, 0.15);
  border-left: 3px solid #F44336;
}
.bids-sidebar .sidebar-content .bids-list {
  padding: 0 0.25rem;
}
.bids-sidebar .sidebar-content .bid-card {
  background-color: rgba(45, 55, 72, 0.7);
  border-radius: 8px;
  margin-bottom: 0.25rem;
  overflow: hidden;
}
.bids-sidebar .sidebar-content .bid-card.clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bids-sidebar .sidebar-content .bid-card.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: rgba(55, 65, 82, 0.8);
}
.bids-sidebar .sidebar-content .bid-card.clickable:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header {
  display: flex;
  padding: 0.25rem;
  align-items: flex-start;
  background: rgba(0, 0, 50, 0.3);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-photo-container {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.25rem;
  border: 1px solid #FFD700;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-photo-container .player-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info {
  flex: 1;
  min-width: 0;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25rem;
  flex: 0.5;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  font-size: 1rem;
  width: 30px;
  height: 30px;
  margin-left: 0;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-name-row .player-rating.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge {
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 4px;
  border: 1px solid #FFD700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #000096, rgb(0, 0, 73.5));
  flex-shrink: 0;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=GK], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=GB] {
  background: linear-gradient(135deg, #ff9900, rgb(178.5, 107.1, 0));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=CB], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=DC] {
  background: linear-gradient(135deg, #00BCD4, rgb(0, 120.1603773585, 135.5));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=LB], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=DG] {
  background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=RB], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=DD] {
  background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=DMF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=MDF] {
  background: linear-gradient(135deg, #339933, rgb(31.875, 95.625, 31.875));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=CMF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=MR] {
  background: linear-gradient(135deg, #66cc66, rgb(57.375, 172.125, 57.375));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=AMF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=MO] {
  background: linear-gradient(135deg, #99cc33, rgb(107.1, 142.8, 35.7));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=LMF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=MG] {
  background: linear-gradient(135deg, #66cc99, rgb(57.375, 172.125, 114.75));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=RMF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=MD] {
  background: linear-gradient(135deg, #33cc99, rgb(35.7, 142.8, 107.1));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=LWF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=AiG] {
  background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=RWF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=AiD] {
  background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=SS], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=SA] {
  background: linear-gradient(135deg, #cc3366, rgb(142.8, 35.7, 71.4));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=CF], .bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .position-badge[data-position=AC] {
  background: linear-gradient(135deg, #cc0000, rgb(127.5, 0, 0));
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .player-style {
  font-size: 0.7rem;
  color: #a0aec0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .player-age {
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
  flex-direction: column;
  gap: 0;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .player-age span {
  display: flex;
  line-height: 10px;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .player-age span.label {
  font-size: 8px;
  line-height: 8px;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-details-row .player-age.blue {
  background: #000096;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-flags {
  display: flex;
  gap: 8px;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-flags .country-flag,
.bids-sidebar .sidebar-content .bid-card .bid-card-header .player-info .player-flags .club-flag {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-body {
  padding: 0.25rem 0.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
.bids-sidebar .sidebar-content .bid-card .bid-card-body .bid-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-body .bid-info .bid-amount {
  font-size: 0.8rem;
  color: #FFD700;
  font-weight: 600;
}
.bids-sidebar .sidebar-content .bid-card .bid-card-body .bid-info .bid-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
}
.bids-sidebar .sidebar-content .bid-card.status-pending .bid-status {
  background-color: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}
.bids-sidebar .sidebar-content .bid-card.status-won .bid-status {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}
.bids-sidebar .sidebar-content .bid-card.status-process .bid-status {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.open-sidebar-btn {
  background-color: #000096;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.open-sidebar-btn:hover {
  background-color: #0000c9;
  transform: translateY(-2px);
}
.open-sidebar-btn.hidden {
  display: none;
}
.open-sidebar-btn i {
  font-size: 1.2rem;
}
.open-sidebar-btn span {
  font-weight: 700;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .open-sidebar-btn {
    position: fixed;
    top: 225px;
    right: 30px;
    width: 40px;
    overflow: hidden;
    height: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  .open-sidebar-btn span {
    display: none;
  }
  .open-sidebar-btn:hover {
    width: 60px;
    height: 60px;
    right: 20px;
  }
  .open-sidebar-btn:hover span {
    display: flex;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .open-sidebar-btn {
    position: sticky;
    margin: 10px auto;
    top: 195px;
    padding: 5px 12px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .open-sidebar-btn span {
    font-size: 0.75rem;
  }
  .open-sidebar-btn i {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .bids-sidebar {
    width: 100%;
    right: -100%;
    height: calc(100vh - 100px);
    top: 90px;
  }
}
body.players-page {
  background-color: #f0f4ff;
}

.players-database .page-title {
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.5);
  border-bottom: 3px solid #FFD700;
  padding-bottom: 0.5rem;
  position: relative;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  width: calc(100% + 5rem);
  background-color: #000096;
  padding: 1rem calc(1.5rem + 2.5rem);
  margin-top: -1rem;
}
.players-database .page-title:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #000096;
}
.players-database .results-cards {
  display: none;
  perspective: 1000px;
}
@media (max-width: 768px) {
  .players-database .results-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .players-database .results-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.players-database .results-cards .player-card {
  background-color: #161e4a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.players-database .results-cards .player-card:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FFD700, transparent 40%, transparent 60%, #FFD700);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.7;
  animation: border-glow 3s infinite alternate;
}
.players-database .results-cards .player-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 150, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.players-database .results-cards .player-card:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.5);
}
.players-database .results-cards .player-card:hover:after {
  opacity: 1;
}
.players-database .results-cards .player-card .card-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #000033, #000096, #1b379c);
  position: relative;
  overflow: hidden;
}
.players-database .results-cards .player-card .card-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
  opacity: 0.5;
  animation: pulse 4s infinite;
}
.players-database .results-cards .player-card .card-header .player-photo {
  width: 70px;
  height: 70px;
  margin-right: 1rem;
  border: 2px solid #FFD700;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  position: relative;
  z-index: 2;
}
.players-database .results-cards .player-card .card-header .player-photo:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid rgba(255, 215, 0, 0.8);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  animation: photo-glow 2s infinite alternate;
  pointer-events: none;
}
.players-database .results-cards .player-card .card-header .player-info {
  flex: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.players-database .results-cards .player-card .card-header .player-info .player-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.players-database .results-cards .player-card .card-header .player-info .player-name:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FFD700, transparent);
}
.players-database .results-cards .player-card .card-header .player-info .position-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 3px 8px;
  background-color: rgba(255, 215, 0, 0.9);
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.players-database .results-cards .player-card .card-header .player-rating {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}
.players-database .results-cards .player-card .card-header .player-rating:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.players-database .results-cards .player-card .card-header .player-rating.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.players-database .results-cards .player-card .card-header .player-rating.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.players-database .results-cards .player-card .card-header .player-rating.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.players-database .results-cards .player-card .card-header .player-rating.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.players-database .results-cards .player-card .card-header .player-rating.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.players-database .results-cards .player-card .card-header .player-rating.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.players-database .results-cards .player-card .card-body {
  padding: 1rem;
  background: linear-gradient(to bottom, #222, #161e4a);
  position: relative;
}
.players-database .results-cards .player-card .card-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000096' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.players-database .results-cards .player-card .card-body .player-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 30, 0.3));
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}
.players-database .results-cards .player-card .card-body .player-info-row:hover {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 40, 0.4));
  transform: translateY(-1px);
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.team-logo-wrapper {
  justify-content: flex-start;
  padding-left: 2px;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.team-logo-wrapper .team-logo {
  max-width: 28px;
  max-height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.flag-wrapper .flag {
  display: flex;
  width: 30px;
  height: 24px;
  border-radius: 20%;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.flag-wrapper .flag .country-flag {
  width: 32px;
  height: 38px;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: -7px;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.age-wrapper .player-age {
  font-size: 13px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.price-wrapper {
  justify-content: flex-end;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.price-wrapper .player-price {
  font-size: 13px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.price-wrapper .player-price:before {
  content: "💰";
  font-size: 12px;
  margin-right: 3px;
  font-size: 1rem;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.stats-wrapper {
  justify-content: flex-end;
  padding-right: 2px;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.stats-wrapper .card-stats-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #000096;
  transition: all 0.2s ease;
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.stats-wrapper .card-stats-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}
.players-database .results-cards .player-card .card-body .player-info-row .info-item.stats-wrapper .card-stats-btn svg {
  width: 14px;
  height: 14px;
}
.players-database .results-cards .player-card .card-body .card-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  position: relative;
  gap: 0.25rem;
  z-index: 1;
}
.players-database .results-cards .player-card .card-body .card-actions .bid-button {
  width: 100%;
  padding: 1rem;
  margin-top: 0.25rem;
  background: linear-gradient(to right, #000096, #1b379c);
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.players-database .results-cards .player-card .card-body .card-actions .bid-button:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.5) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
}
.players-database .results-cards .player-card .card-body .card-actions .bid-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}
.players-database .results-cards .player-card .card-body .card-actions .bid-button:hover:before {
  transform: scale(1);
  animation: ripple 1s ease;
}
.players-database .results-cards .player-card .card-body .card-actions .bid-button:active {
  transform: translateY(1px);
}
.players-database .results-cards .player-card .card-body .card-actions .existing-bid, .players-database .results-cards .player-card .card-body .card-actions .owner-info {
  width: 100%;
  text-align: center;
  padding: 1rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.players-database .results-cards .player-card .card-body .card-actions .existing-bid {
  background: rgba(255, 99, 71, 0.2);
  color: #FF6347;
  border: 1px solid rgba(255, 99, 71, 0.3);
}
.players-database .results-cards .player-card .card-body .card-actions .existing-bid:before {
  content: "✔️";
  margin-right: 5px;
}
.players-database .results-cards .player-card .card-body .card-actions .owner-info {
  background: rgba(70, 130, 180, 0.2);
  color: #4682B4;
  border: 1px solid rgba(70, 130, 180, 0.3);
}
.players-database .results-cards .player-card .card-body .card-actions .owner-info:before {
  content: "🔑";
  margin-right: 5px;
}
@keyframes border-glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes photo-glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
  }
}
@keyframes rating-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.players-database .mercato-banner {
  border-left: 5px solid #FFD700;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: hidden;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  width: calc(100% + 5rem);
}
@media (max-width: 768px) {
  .players-database .mercato-banner {
    top: 25px;
    border: none;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .players-database .mercato-banner .grid {
    gap: 0.25rem !important;
  }
}
.players-database .mercato-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1));
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.players-database .mercato-banner .mercato-title {
  font-family: "Russo One", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-transform: uppercase;
}
.players-database .mercato-banner .mercato-info {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}
.players-database .mercato-banner .mercato-info strong {
  color: #FFD700;
}
.players-database .mercato-banner .mercato-countdown {
  font-weight: 700;
  color: #FFD700;
}
.players-database .search-tabs {
  display: flex;
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 576px) {
  .players-database .search-tabs {
    flex-direction: column;
    width: 100%;
  }
}
.players-database .search-tabs .tab-btn {
  padding: 1rem 2.5rem;
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  font-family: "Russo One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-right: 1px;
  background-color: #333;
  color: white;
  position: relative;
  border: none;
}
@media (max-width: 768px) {
  .players-database .search-tabs .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .players-database .search-tabs .tab-btn {
    width: 100%;
    text-align: center;
    border-radius: 0;
    margin-right: 0;
    margin-bottom: 1px;
  }
}
.players-database .search-tabs .tab-btn:hover {
  background-color: #000096;
}
.players-database .search-tabs .tab-btn.active {
  background: #1b379c;
  color: #ffffff;
}
.players-database .search-tabs .tab-btn.active:after {
  display: none;
}
.players-database .tab-content {
  display: none;
}
.players-database .tab-content.active {
  display: block;
}
.players-database .form-control, .players-database input[type=text],
.players-database input[type=email],
.players-database input[type=password],
.players-database input[type=number],
.players-database input[type=date],
.players-database input[type=tel],
.players-database textarea,
.players-database select {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.02);
  box-shadow: none;
}
.players-database .form-control:focus, .players-database input[type=text]:focus,
.players-database input[type=email]:focus,
.players-database input[type=password]:focus,
.players-database input[type=number]:focus,
.players-database input[type=date]:focus,
.players-database input[type=tel]:focus,
.players-database textarea:focus,
.players-database select:focus {
  border-color: #FFD700;
  box-shadow: none;
  outline: none;
  background-color: white;
  transform: none;
}
.players-database .search-box {
  background-color: white;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: none;
  position: relative;
  margin-top: -1px;
}
.players-database .search-box.sb-name .form-row {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}
.players-database .search-box.sb-name .form-row .form-group {
  flex: 1;
  padding: 0;
  margin-bottom: 0;
}
.players-database .search-box.sb-name .form-row .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.players-database .search-box.sb-attr .search-submit {
  justify-content: center;
  margin-top: 20px;
}
.players-database .search-box.sb-attr .search-submit .search-button {
  border-radius: 5px;
  width: auto;
  padding: 1rem 2rem 1rem 1.6rem;
  background: #000096;
  color: #FFD700;
  border-color: 2px solid #FFD700;
}
.players-database .search-box.sb-attr .search-submit .search-button:hover {
  background: rgb(0, 0, 73.5);
  color: #FFD700;
}
.players-database .search-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  border-radius: 0.5rem;
  pointer-events: none;
}
.players-database .search-box .search-title {
  font-family: "Russo One", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000096;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 2px solid rgba(0, 0, 150, 0.1);
  padding-bottom: 0.5rem;
}
.players-database .search-box .search-form-section {
  background-color: white;
  border-radius: 0;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: none;
}
.players-database .search-box .search-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}
.players-database .search-box .search-submit .search-button {
  background: none;
  color: #000096;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  box-shadow: none;
  overflow: visible;
}
.players-database .search-box .search-submit .search-button svg {
  width: 20px;
  height: 20px;
}
.players-database .search-box .search-submit .search-button:hover {
  background: rgba(0, 0, 150, 0.1);
  color: #000096;
}
.players-database .search-box .search-submit .search-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.players-database .search-box .search-submit .search-button:disabled:after {
  display: none;
}
.players-database .positions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .players-database .positions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .players-database .positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.players-database .positions-grid .position-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  text-align: left;
}
.players-database .positions-grid .position-item .position-checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 150, 0.3);
  border-radius: 3px;
  margin-right: 0.5rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.players-database .positions-grid .position-item .position-checkbox:checked {
  background-color: #000096;
  border-color: #000096;
}
.players-database .positions-grid .position-item .position-checkbox:checked:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.players-database .positions-grid .position-item .position-checkbox:hover {
  border-color: #000096;
}
.players-database .positions-grid .position-item .position-label {
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  font-weight: 500;
}
.players-database .positions-grid .position-item .position-label:hover {
  color: #000096;
}
.players-database .positions-grid .position-item:hover {
  background-color: rgba(0, 0, 150, 0.1);
  border-color: rgba(0, 0, 150, 0.4);
}
.players-database .slider-container {
  height: 60px;
  margin: 1.5rem 0 1.5rem 0;
  position: relative;
}
@media (max-width: 992px) {
  .players-database .slider-container {
    width: 100% !important;
    margin: 1rem 0;
  }
}
.players-database .slider-container .slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.players-database .slider-container .slider-label span:last-child {
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 400;
}
.players-database .slider-container .slider-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.players-database .noUi-target {
  border: 1px solid rgba(0, 0, 150, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  background-color: rgba(235, 238, 245, 0.8);
}
.players-database .noUi-connect {
  background: linear-gradient(135deg, #000096 0%, #00006e 100%);
}
.players-database .noUi-horizontal {
  height: 10px;
  border: none;
  background: rgba(0, 0, 150, 0.1);
  margin: 0.5rem 0;
}
.players-database .noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: 2px solid #000096;
  top: -8px;
  right: -12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.players-database .noUi-horizontal .noUi-handle:hover {
  transform: scale(1.15);
  background: rgb(229.5, 193.5, 0);
}
.players-database .noUi-horizontal .noUi-handle:before, .players-database .noUi-horizontal .noUi-handle:after {
  display: none;
}
.players-database .search-results {
  padding: 2.5rem 0;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  width: calc(100% + 5rem);
  background: linear-gradient(135deg, #000033 0%, #000096 100%);
  position: relative;
  overflow: hidden;
}
.players-database .search-results:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.players-database .search-results:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .players-database .search-results {
    padding: 1rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }
}
.players-database .search-results .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.players-database .search-results .results-loading {
  text-align: center;
  padding: 2.5rem 0;
}
.players-database .search-results .results-loading .loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 215, 0, 0.1);
  border-radius: 0;
  border-top-color: #FFD700;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.players-database .search-results .mobile-sort-options {
  margin-bottom: 1rem;
}
.players-database .search-results .mobile-sort-options .sort-container {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 30, 0.3));
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.players-database .search-results .mobile-sort-options .sort-container .sort-label {
  color: white;
  font-weight: 700;
  margin-right: 0.5rem;
  white-space: nowrap;
}
.players-database .search-results .mobile-sort-options .sort-container .sort-select {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}
.players-database .search-results .mobile-sort-options .sort-container .sort-select:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}
.players-database .search-results .mobile-sort-options .sort-container .sort-select option {
  background-color: #000096;
  color: white;
}
.players-database .search-results .results-empty {
  text-align: center;
  padding: 2.5rem 0;
  color: #6c757d;
  border-left: 3px solid #FFD700;
  background-color: white;
}
.players-database .search-results .results-empty .empty-icon {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 1rem;
}
.players-database .search-results .results-empty .empty-message {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.players-database .search-results .results-empty .empty-suggestion {
  font-size: 0.875rem;
}
.players-database .results-table-container {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .players-database .results-table-container {
    display: none;
  }
}
.players-database .results-table {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.3);
  overflow: hidden;
  border: none;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.players-database .results-table .price-cell, .players-database .results-table .age-cell {
  text-align: center;
}
.players-database .results-table .player-price-desktop {
  display: inline-block;
  font-weight: 700;
  color: #FFD700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  padding: 6px 10px;
  border-radius: 4px;
  background: #000096;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.players-database .results-table .player-price-desktop:before {
  content: "💰";
  margin-right: 5px;
  font-size: 14px;
}
.players-database .results-table .player-age-desktop {
  display: inline-block;
  font-weight: 700;
  color: #000096;
  font-size: 16px;
  position: relative;
  min-width: 30px;
  text-align: center;
  background-color: rgba(0, 0, 150, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
}
.players-database .results-table:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FFD700, transparent 40%, transparent 60%, #FFD700);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.7;
  animation: border-glow 3s infinite alternate;
}
@media (max-width: 992px) and (min-width: 769px) {
  .players-database .results-table {
    overflow-x: auto;
    display: block;
  }
}
.players-database .results-table .results-header {
  background: linear-gradient(135deg, #000033, #000096, #1b379c);
  color: #ffffff;
  border-bottom: 3px solid #FFD700;
  position: relative;
  overflow: hidden;
}
.players-database .results-table .results-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
  opacity: 0.5;
  animation: pulse 4s infinite;
}
.players-database .results-table .results-header th {
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-family: "Russo One", sans-serif;
  font-size: 0.875rem;
  position: relative;
}
@media (max-width: 768px) {
  .players-database .results-table .results-header th {
    padding: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.players-database .results-table .results-header th:after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.players-database .results-table .results-header th:last-child:after {
  display: none;
}
.players-database .results-table .results-body tr {
  border-bottom: 1px solid rgba(0, 0, 150, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.players-database .results-table .results-body tr:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.players-database .results-table .results-body tr:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.players-database .results-table .results-body tr:hover:after {
  animation: shine 1.5s ease;
}
.players-database .results-table .results-body tr:last-child {
  border-bottom: none;
}
.players-database .results-table .results-body td {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}
.players-database .results-table .results-body td.actions-cell {
  position: relative;
  padding: 0;
}
@media (max-width: 768px) {
  .players-database .results-table .results-body td {
    padding: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.players-database .results-table .results-body td.player-name {
  font-weight: 600;
  color: #000096;
}
.players-database .results-table .results-body td.player-position {
  font-weight: 500;
  color: #1a1a2e;
}
.players-database .results-table .results-body td.player-rating {
  font-weight: 700;
  color: #000096;
  position: relative;
}
.players-database .results-table .results-body td.player-rating .rating-value {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  display: inline-flex;
  font-size: 1.1rem;
  width: 35px;
  height: 35px;
}
.players-database .results-table .results-body td.player-rating .rating-value:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.players-database .results-table .results-body td.player-rating .rating-value.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.players-database .results-table .results-body td.player-rating .rating-value.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.players-database .results-table .results-body td.player-rating .rating-value.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.players-database .results-table .results-body td.player-rating .rating-value.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.players-database .results-table .results-body td.player-rating .rating-value.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.players-database .results-table .results-body td.player-rating .rating-value.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.players-database .results-table .results-body td.player-value {
  font-weight: 600;
  color: #28a745;
}
.players-database .results-table .results-body td .bid-button {
  background: linear-gradient(135deg, #FFD700, #ccac00);
  color: #333;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 69px;
}
.players-database .results-table .results-body td .bid-button i.material-icons {
  font-size: 18px;
}
.players-database .results-table .results-body td .bid-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.players-database .results-table .results-body td .bid-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.players-database .results-table .results-body td .bid-button:hover:before {
  left: 100%;
  transition: 0.5s;
}
.players-database .results-table .results-body td .bid-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #ced4da;
  color: #495057;
  transform: none;
}
.players-database .pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0;
}
.players-database .pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background-color: #ebeef5;
  color: #000096;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 150, 0.1);
}
.players-database .pagination .page-item .page-link:hover {
  background-color: rgba(0, 0, 150, 0.1);
  border-color: rgba(0, 0, 150, 0.2);
}
.players-database .pagination .page-item.active .page-link {
  background-color: #000096;
  color: #ffffff;
  border-color: #FFD700;
  border-width: 2px;
}
.players-database .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e9ecef;
  color: #6c757d;
  border-color: #dee2e6;
}
.players-database .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
@media (max-width: 768px) {
  .players-database .modal-container {
    top: 30px;
  }
}
.players-database .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.players-database .modal {
  background-color: #161e4a;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
  width: 90%;
  max-width: 500px;
  z-index: 1051;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
}
.players-database .modal:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FFD700, transparent 40%, transparent 60%, #FFD700);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.7;
  animation: border-glow 3s infinite alternate;
}
@media (max-width: 576px) {
  .players-database .modal {
    width: 95%;
    max-width: none;
  }
}
.players-database .modal .modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #000033, #000096, #1b379c);
  position: relative;
  overflow: hidden;
}
.players-database .modal .modal-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
  opacity: 0.5;
  animation: pulse 4s infinite;
}
.players-database .modal .modal-header h3 {
  margin: 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.players-database .modal .modal-header h3 i.material-icons {
  font-size: 24px;
}
.players-database .modal .modal-header .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 100;
}
.players-database .modal .modal-header .close-btn:hover {
  color: #FFD700;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.players-database .modal .modal-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
  background: linear-gradient(to bottom, #161e4a, #0a0d20);
}
.players-database .modal .modal-body div .form-control, .players-database .modal .modal-body div input[type=text],
.players-database .modal .modal-body div input[type=email],
.players-database .modal .modal-body div input[type=password],
.players-database .modal .modal-body div input[type=number],
.players-database .modal .modal-body div input[type=date],
.players-database .modal .modal-body div input[type=tel],
.players-database .modal .modal-body div textarea,
.players-database .modal .modal-body div select {
  background-color: rgba(0, 0, 0, 0.5);
}
.players-database .modal .modal-body div .form-control:focus, .players-database .modal .modal-body div input[type=text]:focus,
.players-database .modal .modal-body div input[type=email]:focus,
.players-database .modal .modal-body div input[type=password]:focus,
.players-database .modal .modal-body div input[type=number]:focus,
.players-database .modal .modal-body div input[type=date]:focus,
.players-database .modal .modal-body div input[type=tel]:focus,
.players-database .modal .modal-body div textarea:focus,
.players-database .modal .modal-body div select:focus {
  background-color: rgba(0, 0, 0, 0.75);
}
.players-database .modal .modal-body div .player-bid-header {
  position: relative;
  background: rgba(0, 0, 50, 0.3);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.players-database .modal .modal-body div .player-bid-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.players-database .modal .modal-body div .player-bid-header .player-photo-container {
  flex: 0 0 auto;
  margin-right: 1rem;
  position: relative;
}
.players-database .modal .modal-body div .player-bid-header .player-photo-container .player-photo {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  border-radius: 4px;
}
.players-database .modal .modal-body div .player-bid-header .player-info-container {
  flex: 1 1 auto;
}
.players-database .modal .modal-body div .player-bid-header .player-info-container .player-name {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.players-database .modal .modal-body div .player-bid-header .player-info-container .player-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.players-database .modal .modal-body div .player-bid-header .player-info-container .player-team .position-badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.players-database .modal .modal-body div .player-bid-header .player-info-container .player-team .team-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.players-database .modal .modal-body div .player-bid-header .player-info-container .player-age .age-value {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  width: 45px;
  height: 45px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.players-database .modal .modal-body div .player-bid-header .player-rating-container .player-rating.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.players-database .modal .modal-body .player-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.players-database .modal .modal-body .player-details .detail-item {
  flex: 1 1 calc(50% - 1rem);
  min-width: 150px;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}
.players-database .modal .modal-body .player-details .detail-item .detail-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
  display: block;
}
.players-database .modal .modal-body .player-details .detail-item .detail-value {
  font-weight: 500;
  color: white;
}
.players-database .modal .modal-body .bid-form .form-group {
  margin-bottom: 1rem;
}
.players-database .modal .modal-body .bid-form .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}
.players-database .modal .modal-body .bid-form .form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 8px;
  background-color: rgba(0, 0, 50, 0.4);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  height: 50px;
}
.players-database .modal .modal-body .bid-form .form-group input:focus {
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  background-color: rgba(0, 0, 50, 0.6);
  transform: translateY(-1px);
}
.players-database .modal .modal-body .bid-form .form-group input:hover:not(:focus) {
  border-color: rgba(255, 215, 0, 0.8);
  background-color: rgba(0, 0, 50, 0.5);
}
.players-database .modal .modal-body .bid-form .form-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.players-database .modal .modal-body .bid-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.players-database .modal .modal-body .bid-form .form-group .error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  background-color: rgba(255, 0, 0, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border-left: 3px solid #ff6b6b;
}
.players-database .modal .modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  gap: 1rem;
}
.players-database .modal .modal-footer .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.8rem;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
}
.players-database .modal .modal-footer .btn i.material-icons {
  font-size: 18px;
}
.players-database .modal .modal-footer .btn-primary {
  background: linear-gradient(135deg, #0046ad, #0033cc);
  color: white;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.players-database .modal .modal-footer .btn-primary:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  transition: all 0.5s ease;
}
.players-database .modal .modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, #0033cc, #0046ad);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.5);
}
.players-database .modal .modal-footer .btn-primary:hover:before {
  opacity: 0.7;
  transform: scale(1.1);
}
.players-database .modal .modal-footer .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.players-database .modal .modal-footer .btn-secondary {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.players-database .modal .modal-footer .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
}
.players-database .player-detail {
  background-color: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .players-database .player-detail {
    margin-bottom: 1.5rem;
  }
}
.players-database .player-detail .player-detail-header {
  background: #333;
  color: #ffffff;
  padding: 1.5rem;
  position: relative;
  border-bottom: 3px solid #FFD700;
}
.players-database .player-detail .player-detail-header .player-detail-position {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #FFD700;
  color: #333;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.players-database .player-detail .player-detail-header .player-detail-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .players-database .player-detail .player-detail-header .player-detail-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .players-database .player-detail .player-detail-header .player-detail-name {
    font-size: 1.2rem;
    margin-right: 60px;
  }
}
.players-database .player-detail .player-detail-header .player-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.9;
}
.players-database .player-detail .player-detail-body {
  padding: 1.5rem;
}
.players-database .player-detail .player-detail-body .player-attributes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .players-database .player-detail .player-detail-body .player-attributes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #FFD700;
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group .attribute-list .attribute-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group .attribute-list .attribute-item .attribute-name {
  flex: 1;
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group .attribute-list .attribute-item .attribute-value {
  font-weight: 700;
  width: 30px;
  text-align: center;
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group .attribute-list .attribute-item .attribute-bar {
  flex: 2;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  margin: 0 0.5rem;
  overflow: hidden;
}
.players-database .player-detail .player-detail-body .player-attributes .attribute-group .attribute-list .attribute-item .attribute-bar .attribute-fill {
  height: 100%;
  background: #000096;
  border-right: 2px solid #FFD700;
}
.players-database .position-badge {
  position: relative;
  color: white;
  font-weight: 700;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #FFD700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transform: translateY(0);
  transition: all 0.3s ease;
  align-items: center;
  background: linear-gradient(135deg, #000096, rgb(0, 0, 73.5));
  display: flex;
}
.players-database .position-badge[data-position=GB] {
  background: linear-gradient(135deg, #ff9900, rgb(178.5, 107.1, 0));
}
.players-database .position-badge[data-position=DC] {
  background: linear-gradient(135deg, #3366cc, rgb(35.7, 71.4, 142.8));
}
.players-database .position-badge[data-position=DG] {
  background: linear-gradient(135deg, #6699cc, rgb(57.375, 114.75, 172.125));
}
.players-database .position-badge[data-position=DD] {
  background: linear-gradient(135deg, #336699, rgb(31.875, 63.75, 95.625));
}
.players-database .position-badge[data-position=MDF] {
  background: linear-gradient(135deg, #339933, rgb(31.875, 95.625, 31.875));
}
.players-database .position-badge[data-position=MR] {
  background: linear-gradient(135deg, #66cc66, rgb(57.375, 172.125, 57.375));
}
.players-database .position-badge[data-position=MO] {
  background: linear-gradient(135deg, #99cc33, rgb(107.1, 142.8, 35.7));
}
.players-database .position-badge[data-position=MLG] {
  background: linear-gradient(135deg, #66cc99, rgb(57.375, 172.125, 114.75));
}
.players-database .position-badge[data-position=MLD] {
  background: linear-gradient(135deg, #33cc99, rgb(35.7, 142.8, 107.1));
}
.players-database .position-badge[data-position=AiG] {
  background: linear-gradient(135deg, #cc6699, rgb(172.125, 57.375, 114.75));
}
.players-database .position-badge[data-position=AiD] {
  background: linear-gradient(135deg, #9966cc, rgb(114.75, 57.375, 172.125));
}
.players-database .position-badge[data-position=SA] {
  background: linear-gradient(135deg, #cc3366, rgb(142.8, 35.7, 71.4));
}
.players-database .position-badge[data-position=AC] {
  background: linear-gradient(135deg, #cc0000, rgb(127.5, 0, 0));
}
.players-database .position-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.6);
}
.players-database .player-photo-cell {
  width: 60px;
  position: relative;
}
.players-database .player-photo-cell .player-photo {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}
.players-database .player-photo-cell:hover .player-photo {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}
.players-database .player-photo-cell:hover .position-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.players-database .existing-bid {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background-color: rgba(92.8405797101, 216.1594202899, 121, 0.2);
  color: #28a745;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  height: 69px;
  justify-content: center;
}
.players-database .existing-bid i.material-icons {
  font-size: 18px;
}
.players-database .owner-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 1rem;
  background-color: rgb(31, 200.2173913043, 227);
  color: rgb(11.6666666667, 82.1739130435, 93.3333333333);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 500;
}
.players-database .filter-section {
  margin-bottom: 1rem;
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: none;
  border-left: 3px solid #FFD700;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
.players-database .filter-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #000096;
  font-size: 0.875rem;
}
.players-database .filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.players-database .filter-chip {
  background-color: #333;
  padding: 0.25rem 1rem;
  border-radius: 0;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  border: 1px solid #FFD700;
}
.players-database .filter-chip span {
  margin-right: 0.25rem;
  color: white;
}
.players-database .remove-filter {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #FFD700;
  color: #000096;
  font-size: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.players-database .remove-filter:hover {
  background-color: #dc3545;
  transform: scale(1.1);
}

.bids-section {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .bids-section {
    margin-top: 1.5rem;
  }
}
.bids-section .bid-form {
  background-color: white;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  border: none;
  border-left: 3px solid #FFD700;
}
@media (max-width: 768px) {
  .bids-section .bid-form {
    padding: 1rem;
  }
}
.bids-section .bid-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000096;
}
.bids-section .bid-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bids-section .bid-form .form-row .form-group {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 576px) {
  .bids-section .bid-form .form-row .form-group {
    min-width: 100%;
  }
}
@media (max-width: 576px) {
  .bids-section .bid-form .form-row {
    gap: 0.5rem;
  }
}
.bids-section .current-bids {
  background-color: white;
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: none;
  border-left: 3px solid #FFD700;
}
.bids-section .current-bids h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000096;
}
.bids-section .current-bids .bids-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .bids-section .current-bids .bids-table {
    display: block;
    overflow-x: auto;
  }
}
.bids-section .current-bids .bids-table th, .bids-section .current-bids .bids-table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .bids-section .current-bids .bids-table th, .bids-section .current-bids .bids-table td {
    padding: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.bids-section .current-bids .bids-table th {
  font-weight: 700;
  color: #000096;
}
.bids-section .current-bids .bids-table tr:last-child td {
  border-bottom: none;
}
.bids-section .current-bids .bids-table .bid-amount {
  font-weight: 700;
  color: #28a745;
}
.bids-section .current-bids .bids-table .bid-status {
  font-weight: 700;
}
.bids-section .current-bids .bids-table .bid-status.status-won {
  color: #28a745;
}
.bids-section .current-bids .bids-table .bid-status.status-lost {
  color: #dc3545;
}
.bids-section .current-bids .bids-table .bid-status.status-pending {
  color: #ffc107;
}

@media (max-width: 768px) {
  .players-database .search-container .search-box .search-form-section {
    margin-bottom: 0;
    padding: 0;
  }
  .players-database .search-container .search-box .search-form-section .slider-rows {
    flex-direction: column;
  }
  .players-database .search-container .search-box.sb-name .form-row {
    display: flex;
    flex-direction: column;
  }
  .players-database .search-container .search-box.sb-name .form-row .form-group {
    display: flex;
    width: 100%;
  }
  .players-database .search-container .search-box.sb-name .form-row .form-group .form-control, .players-database .search-container .search-box.sb-name .form-row .form-group input[type=text],
  .players-database .search-container .search-box.sb-name .form-row .form-group input[type=email],
  .players-database .search-container .search-box.sb-name .form-row .form-group input[type=password],
  .players-database .search-container .search-box.sb-name .form-row .form-group input[type=number],
  .players-database .search-container .search-box.sb-name .form-row .form-group input[type=date],
  .players-database .search-container .search-box.sb-name .form-row .form-group input[type=tel],
  .players-database .search-container .search-box.sb-name .form-row .form-group textarea,
  .players-database .search-container .search-box.sb-name .form-row .form-group select {
    width: 100%;
  }
  .players-database .search-container .search-box.sb-name .form-row .search-btn {
    display: flex;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    background: #000096;
    color: #FFD700;
    flex-direction: row;
    gap: 5px;
    margin-top: 15px;
    border-radius: 5px;
  }
  .players-database .search-container .search-box.sb-name .form-row .search-btn button {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0.7rem;
    font-weight: bold;
    gap: 5px;
  }
  .players-database .search-container .search-box.sb-name .form-row .search-btn button svg {
    display: flex;
  }
  .players-database .search-container .search-box.sb-name .form-row .search-btn button .text {
    display: flex;
  }
  .players-database .search-container .search-box.sb-attr .search-submit .search-button {
    width: 100%;
    height: auto;
    padding: 0.7rem;
  }
  .players-database .search-results .container {
    padding: 0 1rem;
  }
  .players-database .search-results .container .results-cards {
    padding: 0;
  }
  .players-database .search-results .container .pagination .pagination-controls {
    flex-wrap: wrap;
  }
}
.players-database .stats-icon-btn {
  background-color: rgba(0, 0, 150, 0.7);
  color: white;
  width: 50px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  display: flex;
  height: 69px;
}
.players-database .stats-icon-btn svg {
  width: 14px;
  height: 14px;
}
.players-database .stats-icon-btn.card-stats-btn {
  animation: pulse-stats-btn 2s infinite;
}
@keyframes pulse-stats-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
.players-database .stats-icon-btn.card-stats-btn svg {
  width: 20px;
  height: 20px;
}
.players-database .stats-icon-btn.card-stats-btn .stats-btn-text {
  margin-left: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 375px) {
  .players-database .stats-icon-btn.card-stats-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
  }
  .players-database .stats-icon-btn.card-stats-btn svg {
    width: 18px;
    height: 18px;
  }
  .players-database .stats-icon-btn.card-stats-btn .stats-btn-text {
    font-size: 10px;
  }
}
.players-database .stats-icon-btn:hover {
  background-color: #000096;
  opacity: 1;
}
.players-database .stats-icon-btn .loading-spinner {
  width: 14px;
  height: 14px;
  border-width: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.players-database .stats-modal {
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .players-database .stats-modal {
    width: 95%;
    max-width: none;
  }
}
.players-database .stats-modal .modal-body {
  padding: 1.5rem;
}
.players-database .stats-content .player-header {
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 1rem;
  position: relative;
}
.players-database .stats-content .player-header:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #FFD700, rgba(255, 215, 0, 0.1));
}
.players-database .stats-content .player-header .player-info-container {
  position: relative;
  z-index: 1;
}
.players-database .stats-content .player-header .player-photo {
  border: 2px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.players-database .stats-content .player-header .player-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}
.players-database .stats-content .player-header .player-info .player-name {
  color: #FFD700;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}
.players-database .stats-content .player-header .player-info .player-badges {
  margin-top: 0.5rem;
}
.players-database .stats-content .player-header .player-info .player-ratings {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.players-database .stats-content .player-header .player-info .player-ratings .overall {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}
.players-database .stats-content .player-header .player-info .player-ratings .overall:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.players-database .stats-content .player-header .player-info .player-ratings .overall span {
  position: relative;
  z-index: 2;
  line-height: 12px;
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.age {
  background: #000096;
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 150, 0.7);
  flex-direction: column;
  gap: 0;
  padding-top: 5px;
}
.players-database .stats-content .player-header .player-info .player-ratings .overall.age:before {
  border-color: rgba(0, 0, 150, 0.6);
}
.players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"] {
  background: linear-gradient(to right, rgba(0, 0, 150, 0.1), rgba(0, 0, 150, 0.05));
  border-left: 3px solid #000096;
  border-radius: 0 4px 4px 0;
  padding: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}
.players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent 70%);
  z-index: 0;
}
.players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"] h5, .players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"] p {
  position: relative;
  z-index: 1;
}
.players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"] h5 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.players-database .stats-content div[x-show="selectedPlayerStats.playing_style_description"] p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.players-database .stats-content .stats-section {
  margin-bottom: 1.5rem;
  position: relative;
}
.players-database .stats-content .stats-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 150, 0.05), transparent);
  border-radius: 8px;
  z-index: 0;
}
.players-database .stats-content .stats-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFD700;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}
.players-database .stats-content .stats-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #FFD700;
}
.players-database .stats-content .stats-section .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.players-database .stats-content .stats-section .stat-item:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.players-database .stats-content .stats-section .stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}
.players-database .stats-content .stats-section .stat-item .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #FFD700;
}
.players-database .rating-excellent {
  color: #22c55e;
}
.players-database .rating-good {
  color: #3b82f6;
}
.players-database .rating-average {
  color: #f59e0b;
}
.players-database .rating-poor {
  color: #ef4444;
}
.players-database .technique-row {
  position: relative;
}
.players-database .technique-row .stat-name {
  font-weight: 500;
}
.players-database .technique-row .technique-indicator {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.players-database .technique-row:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.players-database .stats-column {
  margin-bottom: 1.5rem;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.players-database .stats-column > div:first-child {
  margin: 0;
}
.players-database .stats-column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 150, 0.1), transparent 70%);
  z-index: 0;
}
.players-database .stats-column .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFD700;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}
.players-database .stats-column .section-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #FFD700;
}
.players-database .stats-column .stat-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}
.players-database .stats-column .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.players-database .stats-column .stat-row:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: all 0.6s ease;
}
.players-database .stats-column .stat-row:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(2px);
}
.players-database .stats-column .stat-row:hover:before {
  left: 100%;
}
.players-database .stats-column .stat-row:hover .stat-value {
  color: #FFD700;
  transform: scale(1.1);
}
.players-database .stats-column .stat-row:last-child {
  border-bottom: none;
}
.players-database .stats-column .stat-row .stat-name {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.players-database .stats-column .stat-row .stat-value {
  font-size: 1rem;
  font-weight: 700;
  min-width: 30px;
  text-align: right;
  transition: all 0.2s ease;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
}
.players-database .stats-column .stat-row .stat-value.rating-excellent {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}
.players-database .stats-column .stat-row .stat-value.rating-good {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}
.players-database .stats-column .stat-row .stat-value.rating-average {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}
.players-database .stats-column .stat-row .stat-value.rating-poor {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}
.players-database .player-field-visualization {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .players-database .player-field-visualization {
    margin-top: 0;
  }
}
.players-database .player-field-visualization .field-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.players-database .player-field-visualization .football-field {
  width: 200px;
  height: 250px;
  background-color: #3a8c3a; /* Vert foncé pour le gazon */
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.players-database .player-field-visualization .football-field .field-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  /* Lignes blanches du terrain */
  /* Rond central */
  /* Ligne médiane */
  /* Surface de réparation unique */
  /* Masquer les surfaces de but */
}
.players-database .player-field-visualization .football-field .field-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
}
.players-database .player-field-visualization .football-field .field-lines .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22%;
  height: 0;
  padding-bottom: 20%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.players-database .player-field-visualization .football-field .field-lines .halfway-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%);
}
.players-database .player-field-visualization .football-field .field-lines .penalty-area {
  position: absolute;
  width: 35%;
  height: 15%;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.players-database .player-field-visualization .football-field .field-lines .penalty-area.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: none;
}
.players-database .player-field-visualization .football-field .field-lines .penalty-area.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: none;
}
.players-database .player-field-visualization .football-field .field-lines .goal-area {
  display: none;
}
.players-database .player-field-visualization .football-field .positions-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.players-database .player-field-visualization .football-field .position-marker {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  font-size: 0.7rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 2;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
.players-database .player-field-visualization .football-field .position-marker.primary-position {
  color: white;
  text-shadow: 0 0 5px rgba(255, 0, 102, 0.8);
}
.players-database .player-field-visualization .football-field .position-marker.primary-position::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #00BCD4;
  border: 1px solid white;
  border-radius: 50%;
  z-index: -1;
}
.players-database .player-field-visualization .football-field .position-marker.mastery-2 {
  color: white;
  text-shadow: 0 0 5px rgba(0, 204, 0, 0.8);
}
.players-database .player-field-visualization .football-field .position-marker.mastery-2::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: rgba(0, 204, 0, 0.8);
  border: 1px solid white;
  border-radius: 50%;
  z-index: -1;
}
.players-database .player-field-visualization .football-field .position-marker.mastery-1 {
  color: white;
  text-shadow: 0 0 5px rgba(255, 204, 0, 0.8);
}
.players-database .player-field-visualization .football-field .position-marker.mastery-1::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 204, 0, 0.8);
  border: 1px solid white;
  border-radius: 50%;
  z-index: -1;
}
.players-database .player-field-visualization .football-field .position-marker.not-mastered {
  color: rgba(255, 255, 255, 0.4);
}
.players-database .player-field-visualization .football-field .position-marker.not-mastered::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgba(150, 150, 150, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: -1;
}
.players-database .player-field-visualization .football-field .pos-gk {
  bottom: -12px;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-cb {
  bottom: 10%;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-lb {
  bottom: 15%;
  left: 15%;
}
.players-database .player-field-visualization .football-field .pos-rb {
  bottom: 15%;
  left: 85%;
}
.players-database .player-field-visualization .football-field .pos-dmf {
  bottom: 24%;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-cmf {
  top: 50%;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-amf {
  top: 35%;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-lmf {
  top: 50%;
  left: 15%;
}
.players-database .player-field-visualization .football-field .pos-rmf {
  top: 50%;
  left: 85%;
}
.players-database .player-field-visualization .football-field .pos-lwf {
  top: 20%;
  left: 15%;
}
.players-database .player-field-visualization .football-field .pos-rwf {
  top: 20%;
  left: 85%;
}
.players-database .player-field-visualization .football-field .pos-ss {
  top: 22%;
  left: 50%;
}
.players-database .player-field-visualization .football-field .pos-cf {
  top: 8%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.players-database .player-field-visualization .player-positions .position-indicator {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.players-database .player-field-visualization .player-positions .position-indicator.primary {
  background-color: #ff0066;
  border: 2px solid white;
  width: 24px;
  height: 24px;
}
.players-database .player-field-visualization .player-positions .position-indicator.secondary {
  border: 1px solid white;
  opacity: 0.8;
}
.players-database .player-field-visualization .player-positions .position-indicator.secondary.mastery-3 {
  background-color: #00cc00;
  width: 18px;
  height: 18px;
}
.players-database .player-field-visualization .player-positions .position-indicator.secondary.mastery-2 {
  background-color: #ffcc00;
  width: 16px;
  height: 16px;
}
.players-database .player-field-visualization .player-positions .position-indicator.secondary.mastery-1 {
  background-color: #ff9900;
  width: 14px;
  height: 14px;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-gk {
  bottom: 10%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-cb {
  bottom: 25%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-lb {
  bottom: 25%;
  left: 25%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-rb {
  bottom: 25%;
  left: 75%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-dmf {
  bottom: 40%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-cmf {
  bottom: 50%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-amf {
  top: 40%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-lmf {
  bottom: 50%;
  left: 25%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-rmf {
  bottom: 50%;
  left: 75%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-lwf {
  top: 25%;
  left: 25%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-rwf {
  top: 25%;
  left: 75%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-ss {
  top: 25%;
  left: 50%;
}
.players-database .player-field-visualization .player-positions .position-indicator .pos-cf {
  top: 15%;
  left: 50%;
}
@media (max-width: 768px) {
  .players-database .stats-content .grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .players-database .stats-content .stats-column {
    margin-bottom: 1rem;
  }
  .players-database .stats-content .stats-column .section-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .players-database .stats-content .stats-column .stat-row {
    padding: 0.125rem 0;
  }
  .players-database .stats-content .stats-column .stat-row .stat-name {
    font-size: 0.75rem;
  }
  .players-database .stats-content .stats-column .stat-row .stat-value {
    font-size: 0.875rem;
  }
  .players-database .stats-content .player-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .players-database .stats-content .player-header img {
    margin-bottom: 0.5rem;
  }
}
.players-database .loading-spinner {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid white;
  width: 12px;
  height: 12px;
  animation: spin 1s linear infinite;
}
.players-database .loading-spinner-large {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 3px solid #000096;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shine {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.players-database .positions-legend {
  margin-top: 1rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1rem;
}
.players-database .positions-legend .legend-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #000096;
  text-align: center;
}
.players-database .positions-legend .legend-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .players-database .positions-legend .legend-items {
    grid-template-columns: 1fr;
  }
}
.players-database .positions-legend .position-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.players-database .positions-legend .position-item .legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.players-database .positions-legend .position-item .legend-dot.primary {
  background-color: rgba(255, 0, 102, 0.8);
  border: 2px solid white;
}
.players-database .positions-legend .position-item .legend-dot.mastery-2 {
  background-color: rgba(0, 204, 0, 0.8);
  border: 1px solid white;
}
.players-database .positions-legend .position-item .legend-dot.mastery-1 {
  background-color: rgba(255, 204, 0, 0.8);
  border: 1px solid white;
}
.players-database .positions-legend .position-item .legend-dot.not-mastered {
  background-color: rgba(150, 150, 150, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.4);
}
.players-database .positions-legend .position-item .legend-label {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}

.bids-container {
  position: relative;
}
.bids-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000096' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}
.bids-container .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #000033, #000096);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.bids-container .page-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
  opacity: 0.5;
  animation: pulse 4s infinite;
}
.bids-container .page-header h1 {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}
.bids-container .page-header .actions {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .bids-container .page-header .actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.bids-container .page-header h1 {
  font-size: 1.5rem;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.info-card {
  background-color: #161e4a;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.3);
}
.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.info-card h3:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FFD700, transparent);
}
.info-card .info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.info-card .info-row .label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.info-card .info-row .value {
  font-weight: 500;
  color: white;
}
.info-card .info-row .value.highlight {
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
.info-card .info-row .value.budget-value {
  color: #16a34a;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(22, 163, 74, 0.5);
}
.info-card .info-row .value.salary {
  color: #3b82f6;
}
.info-card .info-row.highlight {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-card .info-divider {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-card .budget-available {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #16a34a;
}
.info-card .salary-projected {
  font-weight: 700;
  color: #3b82f6;
}
.info-card .validation-actions {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .info-card {
    width: 100% !important;
  }
}
@keyframes border-glow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

.club-card {
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.club-card .club-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.club-card .club-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.club-card .club-header .status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.club-card .club-header .status-badge.pending {
  background-color: #dbeafe;
  color: #1e40af;
}
.club-card .club-header .status-badge.won {
  background-color: #dcfce7;
  color: #166534;
}
.club-card .club-content {
  display: flex;
  align-items: flex-start;
}
.club-card .club-content .club-logo {
  margin-right: 1.25rem;
}
.club-card .club-content .club-logo img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.club-card .club-content .club-logo .logo-placeholder {
  width: 5rem;
  height: 5rem;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.club-card .club-content .club-logo .logo-placeholder span {
  color: #6b7280;
  font-size: 1.875rem;
  font-weight: 700;
}
.club-card .club-content .club-info {
  flex-grow: 1;
}
.club-card .club-content .club-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}
.club-card .club-content .club-info .club-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
.club-card .club-content .club-info .club-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.club-card .club-content .club-info .club-details .detail-item .icon {
  color: #6b7280;
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.club-card .club-content .club-info .club-details .detail-item .label {
  font-weight: 500;
}
.club-card .club-content .club-info .club-details .detail-item .value {
  margin-left: 0.25rem;
}
.club-card .club-content .club-info .club-details .bid-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.club-card .club-content .club-info .club-details .bid-status.pending {
  background-color: #eff6ff;
}
.club-card .club-content .club-info .club-details .bid-status.pending .status-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
}
.club-card .club-content .club-info .club-details .bid-status.pending .bid-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
}
.club-card .club-content .club-info .club-details .bid-status.pending .bid-note {
  font-size: 0.75rem;
  color: #2563eb;
  font-style: italic;
  margin-top: 0.25rem;
}
.club-card .club-content .club-info .club-details .bid-status.won {
  background-color: #ecfdf5;
}
.club-card .club-content .club-info .club-details .bid-status.won .status-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #065f46;
}
.club-card .club-content .club-info .club-details .bid-status.won .bid-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #064e3b;
}

.tabs-container {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.tabs-container nav {
  display: flex;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}
.tabs-container nav .tab-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background-color: white;
  color: #4b5563;
  flex: 1 1 0%;
  transition: all 0.2s;
  border-bottom: 4px solid transparent;
}
.tabs-container nav .tab-button.active {
  border-color: #000096;
  color: #000096;
  font-weight: 500;
  background-color: #eff6ff;
}
.tabs-container nav .tab-button .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.tabs-container nav .tab-button .tab-icon span {
  font-size: 1.5rem;
}
.tabs-container nav .tab-button .tab-label {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tabs-container nav .tab-button .tab-label {
    font-size: 1rem;
  }
}

.data-table-container {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .data-table-container {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .data-table-container .data-table {
    display: none;
  }
  .data-table-container .mobile-cards {
    display: block;
  }
}
@media (min-width: 769px) {
  .data-table-container .mobile-cards {
    display: none;
  }
}

.empty-state {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
}
.empty-state p {
  color: #4b5563;
}

.status-badge.completed-mercato {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.status-badge.validated-bids {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 0.25rem;
}

.progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: 0.625rem;
}
.progress-bar .progress-fill {
  height: 0.625rem;
  border-radius: 9999px;
}
.progress-bar .progress-fill.completed {
  background-color: #16a34a;
}
.progress-bar .progress-fill.almost {
  background-color: #000096;
}
.progress-bar .progress-fill.incomplete {
  background-color: #dc2626;
}

.btn-primary {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #0000c9, #000096);
  color: white;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #000096, #000063);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover:before {
  opacity: 1;
  transform: scale(1);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.tab-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: opacity 0.3s ease-in-out;
}

.info-cards-container {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .info-cards-container .info-cards-grid {
    gap: 1rem;
  }
}

.modal-overlay.bids-modal {
  display: none;
}
.modal-overlay.bids-modal.active {
  display: flex;
}
.modal-overlay.bids-modal .modal-header {
  justify-content: center;
}
.modal-overlay.bids-modal .modal-header .title {
  color: #FFD700;
  justify-content: center;
  gap: 10px;
}
.modal-overlay.bids-modal .modal-footer {
  display: flex;
  justify-content: center;
}
.modal-overlay.bids-modal .modal-footer button {
  background: #FFD700;
  color: #333;
  padding: 0.3rem 2rem;
  font-weight: bold;
}
.modal-overlay.bids-modal .modal-footer button.modal-btn-confirm {
  background: #529918;
  color: #fff;
}
.modal-overlay.bids-modal .modal-body {
  justify-content: center;
}
.modal-overlay.bids-modal .modal-body p {
  text-align: center;
}

.club-card {
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
.club-card .club-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-direction: column;
}
.club-card .club-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.club-card .club-header .status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.club-card .club-header .status-badge.pending {
  background-color: #dbeafe;
  color: #1e40af;
}
.club-card .club-header .status-badge.won {
  background-color: #dcfce7;
  color: #166534;
}
.club-card .club-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-items: center;
}
.club-card .club-content .club-logo {
  margin-right: 1.25rem;
}
.club-card .club-content .club-logo img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.club-card .club-content .club-logo .logo-placeholder {
  width: 5rem;
  height: 5rem;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.club-card .club-content .club-logo .logo-placeholder span {
  color: #6b7280;
  font-size: 1.875rem;
  font-weight: 700;
}
.club-card .club-content .club-info {
  flex-grow: 1;
}
.club-card .club-content .club-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}
.club-card .club-content .club-info .club-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
.club-card .club-content .club-info .club-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.club-card .club-content .club-info .club-details .detail-item .icon {
  color: #6b7280;
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.club-card .club-content .club-info .club-details .detail-item .label {
  font-weight: 500;
}
.club-card .club-content .club-info .club-details .detail-item .value {
  margin-left: 0.25rem;
}
.club-card .club-content .club-info .club-details .bid-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.club-card .club-content .club-info .club-details .bid-status.pending {
  background-color: #eff6ff;
}
.club-card .club-content .club-info .club-details .bid-status.pending .status-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
}
.club-card .club-content .club-info .club-details .bid-status.pending .bid-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
}
.club-card .club-content .club-info .club-details .bid-status.pending .bid-note {
  font-size: 0.75rem;
  color: #2563eb;
  font-style: italic;
  margin-top: 0.25rem;
}
.club-card .club-content .club-info .club-details .bid-status.won {
  background-color: #ecfdf5;
}
.club-card .club-content .club-info .club-details .bid-status.won .status-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #065f46;
}
.club-card .club-content .club-info .club-details .bid-status.won .bid-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #064e3b;
}

.tabs-container {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.tabs-container nav {
  display: flex;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}
.tabs-container nav .tab-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background-color: white;
  color: #4b5563;
  flex: 1 1 0%;
  transition: all 0.2s;
  border-bottom: 4px solid transparent;
}
.tabs-container nav .tab-button.active {
  border-color: #000096;
  color: #000096;
  font-weight: 500;
  background-color: #eff6ff;
}
.tabs-container nav .tab-button .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.tabs-container nav .tab-button .tab-icon span {
  font-size: 1.5rem;
}
.tabs-container nav .tab-button .tab-label {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .tabs-container nav .tab-button .tab-label {
    font-size: 1rem;
  }
}

.data-table-container {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .data-table-container {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .data-table-container .data-table {
    display: none;
  }
  .data-table-container .mobile-cards {
    display: block;
  }
}
@media (min-width: 769px) {
  .data-table-container .mobile-cards {
    display: none;
  }
}

.mobile-cards {
  display: none;
  margin-bottom: 1.5rem;
  position: relative;
}
.mobile-cards .recap.mobile-card {
  position: fixed;
  top: 80px;
  width: 100%;
  left: 0;
  border-radius: 0;
  display: none;
}
.mobile-cards .mobile-card {
  background-color: #161e4a;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.6rem 1.25rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.2);
  color: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mobile-cards .mobile-card:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FFD700, transparent 40%, transparent 60%, #FFD700);
  border-radius: 0.5rem;
  z-index: -1;
  opacity: 0.5;
  animation: border-glow 3s infinite alternate;
}
.mobile-cards .mobile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.3);
}
.mobile-cards .mobile-card.won-bid:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #16a34a, transparent);
}
.mobile-cards .mobile-card.lost-bid:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, transparent);
}
.mobile-cards .mobile-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-cards .mobile-card .card-header .status-badge {
  padding: 2px 10px;
  background: #000;
  font-size: 12px;
  margin: 2px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  width: 100px;
  gap: 2px;
  align-items: center;
}
.mobile-cards .mobile-card .card-header .status-badge.process {
  position: absolute;
  left: 0;
  top: 0;
}
.mobile-cards .mobile-card .card-header .status-badge .material-icons {
  font-size: 12px;
}
.mobile-cards .mobile-card .card-header .player-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFD700;
  flex: 0 60%;
}
.mobile-cards .mobile-card .card-header .player-rating {
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  margin: 0;
}
.mobile-cards .mobile-card .card-header .player-rating:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  animation: rating-pulse 2s infinite;
}
.mobile-cards .mobile-card .card-header .player-rating.orange {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
}
.mobile-cards .mobile-card .card-header .player-rating.orange:before {
  border-color: rgba(255, 165, 0, 0.6);
}
.mobile-cards .mobile-card .card-header .player-rating.green {
  background: linear-gradient(135deg, #00FF00, #32CD32);
}
.mobile-cards .mobile-card .card-header .player-rating.green:before {
  border-color: rgba(0, 255, 0, 0.6);
}
.mobile-cards .mobile-card .card-header .player-rating.blue {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}
.mobile-cards .mobile-card .card-header .player-rating.blue:before {
  border-color: rgba(0, 191, 255, 0.6);
}
.mobile-cards .mobile-card .card-header .player-rating.team-progress {
  width: 65px;
  border-radius: 10px;
  font-size: 18px;
  height: 30px;
}
.mobile-cards .mobile-card .card-header .player-rating.team-progress:after {
  display: none;
}
.mobile-cards .mobile-card .card-header .player-rating.team-progress:before {
  display: none;
}
.mobile-cards .mobile-card .card-content .info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.mobile-cards .mobile-card .card-content .info-row .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.mobile-cards .mobile-card .card-content .info-row input {
  background: rgba(0, 0, 0, 0.3333333333);
  width: 80px;
  text-align: center;
}
.mobile-cards .mobile-card .card-content .info-row input.highlight.value {
  text-align: center;
}
.mobile-cards .mobile-card .card-content .info-row .role-box select {
  margin-left: 22px;
  width: 128px;
}
.mobile-cards .mobile-card .card-content .info-row .value {
  font-weight: 500;
}
.mobile-cards .mobile-card .card-content .info-row .value.highlight {
  color: #FFD700;
  font-weight: 700;
  text-align: right;
}
.mobile-cards .mobile-card .card-content .info-row .value.won {
  color: #22c55e;
  text-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}
.mobile-cards .mobile-card .card-content .info-row .value.lost {
  color: #ef4444;
  text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}
.mobile-cards .mobile-card .card-actions {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-cards .mobile-card .card-actions .bid-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-cards .mobile-card .card-actions .bid-controls .bid-amount {
  font-weight: 700;
  color: #FFD700;
}
.mobile-cards .mobile-card .card-actions .action-button {
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.mobile-cards .mobile-card .card-actions .action-button.cancel {
  background-color: rgba(185, 28, 28, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.mobile-cards .mobile-card .card-actions .action-button.validated {
  color: rgba(255, 255, 255, 0.5);
}

.data-table {
  width: 100%;
  background-color: #161e4a;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}
.data-table:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
  opacity: 0.7;
}
.data-table thead {
  background: linear-gradient(to bottom, #000033, #000096);
  position: relative;
}
.data-table thead:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.7), transparent);
}
.data-table thead th {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  font-size: 0.875rem;
  position: relative;
  transition: background-color 0.3s ease;
}
.data-table thead th:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.data-table thead th.text-left {
  text-align: left;
}
.data-table thead th.text-center {
  text-align: center;
}
.data-table thead th.text-right {
  text-align: right;
}
@media (max-width: 768px) {
  .data-table thead th {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }
}
.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  position: relative;
}
.data-table tbody tr:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.data-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.data-table tbody tr.won-bid {
  background: linear-gradient(to right, rgba(21, 128, 61, 0.1), transparent);
  border-left: 3px solid #15803d;
}
.data-table tbody tr.lost-bid {
  background: linear-gradient(to right, rgba(185, 28, 28, 0.1), transparent);
  border-left: 3px solid #b91c1c;
}
.data-table tbody tr td {
  padding: 0.75rem 0.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .data-table tbody tr td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
}
.data-table tbody tr td.text-center {
  text-align: center;
}
.data-table tbody tr td.text-right {
  text-align: right;
}
.data-table tbody tr td.bid-amount {
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.data-table tbody tr td.bid-amount:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.data-table tbody tr td.bid-amount:hover:before {
  opacity: 1;
}
.data-table tbody tr td.bid-amount.won {
  color: #22c55e;
  text-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}
.data-table tbody tr td.bid-amount.lost {
  color: #ef4444;
  text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}
.data-table tbody tr td.bid-amount .bid-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.data-table tbody tr td.bid-amount .bid-controls button.bid-decrease {
  padding: 0.25rem 0.5rem;
  background-color: #fee2e2;
  color: #b91c1c;
  border-radius: 0.25rem;
}
.data-table tbody tr td.bid-amount .bid-controls button.bid-decrease:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.data-table tbody tr td.bid-amount .bid-controls button.bid-increase {
  padding: 0.25rem 0.5rem;
  background-color: #dcfce7;
  color: #15803d;
  border-radius: 0.25rem;
}
.data-table tbody tr td.bid-amount .bid-controls button.bid-increase:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.data-table tbody tr td .cancel-bid {
  color: #dc2626;
}
.data-table tbody tr td .cancel-bid:hover {
  color: #991b1b;
}
.data-table tbody tr td .validated-bid {
  color: #9ca3af;
}

.empty-state {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
}
.empty-state p {
  color: #4b5563;
}

.btn-secondary {
  padding: 0.5rem 1rem;
  background-color: #e5e7eb;
  color: #1f2937;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-secondary:hover {
  background-color: #d1d5db;
  text-decoration: none;
}

.btn-success {
  padding: 0.5rem 1rem;
  background-color: #16a34a;
  color: white;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}
.btn-success:hover {
  background-color: rgb(15.9351351351, 118.0648648649, 53.6);
}
.btn-success:disabled {
  opacity: 0.2;
}

.btn-complete-mercato {
  width: 100%;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  background: linear-gradient(to right, #b91024, #96052c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-complete-mercato:hover {
  background: linear-gradient(to right, #960505, #780404);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.status-badge.completed-mercato {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.status-badge.validated-bids {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 0.25rem;
}

.progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: 0.625rem;
}
.progress-bar .progress-fill {
  height: 0.625rem;
  border-radius: 9999px;
}
.progress-bar .progress-fill.completed {
  background-color: #16a34a;
}
.progress-bar .progress-fill.almost {
  background-color: #000096;
}
.progress-bar .progress-fill.incomplete {
  background-color: #dc2626;
}

@media (min-width: 769px) {
  .desktop-only {
    display: table !important;
  }
  .mobile-only,
  .mobile-cards {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .info-cards-container .info-cards-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .info-cards-container .info-cards-grid .info-card {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-header h1 {
    margin-bottom: 1rem;
  }
  .page-header .actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  .tabs-container .tabs-nav .tab-button {
    flex-wrap: wrap;
  }
  .tabs-container .tabs-nav .tab-button .tab-label {
    display: none;
  }
  .tabs-container .tabs-nav .tab-button .tab-icon {
    margin: 0;
  }
  .tab-nav {
    flex-wrap: wrap;
  }
  .tab-nav .tab-nav-item {
    flex: 1 0 auto;
    min-width: calc(33.333% - 0.5rem);
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .data-table-container {
    overflow-x: auto;
  }
  .data-table-container .data-table {
    min-width: 768px;
  }
  .form-container .form-grid {
    grid-template-columns: 1fr;
  }
  #club .bg-white {
    padding: 1rem;
  }
  #club .bg-white .flex {
    flex-direction: column;
  }
  #club .bg-white .flex img {
    margin-bottom: 1rem;
  }
  .mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
@media (max-width: 640px) {
  .page-header .actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-header .actions a, .page-header .actions button {
    width: 100%;
    text-align: center;
  }
  .tab-nav .tab-nav-item {
    min-width: calc(50% - 0.5rem);
  }
  .action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .action-buttons button, .action-buttons a {
    width: 100%;
  }
  .info-row {
    margin-bottom: 0.75rem;
  }
  .info-row .label {
    margin-bottom: 0.25rem;
  }
}
#pending-bids-tab select, #pending-bids select {
  padding: 2px 3rem 2px 1rem;
  background-color: rgba(0, 0, 0, 0.3333333333);
  border-radius: 5px;
  olor: #fff;
}
#pending-bids-tab .data-table .data-row .base-price, #pending-bids .data-table .data-row .base-price {
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  opacity: 50%;
  bottom: 3px;
}
#pending-bids-tab .data-table .data-row.bid-process, #pending-bids .data-table .data-row.bid-process {
  background: #004079;
}
#pending-bids-tab .data-table .data-row.bid-process .status, #pending-bids .data-table .data-row.bid-process .status {
  position: absolute;
  top: 10px;
  padding: 2px 10px;
  background: #000;
  font-size: 12px;
  margin: 2px;
  border-radius: 100%;
  flex-wrap: wrap;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  right: 0px;
  align-items: center;
}
#pending-bids-tab .data-table .data-row.bid-process .status:hover, #pending-bids .data-table .data-row.bid-process .status:hover {
  width: 100px;
  border-radius: 5px;
}
#pending-bids-tab .data-table .data-row.bid-process .status:hover .text, #pending-bids .data-table .data-row.bid-process .status:hover .text {
  display: flex;
}
#pending-bids-tab .data-table .data-row.bid-process .status .icon svg, #pending-bids .data-table .data-row.bid-process .status .icon svg {
  width: 12px;
  height: 12px;
}
#pending-bids-tab .data-table .data-row.bid-process .status .text, #pending-bids .data-table .data-row.bid-process .status .text {
  display: none;
}
#pending-bids-tab .data-table .data-row .bid-controls input, #pending-bids .data-table .data-row .bid-controls input {
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 10px;
  border-radius: 3px;
  width: 80px;
  text-align: center;
}

/* Styles pour les lignes éditables dans la vue mobile */
/* Ajustement pour que le label et la valeur restent sur la même ligne */
.mobile-card .editable-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mobile-card .value-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mobile-card .value-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1a2c4e;
  color: white;
  border: none;
  padding: 0;
  margin: 0 4px;
}
.mobile-card .value-controls button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.mobile-card .value-controls .material-icons {
  font-size: 16px;
}
.mobile-card .value-controls .value {
  min-width: 80px;
  text-align: center;
}
.mobile-card .value-controls select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  background-color: white;
  color: #fff;
  font-size: 14px;
  width: 120px;
}
.mobile-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mobile-card .info-row .label {
  flex: 0 0 40%;
  font-weight: 500;
}
.mobile-card .info-row .value {
  flex: 0 0 60%;
}
.mobile-card .info-row .value-controls {
  flex: 0 0 60%;
}

@media (max-width: 768px) {
  .show-modal-squad .data-table-container .data-table {
    display: table;
  }
}
[x-cloak] {
  display: none !important;
}

body.clubs-page {
  background-color: #f0f4ff;
}

.clubs-database .bid-form {
  box-shadow: none;
  border: none;
  padding: 0;
}
.clubs-database .bid-form:before {
  display: none;
}
.clubs-database .page-title {
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.5);
  border-bottom: 3px solid #FFD700;
  padding-bottom: 0.5rem;
  position: relative;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  width: calc(100% + 5rem);
  background-color: #000096;
  padding: 1rem calc(1.5rem + 2.5rem);
  margin-top: -1rem;
}
.clubs-database .page-title:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #000096;
}
.clubs-database .search-container {
  position: relative;
  padding: 1.5rem 0;
  background-color: #f8faff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 150, 0.05);
}
.clubs-database .search-box {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 0.25rem;
  border: none;
  position: relative;
}
.clubs-database .search-box .search-form-section {
  margin-bottom: 0;
}
.clubs-database .search-box .search-title {
  font-family: "Russo One", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000096;
  margin-bottom: 1rem;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 0.25rem;
  display: inline-block;
}
.clubs-database .filters-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .clubs-database .filters-section {
    grid-template-columns: 1fr;
  }
}
.clubs-database .filters-section .filter-group {
  margin-bottom: 1rem;
}
.clubs-database .filters-section .filter-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
.clubs-database .filters-section .filter-control {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: white;
}
.clubs-database .filters-section .filter-control:focus {
  border-color: #000096;
  box-shadow: 0 0 0 2px rgba(0, 0, 150, 0.2);
  outline: none;
}
.clubs-database .action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}
.clubs-database .action-buttons .btn-reset {
  background-color: #f0f0f0;
  color: #1a1a2e;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .action-buttons .btn-reset:hover {
  background-color: #e0e0e0;
}
.clubs-database .action-buttons .btn-search {
  background-color: #000096;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .action-buttons .btn-search:hover {
  background-color: #000063;
}
.clubs-database .loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}
.clubs-database .loading-indicator .spinner {
  width: 40px;
  height: 40px;
  color: #000096;
}
.clubs-database .error-message {
  background-color: #fff1f0;
  border-left: 4px solid #ff4d4f;
  color: #cf1322;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0 4px 4px 0;
}
.clubs-database .empty-results {
  background-color: #f0f7ff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.clubs-database .empty-results .empty-text {
  color: #000096;
  font-weight: 500;
}
.clubs-database .results-table {
  width: 100%;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.clubs-database .results-table thead {
  background-color: #f5f7fa;
}
.clubs-database .results-table thead th {
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #e8e8e8;
}
.clubs-database .results-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .results-table tbody tr:hover {
  background-color: #f5f7fa;
}
.clubs-database .results-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.clubs-database .results-table tbody td {
  padding: 1rem;
  font-size: 1rem;
  color: #1a1a2e;
  vertical-align: middle;
}
.clubs-database .results-table tbody td .club-logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.clubs-database .results-table tbody td .club-name {
  font-weight: 500;
}
.clubs-database .results-table tbody td .btn-bid {
  background-color: #000096;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .results-table tbody td .btn-bid:hover {
  background-color: #000063;
}
.clubs-database .rules-box {
  background-color: #f0f7ff;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.clubs-database .rules-box .rules-title {
  font-weight: 700;
  color: #000096;
  margin-bottom: 0.25rem;
}
.clubs-database .rules-box .rules-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}
.clubs-database .rules-box .rules-list li {
  font-size: 0.875rem;
  color: #000096;
  margin-bottom: 0.25rem;
}
.clubs-database .rules-box .rules-list li:last-child {
  margin-bottom: 0;
}
.clubs-database .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.clubs-database .pagination .pagination-info {
  font-size: 0.875rem;
  color: #6c757d;
}
.clubs-database .pagination .pagination-controls {
  display: flex;
  gap: 1rem;
}
.clubs-database .pagination .pagination-controls .page-btn {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #1a1a2e;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .pagination .pagination-controls .page-btn:last-child, .clubs-database .pagination .pagination-controls .page-btn:first-child {
  padding: 0 10px;
}
.clubs-database .pagination .pagination-controls .page-btn:hover:not(:disabled) {
  background-color: #e0e0e0;
}
.clubs-database .pagination .pagination-controls .page-btn.active {
  background-color: #000096;
  color: white;
}
.clubs-database .pagination .pagination-controls .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.clubs-database .message {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.clubs-database .message.success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #52c41a;
}
.clubs-database .message.error {
  background-color: #fff1f0;
  border: 1px solid #ffa39e;
  color: #cf1322;
}
.clubs-database .bid-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.clubs-database .bid-modal .modal-content {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.clubs-database .bid-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.clubs-database .bid-modal .modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
}
.clubs-database .bid-modal .modal-header .close-btn {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .bid-modal .modal-header .close-btn:hover {
  color: #1a1a2e;
}
.clubs-database .bid-modal .modal-body {
  padding: 1.5rem;
}
.clubs-database .bid-modal .modal-body .form-group {
  margin-bottom: 1rem;
}
.clubs-database .bid-modal .modal-body .form-group .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
.clubs-database .bid-modal .modal-body .form-group .form-control, .clubs-database .bid-modal .modal-body .form-group input[type=text],
.clubs-database .bid-modal .modal-body .form-group input[type=email],
.clubs-database .bid-modal .modal-body .form-group input[type=password],
.clubs-database .bid-modal .modal-body .form-group input[type=number],
.clubs-database .bid-modal .modal-body .form-group input[type=date],
.clubs-database .bid-modal .modal-body .form-group input[type=tel],
.clubs-database .bid-modal .modal-body .form-group textarea,
.clubs-database .bid-modal .modal-body .form-group select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .bid-modal .modal-body .form-group .form-control:focus, .clubs-database .bid-modal .modal-body .form-group input[type=text]:focus,
.clubs-database .bid-modal .modal-body .form-group input[type=email]:focus,
.clubs-database .bid-modal .modal-body .form-group input[type=password]:focus,
.clubs-database .bid-modal .modal-body .form-group input[type=number]:focus,
.clubs-database .bid-modal .modal-body .form-group input[type=date]:focus,
.clubs-database .bid-modal .modal-body .form-group input[type=tel]:focus,
.clubs-database .bid-modal .modal-body .form-group textarea:focus,
.clubs-database .bid-modal .modal-body .form-group select:focus {
  border-color: #000096;
  box-shadow: 0 0 0 2px rgba(0, 0, 150, 0.2);
  outline: none;
}
.clubs-database .bid-modal .modal-body .form-group .form-control:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=text]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=email]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=password]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=number]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=date]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group input[type=tel]:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group textarea:-moz-read-only, .clubs-database .bid-modal .modal-body .form-group select:-moz-read-only {
  background-color: #f5f5f5;
}
.clubs-database .bid-modal .modal-body .form-group .form-control:read-only, .clubs-database .bid-modal .modal-body .form-group input[type=text]:read-only,
.clubs-database .bid-modal .modal-body .form-group input[type=email]:read-only,
.clubs-database .bid-modal .modal-body .form-group input[type=password]:read-only,
.clubs-database .bid-modal .modal-body .form-group input[type=number]:read-only,
.clubs-database .bid-modal .modal-body .form-group input[type=date]:read-only,
.clubs-database .bid-modal .modal-body .form-group input[type=tel]:read-only,
.clubs-database .bid-modal .modal-body .form-group textarea:read-only,
.clubs-database .bid-modal .modal-body .form-group select:read-only {
  background-color: #f5f5f5;
}
.clubs-database .bid-modal .modal-body .form-group .input-group {
  display: flex;
}
.clubs-database .bid-modal .modal-body .form-group .input-group .form-control, .clubs-database .bid-modal .modal-body .form-group .input-group input[type=text],
.clubs-database .bid-modal .modal-body .form-group .input-group input[type=email],
.clubs-database .bid-modal .modal-body .form-group .input-group input[type=password],
.clubs-database .bid-modal .modal-body .form-group .input-group input[type=number],
.clubs-database .bid-modal .modal-body .form-group .input-group input[type=date],
.clubs-database .bid-modal .modal-body .form-group .input-group input[type=tel],
.clubs-database .bid-modal .modal-body .form-group .input-group textarea,
.clubs-database .bid-modal .modal-body .form-group .input-group select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
}
.clubs-database .bid-modal .modal-body .form-group .input-group .input-group-append {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.clubs-database .bid-modal .modal-body .form-group .form-text {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
.clubs-database .bid-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f0f0;
}
.clubs-database .bid-modal .modal-footer .btn-cancel {
  background-color: #f0f0f0;
  color: #1a1a2e;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .bid-modal .modal-footer .btn-cancel:hover {
  background-color: #e0e0e0;
}
.clubs-database .bid-modal .modal-footer .btn-submit {
  background-color: #000096;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clubs-database .bid-modal .modal-footer .btn-submit:hover:not(:disabled) {
  background-color: #000063;
}
.clubs-database .bid-modal .modal-footer .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.section-slider {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-color: #000033;
  border: 2px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 150, 0.5);
  margin-bottom: 2rem;
}

.section-slide {
  display: none;
  padding: 2rem;
  animation-duration: 0.5s;
  position: relative;
  min-height: 400px;
}
.section-slide.active {
  display: block;
}
.section-slide h2 {
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Russo One", sans-serif;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.section-content {
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 5;
}

.section-nav {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.section-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-nav-dot.active {
  background-color: #FFD700;
  transform: scale(1.2);
}

.section-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 150, 0.7);
  color: #FFD700;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.section-arrow:hover {
  background-color: rgba(0, 0, 150, 0.9);
}
.section-arrow.prev {
  left: 1rem;
}
.section-arrow.next {
  right: 1rem;
}

.section-image {
  position: absolute;
  max-width: 200px;
  max-height: 200px;
  z-index: 1;
}
.section-image.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-image.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-image.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-image.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.linked-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.linked-page-card {
  background-color: #000096;
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.linked-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: #0000c9;
}

.fade-in {
  animation-name: fadeIn;
}

.fade-out {
  animation-name: fadeOut;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.admin-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-button {
  background-color: #000096;
  color: #ffffff;
  border: 2px solid #FFD700;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.admin-button:hover {
  transform: scale(1.1);
  background-color: #0000c9;
}

.page-content {
  background-color: #f5f5f5;
  min-height: 500px;
}
.page-content h1 {
  color: #FFD700;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: "Russo One", sans-serif;
}
.page-content h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #FFD700;
}

.page-sections {
  margin-bottom: 2rem;
}
.page-sections .section-navigation button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.page-sections .section-navigation button:hover:not([disabled]) {
  transform: scale(1.05);
}
.page-sections .section-navigation .section-indicators button {
  transition: all 0.3s ease;
}
.page-sections .section-item {
  transition: all 0.3s ease;
}
.page-sections .section-item .section-header {
  background-color: #000096;
}
.page-sections .section-item .section-header h2 {
  font-family: "Russo One", sans-serif;
}
.page-sections .section-item .section-content {
  color: #333;
  line-height: 1.6;
  font-family: "Rajdhani", sans-serif;
}
.page-sections .section-item .section-content img {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.page-sections .section-item .section-content img:hover {
  transform: scale(1.02);
}
.page-sections .section-item .section-content table tr td, .page-sections .section-item .section-content table tr th {
  padding: 5px 30px;
  border-bottom: 1px solid #ddd;
}

.page-admin .page-form {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.page-admin .section-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f8fafc;
  position: relative;
}
.page-admin .section-item.editing {
  background-color: rgba(0, 0, 150, 0.05);
  border-color: #000096;
}
.page-admin .section-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.public-tasks-container .public-tasks table tr td .material-icons {
  font-size: 14px;
}
.public-tasks-container .public-tasks table tr td p:last-child {
  margin-bottom: 0;
}

.task-board-container .task-column .task-card .material-icons {
  font-size: 14px;
}

.show-view-modal .priority .material-icons, .show-view-modal .type .material-icons {
  font-size: 14px;
}

.profile-section {
  position: relative;
  background: linear-gradient(135deg, #00006e, #000096);
  min-height: calc(100vh - 120px);
  padding-bottom: 2.5rem;
}
.profile-section .alert {
  background: #068606;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  display: flex;
}
.profile-section .alert.alert-info {
  background: #1E90FF;
}
.profile-section .profile-header {
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.profile-section .profile-header h1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  letter-spacing: 0.025em;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.profile-section .profile-header h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFD700;
  border-radius: 0.25rem;
}
.profile-section .profile-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.profile-section .profile-content .profile-tabs-container {
  display: flex;
}
.profile-section .profile-content .profile-tabs-container .profile-sidebar {
  background: rgb(0, 0, 137);
  padding: 0;
  position: sticky;
  height: 290px;
  top: 0;
}
@media (max-width: 768px) {
  .profile-section .profile-content .profile-tabs-container .profile-sidebar {
    display: none;
    height: 210px;
    top: 85px;
  }
}
.profile-section .profile-content .profile-tabs-container .profile-main {
  flex: 1;
  padding: 1.5rem 2.5rem;
  background: #fff;
}
@media (max-width: 768px) {
  .profile-section .profile-content .profile-tabs-container .profile-main {
    padding: 0.5rem;
    flex: auto;
  }
}
.profile-section .nav-profile {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-section .nav-profile .nav-item {
  margin-bottom: 2px;
}
.profile-section .nav-profile .nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
  text-decoration: none;
}
.profile-section .nav-profile .nav-link .material-icons {
  margin-right: 1rem;
  font-size: 24px;
}
@media (max-width: 768px) {
  .profile-section .nav-profile .nav-link span {
    display: none;
  }
}
.profile-section .nav-profile .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.profile-section .nav-profile .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-left: 4px solid #FFD700;
}
@media (max-width: 768px) {
  .profile-section .nav-profile .nav-link {
    padding: 0.5rem;
  }
  .profile-section .nav-profile .nav-link .material-icons {
    margin-right: 0;
  }
}
.profile-section .tab-content .tab-pane h3 {
  color: #000096;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #FFD700;
}
.profile-section .info-section {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .profile-section .info-section {
    padding: 8px;
  }
}
.profile-section .info-section h4 {
  color: #000096;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.profile-section .info-section h4 .material-icons {
  margin-right: 0.5rem;
}

.ranking-upload .ranking-preview {
  border: 2px dashed #000096;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.ranking-upload .ranking-preview:hover {
  border-color: #FFD700;
  background-color: rgba(10, 10, 10, 0.8);
}
.ranking-upload .ranking-preview:hover h5, .ranking-upload .ranking-preview:hover .upload-icon i {
  color: #fff;
}
.ranking-upload .ranking-preview .upload-icon {
  font-size: 48px;
  color: #000096;
  margin-bottom: 1rem;
}
.ranking-upload .ranking-preview .upload-text {
  color: #1a1a2e;
  font-weight: 600;
}
.ranking-upload .ranking-image {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.06);
  border: 3px solid #fff;
  transition: all 0.3s ease;
}
.ranking-upload .ranking-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.ranking-upload .ranking-info {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1.5rem;
  border-left: 3px solid #000096;
}
.ranking-upload .ranking-info h5 {
  color: #000096;
  font-weight: 700;
  margin-bottom: 1rem;
}
.ranking-upload .ranking-info .info-item {
  display: flex;
  margin-bottom: 0.5rem;
}
.ranking-upload .ranking-info .info-item strong {
  min-width: 150px;
  color: #1a1a2e;
}
.ranking-upload .ranking-info .info-item span {
  color: #000096;
  font-weight: 600;
}
.ranking-upload .profile-card-header h3 {
  color: #fff;
}
@keyframes uploadPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 150, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 150, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 150, 0);
  }
}
.ranking-upload .btn-upload {
  animation: uploadPulse 2s infinite;
}

@keyframes scanline {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
@keyframes club-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
.fighting-game-container {
  background: linear-gradient(135deg, #000096 0%, #0000c9 50%, #000096 100%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 150, 0.5);
}
.fighting-game-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  animation: scanline 2s linear infinite;
}

.fighting-game-header {
  background: linear-gradient(90deg, #000063, #000096, #000063);
  color: #fff;
  padding: 15px;
  text-align: center;
  font-family: "Russo One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  border-bottom: 3px solid #ffcc00;
}
.fighting-game-header h2 {
  margin: 0;
  font-size: 2rem;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: #ffcc00;
}

.club-info-card {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffcc00;
  border-radius: 5px;
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.club-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
}
.club-info-card.pulse {
  animation: club-pulse 2s infinite;
}

.club-info-title {
  font-family: "Bungee", cursive;
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-shadow: 2px 2px 0 #000;
}

.stat-bar {
  height: 20px;
  background: #333;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}
.stat-bar .stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff3300, #ff9900);
  border-radius: 10px;
  transition: width 0.8s ease-in-out;
}
.stat-bar .stat-label {
  position: absolute;
  top: 0;
  left: 10px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000;
}

.vs-text {
  font-family: "Anton", sans-serif;
  font-size: 4rem;
  color: #ff3300;
  text-align: center;
  margin: 20px 0;
  text-shadow: 3px 3px 0 #000;
  letter-spacing: 5px;
  transform: skewX(-15deg);
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.staff-card {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #3399ff;
  border-radius: 5px;
  color: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.staff-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}
.staff-card.border-yellow-400 {
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5), 0 0 20px rgba(255, 204, 0, 0.3);
}

.staff-name {
  font-family: "Russo One", sans-serif;
  color: #3399ff;
  font-size: 1.3rem;
  text-shadow: 1px 1px 0 #000;
}

.staff-job {
  font-family: "Rajdhani", sans-serif;
  color: #ffcc00;
  font-size: 1rem;
  font-weight: 600;
}

.staff-level {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.staff-level .level-star {
  color: #ffcc00;
  margin-right: 2px;
}
.staff-level .level-star.inactive {
  color: #333;
}

.staff-details {
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  margin-top: 10px;
}
.staff-details.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.competence-list {
  margin-top: 15px;
}

.competence-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  align-items: center;
}
.competence-item .competence-name {
  color: #fff;
}
.competence-item .competence-name.specialty {
  color: #ffcc00;
  font-weight: bold;
}
.competence-item .competence-level {
  display: flex;
}
.competence-item .competence-pip {
  width: 12px;
  height: 12px;
  background: #333;
  margin-right: 3px;
  border-radius: 50%;
}
.competence-item .competence-pip.filled {
  background: #3399ff;
}
.competence-item .competence-pip.filled.specialty {
  background: #ffcc00;
}

.close-details {
  background: #ff3300;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.close-details:hover {
  background: rgb(204, 40.8, 0);
}

@media (max-width: 768px) {
  .staff-container {
    grid-template-columns: 1fr;
  }
  .vs-text {
    font-size: 3rem;
  }
  .club-info-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .football-field-box {
    padding: 0;
  }
  .football-field-box > div {
    padding: 0;
  }
  .football-field-box > div .field-title {
    display: none;
  }
}

.football-field-container {
  background-image: linear-gradient(to right, #216f21 0%, #3b8a3b 50%, #1f6a1f 100%);
  aspect-ratio: 68/105;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.football-field-container .field-lines {
  position: absolute;
  inset: 0;
}
.football-field-container .field-lines .halfway-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: white;
}
.football-field-container .field-lines .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 12%;
  border: 2px solid white;
  border-radius: 50%;
}
.football-field-container .field-lines .penalty-area-top {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 20%;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
}
.football-field-container .field-lines .penalty-area-bottom {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 20%;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
}
.football-field-container .field-lines .goal-area-top {
  position: absolute;
  top: 0;
  left: 35%;
  right: 35%;
  height: 8%;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
}
.football-field-container .field-lines .goal-area-bottom {
  position: absolute;
  bottom: 0;
  left: 35%;
  right: 35%;
  height: 8%;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid white;
}
.football-field-container .field-lines .lane-left, .football-field-container .field-lines .lane-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.football-field-container .field-lines .lane-left {
  left: 33%;
}
.football-field-container .field-lines .lane-right {
  right: 33%;
}
@media (max-width: 768px) {
  .football-field-container {
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .football-field-container {
    min-height: 400px;
  }
}

.player-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: move;
  z-index: 10;
  transform: translate(-50%, -50%);
  min-width: 150px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.player-marker .player-avatar {
  position: relative;
  background: #0b1535;
  padding: 20px 10px;
  border-radius: 10px;
  border: 3px #164244 solid;
  overflow: hidden;
}
.player-marker .player-avatar:after {
  background: #ffcc00;
  width: 100%;
  height: 20px;
  content: "";
  position: absolute;
  top: 0px;
  left: 25px;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg);
  z-index: 2;
}
.player-marker .player-avatar:before {
  background: #000096;
  width: 100%;
  height: 20px;
  content: "";
  position: absolute;
  bottom: 0px;
  left: -25px;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg);
  z-index: 2;
}
.player-marker .player-avatar .img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 10px;
  border: 2px solid white;
  background: #ffcc00;
  position: relative;
  overflow: hidden;
  z-index: 30;
}
.player-marker .player-avatar .img:after {
  background: #000096;
  width: 100%;
  height: 10px;
  content: "";
  position: absolute;
  top: 13px;
  left: 18px;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg);
  z-index: 2;
}
.player-marker .player-avatar .img:before {
  background: #2f2f2f;
  width: 100%;
  height: 10px;
  content: "";
  position: absolute;
  bottom: 0px;
  left: -18px;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg);
  z-index: 2;
}
.player-marker .player-avatar .img img {
  position: relative;
  z-index: 10;
}
.player-marker .player-avatar .player-rating {
  position: absolute;
  bottom: 12px;
  right: 2px;
  z-index: 50;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 9999px;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 768px) {
  .player-marker .player-avatar .player-rating {
    width: 1.2rem;
    height: 1.2rem;
    bottom: 6px;
  }
}
.player-marker .player-avatar .player-position.badge.position-badge {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  border-radius: 100%;
  left: 3px;
  z-index: 50;
}
@media (max-width: 768px) {
  .player-marker .player-avatar .player-position.badge.position-badge {
    width: 18px;
    height: 18px;
    top: 6px;
  }
}
.player-marker .player-name {
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 0.25rem;
  text-align: center;
  background-color: #000096;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  margin-bottom: -2px;
  z-index: 2;
}
.player-marker .captain-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background-color: #FFD700;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-marker.dragging {
  opacity: 0.8;
  transform: scale(1.1) translate(-50%, -50%);
}
@media (max-width: 768px) {
  .player-marker {
    min-width: 120px;
  }
  .player-marker .player-avatar {
    padding: 10px 8px;
  }
  .player-marker .player-avatar .img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .player-marker .player-name {
    font-size: 0.65rem;
    margin-top: 0.1rem;
  }
}
@media (max-width: 480px) {
  .player-marker {
    min-width: 100px;
  }
  .player-marker .player-avatar {
    padding: 6px;
  }
  .player-marker .player-avatar .img {
    width: 3rem;
    height: 3rem;
  }
  .player-marker .player-name {
    font-size: 0.6rem;
  }
}

.captain-marker .player-avatar img {
  border: 2px solid #FFD700 !important;
}

.player-marker.drop-target {
  z-index: 20;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 22px 28px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3333333333);
  border: 2px dashed #000;
}
.player-marker.drop-target .player-avatar img {
  border: 2px dashed #3b82f6 !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.player-marker.drop-target .player-name {
  background-color: rgba(59, 130, 246, 0.7);
}

.players-list {
  display: flex;
  flex-direction: column;
}
.players-list[data-source=substitute] {
  height: 450px;
}

.player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  transition: all 0.2s ease;
  width: 320px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.player-item:hover {
  background-color: #f3f4f6;
  border-radius: 0.375rem;
}
.player-item.hidden {
  display: none;
}
.player-item.drop-target {
  background-color: rgba(59, 130, 246, 0.2);
  border: 2px dashed #3b82f6;
  border-radius: 0.375rem;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .player-item {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .player-item img {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .formation-page #notification-simulator-button {
    display: none;
  }
  .formation-page header.site-header {
    height: 40px;
  }
  .formation-page header.site-header .container .site-logo img {
    height: 30px;
  }
  .formation-page header.site-header .container nav .mobile-menu-icon {
    width: 18px;
    height: 18px;
  }
  .formation-page main {
    position: fixed;
    background: #fff;
    top: 30px;
    width: 100%;
    left: 0;
  }
  .formation-page main .formations-manager {
    width: 100%;
  }
  .formation-page main .formations-manager > .container {
    padding: 1.5rem 3px;
  }
  .formation-page main .formations-manager h1 {
    display: none;
  }
  .formation-page main .formations-manager .formation-selector {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 4px 12px;
    position: absolute;
    z-index: 20;
    left: 0;
    top: 15px;
  }
  .formation-page main .formations-manager .formation-selector > * {
    display: none;
  }
  .formation-page main .formations-manager .formation-selector:after {
    content: "Choisissez une formation";
    display: flex;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    justify-content: center;
  }
  .formation-page main .formations-manager .formation-selector.open > * {
    display: flex;
  }
  .formation-page main .formations-manager .formation-selector.open:after {
    content: "❌ Fermer";
    background-color: rgb(255, 214.2, 204);
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  .formation-page main .formations-manager .big-container {
    top: 20px;
    position: relative;
  }
  .formation-page main .formations-manager .big-container .players-box {
    position: fixed;
    z-index: 10;
    top: auto;
    bottom: 0;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 6px;
    opacity: 0.8;
  }
  .formation-page main .formations-manager .big-container .players-box > div {
    padding: 10px 0 0 20px;
  }
  .formation-page main .formations-manager .big-container .players-box > * {
    overflow: hidden;
    position: absolute;
    left: -10000px;
    overflow: hidden;
  }
  .formation-page main .formations-manager .big-container .players-box .players-list {
    margin-bottom: 0;
  }
  .formation-page main .formations-manager .big-container .players-box .players-list h2 {
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
    padding: 4px;
    background: #f1f1f1;
    color: #999;
  }
  .formation-page main .formations-manager .big-container .players-box .players-list .player-item {
    gap: 15px;
    max-width: 300px;
    padding: 0.2rem 0.5rem;
  }
  .formation-page main .formations-manager .big-container .players-box .players-list[data-source=substitute] {
    height: 350px;
  }
  .formation-page main .formations-manager .big-container .players-box:after {
    content: "Remplaçant & réserviste";
    display: flex;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    justify-content: center;
  }
  .formation-page main .formations-manager .big-container .players-box:before {
    content: "";
    position: fixed;
    height: 100%;
    top: 35px;
    width: 20px;
    left: 0;
  }
  .formation-page main .formations-manager .big-container .players-box.open {
    left: -15px;
    top: -2%;
    bottom: auto;
    width: auto;
    background: none;
    z-index: 20;
    opacity: 1;
    position: absolute;
    min-height: 100%;
  }
}
@media (max-width: 768px) and (max-height: 750px) {
  .formation-page main .formations-manager .big-container .players-box.open {
    top: -5%;
  }
}
@media (max-width: 768px) {
  .formation-page main .formations-manager .big-container .players-box.open > div {
    padding: 0;
  }
  .formation-page main .formations-manager .big-container .players-box.open > * {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    left: auto;
    margin: 0;
  }
  .formation-page main .formations-manager .big-container .players-box.open:after {
    content: none;
  }
}

/*# sourceMappingURL=app.css.map*/