.hero-tournaments {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.hero-tournaments-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-tournaments-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-tournaments-lead {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
}

.hero-tournaments-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-tournaments-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--fs-sm);
}

.hero-tournaments-meta-item dt {
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.hero-tournaments-meta-item dd {
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-tournaments-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-tournaments-card {
  max-width: 380px;
  margin-left: auto;
}

.hero-tournaments-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: 0.5rem;
  font-size: var(--fs-sm);
}

.hero-tournaments-card-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
}

.hero-tournaments-card-list span:last-child {
  color: var(--color-text);
  font-weight: 500;
}

.hero-tournaments-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
}

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .tournaments-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tournaments-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: 0.75rem;
}

.tournaments-list-name {
  display: block;
  font-weight: 500;
  color: var(--color-text);
}

.tournaments-list-meta {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.tournaments-card-actions {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.tournaments-card-actions--stacked {
  flex-wrap: wrap;
}

.section-schedule {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(5, 7, 12, 1));
}

.section-header--schedule {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: flex-end;
}

@media (max-width: 768px) {
  .section-header--schedule {
    flex-direction: column;
    align-items: flex-start;
  }
}

.tournaments-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.tournaments-filter-btn {
  font-size: var(--fs-xs);
}

.tournaments-filter-btn[data-active="true"] {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.tournaments-table-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background-color: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.tournaments-table {
  width: 100%;
  font-size: var(--fs-sm);
}

.tournaments-table thead {
  background-color: rgba(15, 23, 42, 0.95);
}

.tournaments-table th,
.tournaments-table td {
  padding: 0.85rem 1rem;
  text-align: left;
}

.tournaments-table th {
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.tournaments-table tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.75);
}

.tournaments-table tbody tr:nth-child(odd) {
  background-color: rgba(15, 23, 42, 0.6);
}

.tournaments-table-name {
  display: block;
  font-weight: 500;
  color: var(--color-text);
}

.tournaments-table-sub {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.tournaments-table-format-note {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.tournaments-table-action {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.tournaments-table-date {
  white-space: nowrap;
}

.tournaments-table-note {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  padding: 0.75rem 1rem 1rem;
}

@media (max-width: 900px) {
  .tournaments-table-wrapper {
    overflow-x: auto;
  }

  .tournaments-table {
    min-width: 760px;
  }
}

.section-formats-grid,
.section-howto-grid,
.section-rewards-grid,
.section-atmosphere-grid,
.section-access-grid,
.section-rules-grid {
  align-items: flex-start;
  gap: var(--space-10);
}

.section-header--compact {
  margin-bottom: var(--space-6);
}

.section-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background-color: var(--color-surface);
}

.section-image-card img {
  width: 100%;
  height: auto;
}

.section-image-card figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.formats-list {
  display: grid;
  gap: 1rem;
}

.formats-item dt {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.formats-item dd {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.formats-cta {
  margin-top: var(--space-4);
}

.howto-steps {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.howto-step h3 {
  font-size: var(--fs-base);
  margin-bottom: 0.25rem;
}

.howto-step p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.howto-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.rewards-layout {
  display: grid;
  gap: var(--space-4);
}

.rewards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--fs-sm);
}

.rewards-note {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.rewards-highlight {
  height: 100%;
}

.atmosphere-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--fs-sm);
}

.atmosphere-cta {
  margin-top: var(--space-4);
}

.relations-grid {
  gap: var(--space-6);
}

.relations-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.relations-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: auto;
}

.section-faq {
  background-color: var(--color-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.85rem 1rem;
  background-color: rgba(15, 23, 42, 0.9);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(79, 70, 229, 0.7);
}

.faq-item p {
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--fs-sm);
}

.access-highlight {
  height: 100%;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: var(--fs-sm);
}

.rules-highlight {
  height: 100%;
}

@media (max-width: 768px) {
  .section-formats-grid,
  .section-howto-grid,
  .section-rewards-grid,
  .section-atmosphere-grid,
  .section-access-grid,
  .section-rules-grid {
    gap: var(--space-6);
  }
}
