﻿/*Info-shimmer*/
.container-shimmer {
  display: grid;
  grid-template-columns:1fr 320px;
  gap: 20px;
}
.container-shimmer .card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.container-shimmer .shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: info-shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes info-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}
.container-shimmer .sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container-shimmer .download-section .shimmer-section-title,
.container-shimmer .follow-section .shimmer-section-title {
  height: 24px;
  width: 150px;
  margin-bottom: 16px;
}
.container-shimmer .download-item,
.container-shimmer .social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.container-shimmer .icon-shimmer {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.container-shimmer .text-shimmer {
  height: 20px;
  flex: 1;
}
.container-shimmer  .match-card {
  background: #fff;
  color: white;
  min-height: 300px;
}
.container-shimmer .match-header {
  height: 24px;
  width: 60%;
  margin: 0 auto 32px;
}
.container-shimmer .team-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.container-shimmer .team-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.container-shimmer .team-name {
  height: 24px;
  flex: 1;
  max-width: 200px;
}
.container-shimmer .status-badge {
  height: 28px;
  width: 100px;
  margin-left: auto;
}
.container-shimmer .score-line {
  height: 20px;
  width: 80px;
  margin-bottom: 24px;
}
.container-shimmer .divider {
  height: 1px;
  background: #fff;
  margin: 24px 0;
}
.container-shimmer  .schedule-info {
  height: 20px;
  width: 70%;
  margin: 0 auto;
}
.container-shimmer  .details-section .section-title {
  height: 24px;
  width: 150px;
  margin-bottom: 20px;
}
.container-shimmer .detail-row {
  margin-bottom: 16px;
}
.container-shimmer .detail-label {
  height: 16px;
  width: 120px;
  margin-bottom: 8px;
}
.container-shimmer .detail-value {
  height: 20px;
  width: 100%;
}
.container-shimmer .detail-value.short {
  width: 60%;
}
.container-shimmer .detail-value.medium {
  width: 80%;
}


/* SHIMMER ANIMATION */
@keyframes cricketShimmerEffect {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}
.cricket-shimmer-light {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: cricketShimmerEffect 2s infinite linear;
  border-radius: 8px;
}
.cricket-shimmer-white {
  background: linear-gradient(90deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
  background-size: 1000px 100%;
  animation: cricketShimmerEffect 2s infinite linear;
  border-radius: 8px;
}
.cricket-match-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cricket-match-summary-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}
.cricket-match-heading-shimmer {
  height: 24px;
  width: 70%;
  margin-bottom: 32px;
}
.cricket-team-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.cricket-team-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cricket-team-details-wrapper {
  flex: 1;
}
.cricket-team-name-shimmer {
  height: 20px;
  width: 60%;
  margin-bottom: 8px;
}
.cricket-team-score-shimmer {
  height: 28px;
  width: 40%;
}
.cricket-match-status-shimmer {
  height: 20px;
  width: 50%;
  margin: 24px 0;
}
.cricket-content-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}
.cricket-project-score-shimmer {
  height: 20px;
  width: 60%;
  margin: 24px auto;
}
.cricket-stats-column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cricket-stats-white-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}
.cricket-stats-title-shimmer {
  height: 20px;
  width: 40%;
  margin-bottom: 16px;
}
.cricket-score-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.cricket-score-box-item {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cricket-score-number-shimmer {
  height: 36px;
  width: 40px;
  margin: 0 auto 12px;
}
.cricket-score-label-shimmer {
  height: 16px;
  width: 80%;
  margin: 0 auto;
}
.cricket-data-table-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}
.cricket-table-header-row {
  background: #f5f5f5;
  padding: 16px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}
