.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 80px);
}

.main-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.table-container {
  background: white;
  border-radius: 12px;
  border: 2px solid #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  animation: slideUp 0.5s ease;
}

.points-table {
  width: 100%;
  border-collapse: collapse;
}

.points-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.points-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.points-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.points-table tbody tr {
  transition: all 0.3s ease;
}

.points-table tbody tr:hover {
  background: #f9f9f9;
}

.points-table tbody tr:nth-child(1) {
  background: rgba(102, 126, 234, 0.05);
}

.points-table tbody tr:nth-child(2) {
  background: rgba(118, 75, 162, 0.03);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-logo-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #667eea;
}

@media (max-width: 768px) {
  .main-container h1 {
    font-size: 1.8rem;
  }

  .points-table th,
  .points-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .table-container {
    border-radius: 8px;
  }
}
