.ranking-container-custom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ranking-table-custom {
  width: 100%;
  border-collapse: collapse;
  background-color: #000000;
  border: 2px solid #FFFFFF;
}

.ranking-table-custom thead {
  background-color: #000000;
}

.ranking-table-custom thead th {
  color: #FF0000;
  font-weight: 700;
  font-size: 18px;
  padding: 15px;
  text-align: center;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ranking-table-custom tbody tr {
  border-bottom: 1px solid #FFFFFF;
}

.ranking-table-custom tbody tr:hover {
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.ranking-table-custom tbody tr.top-10 {
  background-color: #0a0a0a;
}

.ranking-table-custom tbody tr.top-10:hover {
  background-color: #1f1f1f;
}

.ranking-table-custom tbody td {
  color: #FFFFFF;
  padding: 12px 15px;
  font-size: 16px;
  border-left: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}

.ranking-table-custom tbody td:first-child {
  text-align: center;
  font-weight: 600;
  width: 15%;
}

.ranking-table-custom tbody td:nth-child(2) {
  text-align: left;
  width: 55%;
}

.ranking-table-custom tbody td:last-child {
  text-align: center;
  font-weight: 600;
  width: 30%;
  color: #FFD700;
}

.ranking-table-custom .position-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.ranking-table-custom .pos-4 { 
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); 
}

.ranking-table-custom .pos-5 { 
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%); 
}

.ranking-table-custom .pos-6 { 
  background: linear-gradient(135deg, #FF8C00 0%, #FF6347 100%); 
}

.ranking-table-custom .pos-7 { 
  background: linear-gradient(135deg, #FF6347 0%, #CD853F 100%); 
}

.ranking-table-custom .pos-8 { 
  background: linear-gradient(135deg, #CD853F 0%, #C0C0C0 100%); 
}

.ranking-table-custom .pos-9 { 
  background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%); 
}

.ranking-table-custom .pos-10 { 
  background: linear-gradient(135deg, #A9A9A9 0%, #808080 100%); 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ranking-table-custom thead th {
    font-size: 14px;
    padding: 10px 5px;
  }
  
  .ranking-table-custom tbody td {
    font-size: 14px;
    padding: 10px 8px;
  }
  
  .ranking-table-custom .position-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .ranking-table-custom tbody td:first-child {
    width: 20%;
  }
  
  .ranking-table-custom tbody td:nth-child(2) {
    width: 50%;
    font-size: 13px;
  }
  
  .ranking-table-custom tbody td:last-child {
    width: 30%;
  }
}