/* Best Scorers Section */
.best-scorers-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.best-scorers-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.scorers-header {
  margin-bottom: 60px;
}

.scorers-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scorers-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.scorers-title-accent {
  color: #0e54a8;
}

.scorers-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #0e54a8 35%, #00ffe3 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Layout */
.scorers-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

/* Tabs Styling */
.scorers-tabs {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.scorer-tab {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.scorer-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #01ecdc;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.scorer-tab:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(83, 53, 255, 0.2);
}

.scorer-tab.active {
  background: linear-gradient(135deg, #0e54a8 53%, #00ffe3 105%);
  color: #ffffff;
  border-color: #0e54a8;
  box-shadow: 0 6px 20px rgba(90, 53, 255, 0.3);
}

.scorer-tab.active::before {
  transform: scaleY(1);
}

.scorer-tab-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e54a8;
  min-width: 50px;
  transition: color 0.3s ease;
}

.scorer-tab.active .scorer-tab-number {
  color: #ffffff;
}

.scorer-tab-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.scorer-tab.active .scorer-tab-title {
  color: #ffffff;
}

/* Content Styling */
.scorers-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 400px;
  position: relative;
}

.scorers-content::before {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 107, 53, 0.05);
  z-index: 0;
  font-family: 'Poppins', sans-serif;
}

.scorer-content-item {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  position: relative;
  z-index: 1;
}

.scorer-content-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scorer-content-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.scorer-content-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0e54a8 35%, #00ffe3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(80, 65, 255, 0.3);
}

.scorer-content-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.scorer-content-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.scorer-content-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
  .scorers-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scorers-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .scorer-tab {
    margin-bottom: 0;
  }

  .scorers-title {
    font-size: 2rem;
  }

  .scorers-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .best-scorers-section {
    padding: 60px 0;
  }

  .scorers-tabs {
    grid-template-columns: 1fr;
  }

  .scorer-tab {
    padding: 15px;
  }

  .scorer-tab-number {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .scorer-tab-title {
    font-size: 1rem;
  }

  .scorers-content {
    padding: 25px;
    min-height: 350px;
  }

  .scorers-content::before {
    font-size: 5rem;
    right: 20px;
  }

  .scorer-content-icon {
    width: 60px;
    height: 60px;
  }

  .scorer-content-icon i {
    font-size: 1.5rem;
  }

  .scorer-content-title {
    font-size: 1.5rem;
  }

  .scorer-content-description {
    font-size: 1rem;
  }

  .scorers-logo {
    width: 100px;
  }

  .scorers-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .scorer-tab {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .scorer-tab-number {
    font-size: 1.3rem;
  }

  .scorers-content {
    padding: 20px;
  }

  .scorer-content-header {
    flex-direction: column;
    text-align: center;
  }
}
