body {
  background-color: #000;
  color: #fff;
  font-family: "Trebuchet MS", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.main-container {
  padding: 0 20%;
  text-align: center;
}

h1, h2 {
  text-align: center;
}

.content {
  background-color: #0a0a0a;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

th, td {
  border: 1px solid #fff;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #000;
  color: #fff;
}

tr:nth-child(odd) {
  background-color: #111;
}

tr:nth-child(even) {
  background-color: #1c1c1c;
}

tr:hover {
  background-color: #2a2a2a;
}

td.center {
  text-align: center;
}

a:link, a:visited, a:hover, a:active {
  color: aquamarine;
}

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 16px;
}

.tab-btn {
  background: #222;
  color: #888;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 6px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}

.tab-btn:hover {
  background: #2a2a2a;
  color: #ccc;
}

.tab-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.champions-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.champion-row {
  display: flex;
  gap: 20px;
}

.champion-card {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: transform 0.2s ease;
  background: linear-gradient(to right, rgba(var(--rgb), 0.6), #383838);
}

.champion-card.gradient-left {
  background: linear-gradient(to right, #383838, rgba(var(--rgb), 0.6));
}

.champion-card.half-width {
  flex: 0.5;
}

.champion-card:hover {
  transform: scale(1.02);
}

.champion-card h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #fccd4c;
}

.champion-card p {
  margin: 5px 0;
  font-size: 1rem;
}

.buttons-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.button {
  background-color: #fff;
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
  text-decoration: none;
  aspect-ratio: 1 / 1;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.button:link, .button:visited, .button:hover, .button:active {
  color: #000;
}

.button--disabled {
  background-color: #222;
  color: #555;
  cursor: not-allowed;
  pointer-events: none;
}

.button--disabled:hover {
  transform: none;
  box-shadow: none;
}
