/* Game Tables Section Styles */
.game-tables-section {
  padding: 80px 0;
}

.tables-header {
  text-align: center;
}

.tables-title {
  font-family: var(--font-primary-bold);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 20px;
}

.tables-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--text-color-light);
  line-height: 1.5;
  max-width: 1120px;
  margin: 0 auto;
}


.game-table {
  overflow: hidden;
  border-radius: 16px;
  margin-top: 15px;
}

/* Support table-based markup in index.html */
.game-table table {
  width: 100%;
  border-collapse: collapse;
}
.game-table table td {
  padding: 18px 20px;
}
.game-table table tr:nth-child(odd) td {
  background-color: var(--white);
}
.game-table table tr:nth-child(even) td {
  background-color: #f4f4f4;
}
.game-table table td:first-child p {
  font-family: var(--font-primary-semibold);
  font-weight: 600;
  color: var(--black);
}
.game-table table td:last-child p {
  font-family: var(--font-primary);
  color: var(--text-color-light);
}

.mid-copy {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 40px 0;
}

.mid-title {
  font-family: var(--font-primary-bold);
  font-size: 32px;
  color: var(--black);
  margin: 20px 0 14px;
}

.mid-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--text-color-light);
  line-height: 1.7;
  max-width: 940px;
  margin: 0 auto 10px;
}

.table-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.table-row:nth-child(odd) {
  background-color: var(--white);
}

.table-row:nth-child(even) {
  background-color: #f4f4f4;
}

.table-row span:first-child {
  font-family: var(--font-primary-semibold);
  font-weight: 600;
  color: var(--black);
}

.table-row span:last-child {
  font-family: var(--font-primary);
  color: var(--text-color-light);
}

/* removed promo banner in favor of centered copy block to match design */


@media (max-width: 768px) {
  .game-tables-section {
    padding: 40px 20px;
  }
}