.cricket-header-cell-shimmer {
  height: 16px;
  width: 70%;
}
.cricket-table-body-section {
  padding: 24px 16px;
}
.cricket-empty-state-shimmer {
  height: 20px;
  width: 50%;
  margin: 0 auto;
}
.cricket-data-row-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cricket-cell-value-shimmer {
  height: 16px;
  width: 90%;
}
.cricket-points-table-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}
.cricket-points-title-shimmer {
  height: 28px;
  width: 150px;
  margin-bottom: 32px;
}
.cricket-group-section-wrapper {
  margin-bottom: 32px;
}
.cricket-group-heading-shimmer {
  height: 20px;
  width: 200px;
  margin-bottom: 16px;
}
.cricket-points-data-table {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.cricket-points-header-row {
  background: #f5f5f5;
  padding: 16px;
  display: grid;
  grid-template-columns: 3fr repeat(6, 1fr);
  gap: 8px;
}
.cricket-points-header-shimmer {
  height: 16px;
  width: 60%;
}
.cricket-points-team-row {
  padding: 16px;
  display: grid;
  grid-template-columns: 3fr repeat(6, 1fr);
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.cricket-points-value-shimmer {
  height: 16px;
  width: 80%;
}

/*Scorecard-shimmer*/
@keyframes shimmerLoadingEffect {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.loader-shimmer-element {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: shimmerLoadingEffect 2s infinite linear;
  border-radius: 6px;
}
.loader-shimmer-dark-element {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: shimmerLoadingEffect 2s infinite linear;
  border-radius: 6px;
}
.match-details-container-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.match-scorecard-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-score-header-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.team-header-name-loader {
  height: 24px;
  width: 250px;
}
.team-header-score-loader {
  height: 28px;
  width: 120px;
}
.batting-stats-table-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.batting-table-header-row {
  background: #fafafa;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.batting-header-cell-loader {
  height: 16px;
  width: 70%;
}
.batting-extras-row {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.batting-extras-text-loader {
  height: 16px;
  width: 120px;
}
.batting-yet-to-bat-section {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.batting-label-loader {
  height: 16px;
  width: 100px;
  margin-bottom: 8px;
}
.batting-players-list-loader {
  height: 16px;
  width: 90%;
}
.batting-fall-wickets-section {
  padding: 16px 20px;
}
.batting-fall-label-loader {
  height: 16px;
  width: 120px;
  margin-bottom: 8px;
}
.batting-fall-text-loader {
  height: 16px;
  width: 200px;
}
.bowling-stats-table-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bowling-table-header-row {
  background: #fafafa;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 2fr repeat(8, 1fr);
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.bowling-header-cell-loader {
  height: 16px;
  width: 70%;
}
.bowling-data-row {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 2fr repeat(8, 1fr);
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.bowling-cell-value-loader {
  height: 16px;
  width: 80%;
}
.match-additional-stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stats-info-card-wrapper {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.stats-card-title-loader {
  height: 20px;
  width: 150px;
  margin-bottom: 20px;
}
.stats-card-table-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 12px;
}
.stats-table-header-loader {
  height: 16px;
  width: 70%;
}
.stats-card-data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.stats-table-cell-loader {
  height: 16px;
  width: 85%;
}
.stats-card-single-row {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.stats-single-label-loader {
  height: 16px;
  width: 100px;
  margin-bottom: 8px;
}
.stats-single-value-loader {
  height: 16px;
  width: 70%;
}
.points-standings-table-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.points-main-title-loader {
  height: 28px;
  width: 150px;
  margin-bottom: 32px;
}
.points-group-container {
  margin-bottom: 32px;
}
.points-group-title-loader {
  height: 20px;
  width: 220px;
  margin-bottom: 16px;
}
.points-standings-table {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.points-table-header-row {
  background: #fafafa;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 2.5fr repeat(6, 1fr);
  gap: 10px;
}
.points-table-header-loader {
  height: 16px;
  width: 65%;
}
.points-team-data-row {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 2.5fr repeat(6, 1fr);
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.points-team-cell-loader {
  height: 16px;
  width: 75%;
}

/*Squads-shimmer*/
@keyframes cm-shimmer-animation {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.cm-shimmer-light {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: cm-shimmer-animation 2s infinite linear;
  border-radius: 6px;
}
.cm-squad-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cm-squad-header {
  background: #f8f8f8;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.cm-team-info-left,
.cm-team-info-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cm-team-logo-shimmer {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  flex-shrink: 0;
}
.cm-team-name-shimmer {
  height: 24px;
  width: 220px;
}
.cm-squad-title-section {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.cm-squad-title-shimmer {
  height: 28px;
  width: 180px;
  margin: 0 auto;
}
.cm-players-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cm-player-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}
.cm-player-row:nth-child(even) {
  border-right: none;
}
.cm-player-avatar-shimmer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cm-player-name-shimmer {
  height: 20px;
  flex: 1;
  max-width: 180px;
}
.cm-player-badge-shimmer {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cm-player-right-section {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cm-player-name-right-shimmer {
  height: 20px;
  width: 150px;
}
.cm-player-avatar-right-shimmer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ch-shimmer-anim-light {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes ch-shimmer-anim-dark {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.ch-shimmer-light-base {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: ch-shimmer-anim-light 2s infinite linear;
  border-radius: 4px;
}
.ch-shimmer-dark-base {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: ch-shimmer-anim-light 2s infinite linear;
  border-radius: 4px;
}

/*Points-table-shimmer*/

.ch-points-table-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}
.ch-group-card-container {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.ch-group-title-area {
  background: white;
  padding: 16px 24px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}
.ch-title-shimmer-element {
  height: 20px;
  width: 220px;
  margin: 0 auto;
}
.ch-header-row-section {
  background: #FFF;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.ch-header-cell-shimmer {
  height: 16px;
  width: 70%;
}
.ch-team-data-row {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.ch-team-data-row:last-child {
  border-bottom: none;
}
.ch-team-details-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-logo-shimmer-square {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
}
.ch-name-shimmer-line {
  height: 18px;
  flex: 1;
  max-width: 200px;
}
.ch-stat-shimmer-box {
  height: 18px;
  width: 24px;
}
.ch-icon-shimmer-block {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-left: auto;
}

/*Commentary-shimmer*/
@keyframes final-shimmer-wave {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.final-shimmer-element {
  background: linear-gradient(90deg, #e8e8e8 0%, #d8d8d8 50%, #e8e8e8 100%);
  background-size: 1000px 100%;
  animation: final-shimmer-wave 2s infinite linear;
  border-radius: 6px;
}
.final-layout-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
}
.final-sidebar-container {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;
}
.final-preview-section {
  padding: 14px 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.final-preview-label {
  height: 20px;
  width: 80px;
}
.final-main-header {
  padding: 18px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.final-header-text {
  height: 20px;
  width: 220px;
}
.final-header-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
.final-menu-option {
  padding: 16px 20px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.final-menu-option:last-child {
  border-bottom: none;
}
.final-option-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.final-option-text {
  height: 18px;
  flex: 1;
  max-width: 160px;
}
.final-commentary-container {
  background: white;
  overflow: hidden;
}
.final-ball-wrapper {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f8f8;
}
.final-ball-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.final-over-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.final-ball-text {
  flex: 1;
}
.final-ball-heading {
  height: 20px;
  width: 65%;
  max-width: 320px;
  margin-bottom: 10px;
}
.final-ball-details {
  height: 16px;
  width: 90%;
  max-width: 620px;
}
.final-alert-section {
  padding: 18px 20px;
  background: #f0f0f0;
  margin: 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.final-alert-title {
  height: 18px;
  width: 150px;
  margin: 0 auto 8px auto;
}
.final-alert-content {
  height: 16px;
  width: 480px;
  max-width: 90%;
  margin: 0 auto;
}
.final-summary-box {
  padding: 16px 20px;
  background: #f5f5f5;
  margin: 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.final-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.final-summary-label {
  height: 18px;
  width: 130px;
}
.final-summary-score {
  height: 18px;
  width: 90px;
}
.final-stats-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.final-runs-label {
  height: 16px;
  width: 80px;
}
.final-crr-label {
  height: 16px;
  width: 65px;
}
.final-batsmen-box {
  background: white;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.final-batsman-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.final-batsman-flex:last-child {
  margin-bottom: 0;
}
.final-batsman-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.final-batsman-name {
  height: 16px;
  width: 130px;
}
.final-batsman-runs {
  height: 16px;
  width: 45px;
}
.final-bowler-stats {
  height: 16px;
  width: 180px;
}

/*Over-shimmer*/
.cricket-shimmer-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f5f5f5;
  padding: 20px;
  min-height: 100vh;
}
.cricket-shimmer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.cricket-shimmer-preview {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, .125);
}
.cricket-shimmer-preview-header {
  background: #333;
  color: white;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 12px;
  visibility: hidden;
}
.cricket-shimmer-preview-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cricket-shimmer-menu-item {
  padding: 12px;
  background: #f0f0f0;
  border-radius: 4px;
  height: 40px;
}
.cricket-shimmer-overs-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes cricket-shimmer-animation {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}
.cricket-shimmer-effect {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: cricket-shimmer-animation 2s infinite;
}
.cricket-shimmer-container .over {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, .125);
}
.cricket-shimmer-container .over-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cricket-shimmer-container .over-label {
  height: 20px;
  width: 45px;
  border-radius: 4px;
  flex-shrink: 0;
}
.cricket-shimmer-container .over-info {
  flex: 1;
}
.cricket-shimmer-container .over-title {
  height: 18px;
  border-radius: 4px;
  margin-bottom: 6px;
  width: 65%;
}
.cricket-shimmer-container .over-subtitle {
  height: 14px;
  border-radius: 4px;
  width: 45%;
}
.cricket-shimmer-container .over-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cricket-shimmer-container .over-ball {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.over-first .over-label {
  animation-delay: 0s;
}
.over-first .over-title {
  animation-delay: 0.1s;
}
.over-first .over-subtitle {
  animation-delay: 0.15s;
}
.over-first .over-ball:nth-child(1) {
  animation-delay: 0.2s;
}
.over-first .over-ball:nth-child(2) {
  animation-delay: 0.25s;
}
.over-second .over-label {
  animation-delay: 0.2s;
}
.over-second .over-title {
  animation-delay: 0.25s;
}
.over-second .over-subtitle {
  animation-delay: 0.3s;
}
.over-second .over-ball:nth-child(1) {
  animation-delay: 0.35s;
}
.over-second .over-ball:nth-child(2) {
  animation-delay: 0.4s;
}
.over-second .over-ball:nth-child(3) {
  animation-delay: 0.45s;
}
.over-second .over-ball:nth-child(4) {
  animation-delay: 0.5s;
}
.over-second .over-ball:nth-child(5) {
  animation-delay: 0.55s;
}
.over-third .over-label {
  animation-delay: 0.4s;
}
.over-third .over-title {
  animation-delay: 0.45s;
}
.over-third .over-subtitle {
  animation-delay: 0.5s;
}
.over-third .over-ball:nth-child(1) {
  animation-delay: 0.55s;
}
.over-third .over-ball:nth-child(2) {
  animation-delay: 0.6s;
}
.over-third .over-ball:nth-child(3) {
  animation-delay: 0.65s;
}
.over-third .over-ball:nth-child(4) {
  animation-delay: 0.7s;
}
.over-third .over-ball:nth-child(5) {
  animation-delay: 0.75s;
}
.over-third .over-ball:nth-child(6) {
  animation-delay: 0.8s;
}
.cricket-shimmer-menu-item:nth-child(1) {
  animation: cricket-shimmer-animation 2s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation-delay: 0s;
}
.cricket-shimmer-menu-item:nth-child(2) {
  animation: cricket-shimmer-animation 2s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation-delay: 0.1s;
}


/*MVP-shimmer*/
.mvp-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
}
@keyframes mvp-shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}
.mvp-shimmer {
  animation: mvp-shimmer 2s infinite linear;
  background: linear-gradient(to right, #eff1f3 4%, #e2e5e7 25%, #eff1f3 36%);
  background-size: 1000px 100%;
}
.mvp-shimmer-light {
  animation: mvp-shimmer 2s infinite linear;
  background: linear-gradient(to right, #eff1f3 4%, #e2e5e7 25%, #eff1f3 36%);
  background-size: 1000px 100%;
}
.mvp-left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mvp-player-card {
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.mvp-card-header {
  height: 18px;
  width: 140px;
  border-radius: 4px;
  margin: 0 auto 25px;
}
.mvp-player-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.3);
}
.mvp-player-name {
  height: 20px;
  width: 130px;
  border-radius: 4px;
  margin: 0 auto 10px;
}
.mvp-player-role {
  height: 16px;
  width: 110px;
  border-radius: 4px;
  margin: 0 auto;
}
.mvp-center-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mvp-match-card {
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.mvp-match-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mvp-match-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.mvp-match-text {
  height: 16px;
  width: 280px;
  border-radius: 4px;
}
.mvp-team-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mvp-team-row:last-of-type {
  border-bottom: none;
}
.mvp-team-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mvp-team-info {
  flex: 1;
}
.mvp-team-name {
  height: 18px;
  width: 220px;
  border-radius: 4px;
  margin-bottom: 0;
}
.mvp-team-score {
  height: 32px;
  width: 100px;
  border-radius: 6px;
  margin-left: auto;
}
.mvp-match-status {
  height: 16px;
  width: 180px;
  border-radius: 4px;
  margin-top: 20px;
}
.mvp-details-card {
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.mvp-section-header {
  height: 20px;
  width: 220px;
  border-radius: 4px;
  margin-bottom: 25px;
}
.mvp-player-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.mvp-mvp-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mvp-mvp-details {
  flex: 1;
}
.mvp-mvp-name {
  height: 20px;
  width: 160px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.mvp-mvp-role {
  height: 16px;
  width: 120px;
  border-radius: 4px;
}
.mvp-rating-box {
  width: 70px;
  height: 60px;
  border-radius: 10px;
  flex-shrink: 0;
}
.mvp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.mvp-stat-box {
  height: 45px;
  border-radius: 8px;
}
.mvp-right-column {
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.mvp-details-header {
  height: 18px;
  width: 110px;
  border-radius: 4px;
  margin-bottom: 25px;
}
.mvp-info-item {
  margin-bottom: 20px;
}
.mvp-info-label {
  height: 14px;
  width: 120px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.mvp-info-value {
  height: 18px;
  width: 100%;
  border-radius: 4px;
}


/*Search-shimmer*/

.search-shimmer {
  width: 100%;
  max-width: 1680px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin: 0 auto;
}
.search-shimmer__container {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.search-shimmer__input {
  flex: 1;
  min-width: 200px;
  height: 48px;
  background: #f7fafc;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: cricketShimmerEffect 2s infinite linear;
  border-radius: 8px;
}
.search-shimmer__input--medium {
  flex: 0.8;
  min-width: 180px;
}
.search-shimmer__select {
  width: 280px;
  height: 48px;
  background: #f7fafc;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: cricketShimmerEffect 2s infinite linear;
  border-radius: 8px;
}
.search-shimmer__button {
  width: 120px;
  height: 48px;
  background: #3b82f6;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 1000px 100%;
  animation: cricketShimmerEffect 2s infinite linear;
  border-radius: 8px;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.search-shimmer__input::before,
.search-shimmer__select::before,
.search-shimmer__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100% );
  animation: shimmer 1.5s infinite;
}
.search-shimmer__input::before,
.search-shimmer__select::before {
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100% );
}

/*Player-list-shimmer*/
.plyer-list-shimmer {
  max-width: 1680px;
  margin: 0 auto;
  margin-top: 40px;
}
.plyer-list-shimmer__header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.plyer-list-shimmer__count {
  height: 24px;
  width: 150px;
  background: #E2E8F0;
  border-radius: 4px;
}
.plyer-list-shimmer__badge {
  height: 32px;
  width: 140px;
  background: #E2E8F0;
  border-radius: 4px;
}
.plyer-list-shimmer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plyer-list-shimmer__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.plyer-list-shimmer__card-content {
  padding: 16px;
}
.plyer-list-shimmer__card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.plyer-list-shimmer__number {
  width: 28px;
  height: 28px;
  background: #E2E8F0;
  border-radius: 50%;
  flex-shrink: 0;
}
.plyer-list-shimmer__info-wrapper {
  display: flex;
  gap: 12px;
  flex: 1;
}
.plyer-list-shimmer__avatar {
  width: 52px;
  height: 52px;
  background: #E2E8F0;
  border-radius: 50%;
  flex-shrink: 0;
}
.plyer-list-shimmer__details {
  flex: 1;
  padding-top: 2px;
}
.plyer-list-shimmer__name {
  height: 18px;
  width: 85%;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 8px;
}
.plyer-list-shimmer__info-line {
  height: 14px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 5px;
}
.plyer-list-shimmer__info-line--short {
  width: 70%;
}
.plyer-list-shimmer__info-line--medium {
  width: 60%;
}
.plyer-list-shimmer__info-line--long {
  width: 50%;
}
.plyer-list-shimmer__sponsor {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: #E2E8F0;
  border-radius: 6px;
}
.plyer-list-shimmer__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.plyer-list-shimmer__team {
  height: 16px;
  width: 100px;
  background: #E2E8F0;
  border-radius: 3px;
}
.plyer-list-shimmer__price {
  height: 18px;
  width: 80px;
  background: #E2E8F0;
  border-radius: 3px;
}
@keyframes plyer-list-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.plyer-list-shimmer__count,
.plyer-list-shimmer__badge,
.plyer-list-shimmer__number,
.plyer-list-shimmer__avatar,
.plyer-list-shimmer__name,
.plyer-list-shimmer__info-line,
.plyer-list-shimmer__sponsor,
.plyer-list-shimmer__team,
.plyer-list-shimmer__price {
  position: relative;
  overflow: hidden;
}
.plyer-list-shimmer__count::before,
.plyer-list-shimmer__badge::before,
.plyer-list-shimmer__number::before,
.plyer-list-shimmer__avatar::before,
.plyer-list-shimmer__name::before,
.plyer-list-shimmer__info-line::before,
.plyer-list-shimmer__sponsor::before,
.plyer-list-shimmer__team::before,
.plyer-list-shimmer__price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: plyer-list-shimmer 1.5s infinite;
}

/*Top-buys-shimmer*/
.top-buys {
  max-width: 1680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.top-buys__table {
  width: 100%;
  border-collapse: collapse;
}
.top-buys__header {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.top-buys__header-row {
  display: grid;
  grid-template-columns: 60px 100px 1fr 150px 150px 250px;
  gap: 20px;
  padding: 16px 24px;
  align-items: center;
}
.top-buys__header-cell {
  height: 18px;
  background: #E2E8F0;
  border-radius: 3px;
}
.top-buys__header-cell--small {
  width: 30px;
}
.top-buys__header-cell--medium {
  width: 60px;
}
.top-buys__header-cell--large {
  width: 80px;
}
.top-buys__header-cell--price {
  width: 90px;
}
.top-buys__header-cell--team {
  width: 60px;
}
.top-buys__body {
  background: #ffffff;
}
.top-buys__row {
  display: grid;
  grid-template-columns: 60px 100px 1fr 150px 150px 250px;
  gap: 20px;
  padding: 20px 24px;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.top-buys__row:last-child {
  border-bottom: none;
}
.top-buys__cell {
  display: flex;
  align-items: center;
}
.top-buys__number {
  height: 16px;
  width: 20px;
  background: #E2E8F0;
  border-radius: 3px;
}
.top-buys__auction-no {
  height: 16px;
  width: 30px;
  background: #E2E8F0;
  border-radius: 3px;
}
.top-buys__player {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-buys__avatar {
  width: 48px;
  height: 48px;
  background: #E2E8F0;
  border-radius: 50%;
  flex-shrink: 0;
}
.top-buys__player-name {
  height: 18px;
  width: 140px;
  background: #E2E8F0;
  border-radius: 3px;
}
.top-buys__price {
  height: 18px;
  width: 80px;
  background: #E2E8F0;
  border-radius: 3px;
}
.top-buys__team-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-buys__team-logo {
  width: 44px;
  height: 44px;
  background: #E2E8F0;
  border-radius: 50%;
  flex-shrink: 0;
}
.top-buys__team-name {
  height: 18px;
  width: 150px;
  background: #E2E8F0;
  border-radius: 3px;
}
@keyframes top-buys-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.top-buys__header-cell,
.top-buys__number,
.top-buys__auction-no,
.top-buys__avatar,
.top-buys__player-name,
.top-buys__price,
.top-buys__team-logo,
.top-buys__team-name {
  position: relative;
  overflow: hidden;
}
.top-buys__header-cell::before,
.top-buys__number::before,
.top-buys__auction-no::before,
.top-buys__avatar::before,
.top-buys__player-name::before,
.top-buys__price::before,
.top-buys__team-logo::before,
.top-buys__team-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: top-buys-shimmer 1.5s infinite;
}



/*Sold-players-shimmer*/
.sold-players {
  max-width: 1680px;
  margin: 0 auto;
}
.sold-players__teams {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sold-players__teams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.sold-players__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.sold-players__team-logo {
  width: 120px;
  height: 120px;
  background: #E2E8F0;
  border-radius: 50%;
  border: 3px solid #e5e7eb;
}
.sold-players__team-name {
  height: 18px;
  width: 140px;
  background: #E2E8F0;
  border-radius: 3px;
}
.sold-players__team-subtitle {
  height: 16px;
  width: 100px;
  background: #E2E8F0;
  border-radius: 3px;
}
.sold-players__table-container {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sold-players__table-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 15px;
}
.sold-players__header-logo {
  width: 50px;
  height: 50px;
  background: #E2E8F0;
  border-radius: 8px;
  flex-shrink: 0;
}
.sold-players__header-title {
  height: 24px;
  width: 300px;
  background: #E2E8F0;
  border-radius: 4px;
}
.sold-players__table {
  width: 100%;
}
.sold-players__table-head {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.sold-players__table-row {
  display: grid;
  grid-template-columns: 80px 120px 1fr 180px 180px;
  gap: 20px;
  padding: 18px 24px;
  align-items: center;
}
.sold-players__table-cell {
  height: 18px;
  background: #E2E8F0;
  border-radius: 3px;
}
.sold-players__table-cell--small {
  width: 30px;
}
.sold-players__table-cell--medium {
  width: 70px;
}
.sold-players__table-cell--large {
  width: 80px;
}
.sold-players__table-cell--price {
  width: 90px;
}
.sold-players__empty {
  padding: 60px 24px;
  text-align: center;
}
.sold-players__empty-text {
  height: 20px;
  width: 150px;
  background: #E2E8F0;
  border-radius: 4px;
  margin: 0 auto;
}
@keyframes sold-players-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.sold-players__team-logo,
.sold-players__team-name,
.sold-players__team-subtitle,
.sold-players__header-logo,
.sold-players__header-title,
.sold-players__table-cell,
.sold-players__empty-text {
  position: relative;
  overflow: hidden;
}
.sold-players__team-logo::before,
.sold-players__team-name::before,
.sold-players__team-subtitle::before,
.sold-players__header-logo::before,
.sold-players__header-title::before,
.sold-players__table-cell::before,
.sold-players__empty-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: sold-players-shimmer 1.5s infinite;
}


/*Unsold-players-shimmer*/
.unsold-players {
  max-width: 1680px;
  margin: 0 auto;
  margin-top: 40px;
}
.unsold-players__badge {
  height: 38px;
  width: 160px;
  background: #E2E8F0;
  border-radius: 6px;
  margin-bottom: 20px;
}
.unsold-players__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.unsold-players__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.unsold-players__number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: #E2E8F0;
  border-radius: 50%;
  z-index: 2;
}
.unsold-players__avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}
.unsold-players__avatar {
  width: 60px;
  height: 60px;
  background: #E2E8F0;
  border-radius: 50%;
}
.unsold-players__details {
  flex: 1;
  padding-left: 40px;
}
.unsold-players__name {
  height: 20px;
  width: 70%;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 10px;
}
.unsold-players__info-line {
  height: 16px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 6px;
}
.unsold-players__info-line--short {
  width: 50%;
}
.unsold-players__info-line--medium {
  width: 60%;
}
.unsold-players__info-line--long {
  width: 45%;
}
@keyframes unsold-players-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.unsold-players__badge,
.unsold-players__number,
.unsold-players__avatar,
.unsold-players__name,
.unsold-players__info-line {
  position: relative;
  overflow: hidden;
}
.unsold-players__badge::before,
.unsold-players__number::before,
.unsold-players__avatar::before,
.unsold-players__name::before,
.unsold-players__info-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: unsold-players-shimmer 1.5s infinite;
}


/*remaining-players-shimmer*/
.remaining-players {
  max-width: 1680px;
  margin: 0 auto;
}
.remaining-players__badge {
  height: 38px;
  width: 160px;
  background: #E2E8F0;
  border-radius: 6px;
  margin-bottom: 20px;
}
.remaining-players__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.remaining-players__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.remaining-players__number {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: #E2E8F0;
  border-radius: 50%;
  z-index: 2;
  border: 3px solid #ffffff;
}
.remaining-players__avatar {
  width: 56px;
  height: 56px;
  background: #E2E8F0;
  border-radius: 50%;
  flex-shrink: 0;
}
.remaining-players__details {
  flex: 1;
}
.remaining-players__name {
  height: 20px;
  width: 75%;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 10px;
}
.remaining-players__info-line {
  height: 16px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 6px;
}
.remaining-players__info-line--short {
  width: 50%;
}
.remaining-players__info-line--medium {
  width: 65%;
}
.remaining-players__info-line--long {
  width: 45%;
}
@keyframes remaining-players-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.remaining-players__badge,
.remaining-players__number,
.remaining-players__avatar,
.remaining-players__name,
.remaining-players__info-line {
  position: relative;
  overflow: hidden;
}
.remaining-players__badge::before,
.remaining-players__number::before,
.remaining-players__avatar::before,
.remaining-players__name::before,
.remaining-players__info-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: remaining-players-shimmer 1.5s infinite;
}


/*match-search-shimmer*/
.match-search {
  /*max-width: 1380px;
  margin-left: auto;
  padding-right: 50px;*/
  margin-top: 15px;
}
.match-search__sidebar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}
.match-search__section {
  margin-bottom: 24px;
}
.match-search__section:last-child {
  margin-bottom: 0;
}
.match-search__section-title {
  height: 20px;
  width: 100px;
  background: #E2E8F0;
  border-radius: 4px;
  margin-bottom: 16px;
}
.match-search__filter-button {
  width: 100%;
  height: 44px;
  background: #E2E8F0;
  border-radius: 6px;
  margin-bottom: 10px;
}
.match-search__filter-button:last-child {
  margin-bottom: 0;
}
.match-search__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.match-search__search-bar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.match-search__search-label {
  height: 20px;
  width: 80px;
  background: #E2E8F0;
  border-radius: 4px;
  flex-shrink: 0;
}
.match-search__search-input {
  flex: 1;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.match-search__search-button {
  width: 280px;
  height: 44px;
  background: #E2E8F0;
  border-radius: 6px;
  flex-shrink: 0;
}
.match-search__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.match-search__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.match-search__card-header {
  background: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.match-search__card-title {
  height: 20px;
  width: 60%;
  background: #E2E8F0;
  border-radius: 4px;
}
.match-search__live-badge {
  height: 28px;
  width: 60px;
  background: #E2E8F0;
  border-radius: 4px;
}
.match-search__card-body {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.match-search__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.match-search__team-logo {
  width: 70px;
  height: 70px;
  background: #E2E8F0;
  border-radius: 8px;
}
.match-search__team-name {
  height: 20px;
  width: 140px;
  background: #E2E8F0;
  border-radius: 4px;
}
.match-search__team-subtitle {
  height: 16px;
  width: 100px;
  background: #E2E8F0;
  border-radius: 3px;
}
.match-search__score {
  height: 32px;
  width: 80px;
  background: #E2E8F0;
  border-radius: 4px;
  margin-top: 8px;
}
.match-search__score-detail {
  height: 14px;
  width: 50px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-top: 6px;
}
.match-search__vs {
  height: 40px;
  width: 60px;
  background: #E2E8F0;
  border-radius: 4px;
  flex-shrink: 0;
}
.match-search__card-footer {
  background: #fff;
  padding: 14px 20px;
}
.match-search__footer-text {
  height: 18px;
  width: 70%;
  background: #E2E8F0;
  border-radius: 3px;
  margin: 0 auto;
}
@keyframes match-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.match-search__section-title,
.match-search__filter-button,
.match-search__search-label,
.match-search__search-input,
.match-search__search-button,
.match-search__card-title,
.match-search__live-badge,
.match-search__team-logo,
.match-search__team-name,
.match-search__team-subtitle,
.match-search__score,
.match-search__score-detail,
.match-search__vs,
.match-search__footer-text {
  position: relative;
  overflow: hidden;
}
.match-search__section-title::before,
.match-search__filter-button::before,
.match-search__search-label::before,
.match-search__search-input::before,
.match-search__search-button::before,
.match-search__card-title::before,
.match-search__live-badge::before,
.match-search__team-logo::before,
.match-search__team-name::before,
.match-search__team-subtitle::before,
.match-search__score::before,
.match-search__score-detail::before,
.match-search__vs::before,
.match-search__footer-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: match-shimmer 1.5s infinite;
}


/*match-search-shimmer*/
.tournaments-shimmer {
  max-width: 1400px;
  margin: 0 auto;
}
.tournaments-shimmer__search {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tournaments-shimmer__search-label {
  height: 20px;
  width: 80px;
  background: #E2E8F0;
  border-radius: 4px;
  flex-shrink: 0;
}
.tournaments-shimmer__search-input {
  flex: 1;
  min-width: 250px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.tournaments-shimmer__filters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.tournaments-shimmer__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tournaments-shimmer__checkbox-box {
  width: 20px;
  height: 20px;
  background: #E2E8F0;
  border-radius: 4px;
}
.tournaments-shimmer__checkbox-label {
  height: 18px;
  width: 60px;
  background: #E2E8F0;
  border-radius: 3px;
}
.tournaments-shimmer__search-button {
  width: 120px;
  height: 44px;
  background: #E2E8F0;
  border-radius: 6px;
  flex-shrink: 0;
}
.tournaments-shimmer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tournaments-shimmer__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
.tournaments-shimmer__card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
}
.tournaments-shimmer__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 32px;
  width: 120px;
  background: #E2E8F0;
  border-radius: 6px;
  z-index: 2;
}
.tournaments-shimmer__card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.tournaments-shimmer__card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: auto 0;
}
.tournaments-shimmer__title {
  height: 28px;
  width: 80%;
  background: #E2E8F0;
  border-radius: 4px;
}
.tournaments-shimmer__subtitle {
  height: 20px;
  width: 60%;
  background: #E2E8F0;
  border-radius: 3px;
}
.tournaments-shimmer__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tournaments-shimmer__date {
  height: 18px;
  width: 150px;
  background: #E2E8F0;
  border-radius: 3px;
}
.tournaments-shimmer__location {
  height: 18px;
  width: 60px;
  background: #E2E8F0;
  border-radius: 3px;
}
@keyframes tournaments-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}
.tournaments-shimmer__search-label,
.tournaments-shimmer__search-input,
.tournaments-shimmer__checkbox-box,
.tournaments-shimmer__checkbox-label,
.tournaments-shimmer__search-button,
/*.tournaments-shimmer__badge,*/
.tournaments-shimmer__title,
.tournaments-shimmer__subtitle,
.tournaments-shimmer__date,
.tournaments-shimmer__location {
  position: relative;
  overflow: hidden;
}
.tournaments-shimmer__search-label::before,
.tournaments-shimmer__search-input::before,
.tournaments-shimmer__checkbox-box::before,
.tournaments-shimmer__checkbox-label::before,
.tournaments-shimmer__search-button::before,
.tournaments-shimmer__badge::before,
.tournaments-shimmer__title::before,
.tournaments-shimmer__subtitle::before,
.tournaments-shimmer__date::before,
.tournaments-shimmer__location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: tournaments-shimmer 1.5s infinite;
}

/*all-tournaments-shimmer*/
.all-tournaments {
  max-width: 1680px;
  margin: 0 auto;
}
.all-tournaments__search {
  background: white;
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}
.all-tournaments__search-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.all-tournaments__search-label {
  font-weight: 600;
  height: 20px;
  width: 70px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__search-input {
  flex: 1;
  min-width: 300px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.all-tournaments__filters {
  display: flex;
  gap: 25px;
  align-items: center;
}
.all-tournaments__filter-item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.all-tournaments__checkbox {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__filter-label {
  height: 16px;
  width: 35px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__filter-label--live {
  width: 40px;
}
.all-tournaments__filter-label--upcoming {
  width: 75px;
}
.all-tournaments__filter-label--completed {
  width: 85px;
}
.all-tournaments__search-btn {
  height: 42px;
  width: 100px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.all-tournaments__card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  border: 1px solid #f0f0f0;
}
.all-tournaments__badge {
  position: absolute;
  top: -12px;
  right: 12px;
  height: 34px;
  width: 95px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__badge--live {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}
.all-tournaments__badge--completed {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}
.all-tournaments__header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.all-tournaments__logo {
  width: 85px;
  height: 85px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__info {
  flex: 1;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.all-tournaments__title {
  height: 20px;
  width: 88%;
  border-radius: 4px;
  background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__subtitle {
  height: 15px;
  width: 70%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__subtitle--long {
  width: 78%;
}
.all-tournaments__subtitle--second {
  margin-top: 4px;
}
.all-tournaments__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.all-tournaments__detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.all-tournaments__icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
  flex-shrink: 0;
}
.all-tournaments__text {
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: all-tournaments-shimmer 1.5s infinite;
}
.all-tournaments__text--short {
  width: 110px;
}
.all-tournaments__text--medium {
  width: 160px;
}
.all-tournaments__text--long {
  width: 90%;
}
.all-tournaments__text--extra-long {
  width: 100%;
}
.all-tournaments__datetime {
  display: flex;
  gap: 20px;
  align-items: center;
}
.all-tournaments__date, .all-tournaments__time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.all-tournaments__icon--calendar {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.all-tournaments__icon--clock {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
@keyframes all-tournaments-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.match-shimmer-public {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.match-shimmer-public .card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.match-shimmer-public .header {
  background: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.match-shimmer-public .header-text {
  height: 20px;
  width: 60%;
  animation: shimmer-animation-match 1.5s infinite;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 200% 100%;
}
.match-shimmer-public .status-badge {
  height: 28px;
  width: 90px;
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
}
.match-shimmer-public .content {
  padding: 30px 20px;
}
.match-shimmer-public .teams-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.match-shimmer-public .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.match-shimmer-public .team-logo {
  height: 80px;
  width: 80px;
  border-radius: 8px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
}
.match-shimmer-public .team-name {
  height: 18px;
  width: 120px;
  border-radius: 4px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
}
.match-shimmer-public .vs-text {
  height: 60px;
  width: 80px;
  border-radius: 8px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
  margin: 0 20px;
}
.match-shimmer-public .ground {
  height: 18px;
  width: 100px;
  margin: 0 auto 20px;
  border-radius: 4px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
}
.match-shimmer-public .footer {
  background: #fff;
  padding: 16px 20px !important;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eee;
}
.match-shimmer-public .schedule-text {
  height: 18px;
  width: 70%;
  background-size: 200% 100%;
  animation: shimmer-animation-match 1.5s infinite;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
}
@keyframes shimmer-animation-match {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.point-table-shimmer-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.point-table-shimmer-box .table-group {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.point-table-shimmer-box .table-title {
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
}
.point-table-shimmer-box .title-text {
  height: 20px;
  width: 180px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
  border-radius: 4px;
}
.point-table-shimmer-box .header-row {
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 60px;
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.point-table-shimmer-box .header-cell {
  height: 18px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
  border-radius: 4px;
  justify-self: center;
}
.point-table-shimmer-box .header-cell:nth-child(1) {
  width: 80px;
}
.point-table-shimmer-box .header-cell:nth-child(n+2) {
  width: 40px;
}
.point-table-shimmer-box .table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 60px;
  gap: 12px;
  padding: 20px;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
.point-table-shimmer-box .table-row:last-child {
  border-bottom: none;
}
.point-table-shimmer-box .team-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.point-table-shimmer-box .team-logo {
  height: 40px;
  width: 40px;
  border-radius: 6px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
}
.point-table-shimmer-box .team-name {
  height: 18px;
  width: 120px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
  border-radius: 4px;
}
.point-table-shimmer-box .stat-cell {
  height: 18px;
  width: 24px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
  border-radius: 4px;
  justify-self: center;
}
.point-table-shimmer-box .dropdown-cell {
  height: 20px;
  width: 20px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: point-table-shimmer-box 1.5s infinite;
  border-radius: 4px;
  justify-self: center;
}

@keyframes point-table-shimmer-box {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.team-shimmer-box {
  max-width: 100%;
  width: 100%;
}
.team-shimmer-box .team-item {
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.team-shimmer-box .team-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.team-shimmer-box .team-item:last-child {
  border-bottom: 1px solid #d0d0d0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.team-shimmer-box .team-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.team-shimmer-box .team-logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient( 90deg, #e0e0e0 0%, #d0d0d0 20%, #e0e0e0 40%, #e0e0e0 100% );
  background-size: 200% 100%;
  animation: team-shimmer-box 1.5s infinite;
}
.team-shimmer-box .team-name {
  height: 20px;
  width: 150px;
  border-radius: 4px;
  background: linear-gradient( 90deg, #e0e0e0 0%, #d0d0d0 20%, #e0e0e0 40%, #e0e0e0 100% );
  background-size: 200% 100%;
  animation: team-shimmer-box 1.5s infinite;
}
.team-shimmer-box .view-profile {
  height: 20px;
  width: 100px;
  border-radius: 4px;
  background: linear-gradient( 90deg, #e0e0e0 0%, #d0d0d0 20%, #e0e0e0 40%, #e0e0e0 100% );
  background-size: 200% 100%;
  animation: team-shimmer-box 1.5s infinite;
}
@keyframes team-shimmer-box {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.team-shimmer-stats {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.team-shimmer-stats .table-container {
  width: 100%;
  overflow-x: auto;
}
.team-shimmer-stats table {
  width: 100%;
  border-collapse: collapse;
}
.team-shimmer-stats .header-row {
  background: #f4f4f4;
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
}
.team-shimmer-stats .header-cell {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: team-shimmer-stats 1.5s infinite;
  border-radius: 4px;
}
.team-shimmer-stats .header-cell:nth-child(1) {
  width: 40px;
}
.team-shimmer-stats .header-cell:nth-child(2) {
  width: 100px;
}
.team-shimmer-stats .header-cell:nth-child(n+3) {
  width: 60px;
}
.team-shimmer-stats .body-row {
display: grid;
grid-template-columns: 60px 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
gap: 12px;
padding: 14px 16px;
align-items: center;
border-bottom: 1px solid #e5e7eb;
}
.team-shimmer-stats .body-row:last-child {
  border-bottom: none;
}
.team-shimmer-stats .body-cell {
  height: 16px;
  background: linear-gradient( 90deg, #f0f0f0 0%, #e0e0e0 20%, #f0f0f0 40%, #f0f0f0 100% );
  background-size: 200% 100%;
  animation: team-shimmer-stats 1.5s infinite;
  border-radius: 4px;
}
.team-shimmer-stats .body-cell:nth-child(1) {
  width: 20px;
}
.team-shimmer-stats .body-cell:nth-child(2) {
  width: 120px;
}
.team-shimmer-stats .body-cell:nth-child(n+3) {
  width: 50px;
}
@keyframes team-shimmer-stats {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.leaderboard-shimmer {
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.leaderboard-shimmer .shimmer-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.leaderboard-shimmer .shimmer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}
.leaderboard-shimmer .shimmer-content {
  flex: 1;
}
.leaderboard-shimmer .shimmer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.leaderboard-shimmer .shimmer-name {
  width: 180px;
  height: 24px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 8px;
}
.leaderboard-shimmer .shimmer-team {
  width: 140px;
  height: 18px;
  background: #e0e0e0;
  border-radius: 4px;
}
.leaderboard-shimmer .shimmer-score {
  width: 60px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 8px;
}
.leaderboard-shimmer .shimmer-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.leaderboard-shimmer .shimmer-stat {
  background: #f5f5f5;
  padding: 10px 16px;
  border-radius: 8px;
  height: 40px;
  flex: 1;
  min-width: 120px;
  background: #e0e0e0;
}
@keyframes leaderboard-shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.leaderboard-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100% );
  animation: leaderboard-shimmer 2s infinite;
  background-size: 1000px 100%;
}
.leaderboard-shimmer .shimmer-avatar,
.leaderboard-shimmer .shimmer-name,
.leaderboard-shimmer .shimmer-team,
.leaderboard-shimmer .shimmer-score,
.leaderboard-shimmer .shimmer-stat {
  background: linear-gradient( 90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75% );
  background-size: 1000px 100%;
  animation: leaderboard-shimmer 2s infinite;
}
.player-profile-team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.player-profile-team-card {
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  gap: 14px;
}
.player-profile-team-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}
.player-profile-team-content {
  flex: 1;
}
.player-profile-team-line {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.player-profile-team-line.title {
  width: 60%;
  height: 16px;
}
.player-profile-team-line.small {
  width: 45%;
}
.player-profile-team-line.tiny {
  width: 30%;
  margin-bottom: 0;
}
.player-profile-team-list .shimmer {
  background: linear-gradient( 90deg, #eeeeee 25%, #f5f5f5 37%, #eeeeee 63% );
  background-size: 400% 100%;
  animation: player-profile-team-shimmer 1.4s ease infinite;
}
@keyframes player-profile-team-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}