/* ============================================
   ZTT Info Page
   ============================================ */

.info-page {
  min-height: 100vh;
  padding: 0 0 64px;
  background: transparent;
}

.info-container {
  max-width: 720px;
  margin: 0 auto;
}

.info-header {
  text-align: center;
  margin-bottom: 32px;
}

.info-header h1 {
  font-family: var(--font-pixel);
  font-size: clamp(0.625rem, 2.2vw, 0.75rem);
  line-height: 1.8;
  color: var(--text);
  text-shadow: 2px 2px 0 var(--gold-dark);
  margin-bottom: 12px;
}

.info-header p {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

.info-card {
  border: 4px solid var(--outline);
  border-radius: 0;
  box-shadow: var(--shadow-block-lg);
  background: var(--card);
  position: relative;
  overflow: hidden;
  padding: 48px 32px 32px;
  animation: cardSlideIn 0.6s ease-out;
}

.info-card::before {
  display: none;
}

.info-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 3px solid rgba(61, 41, 20, 0.12);
}

.info-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-section h2 {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-section h2 i {
  color: var(--primary);
  font-size: 0.875rem;
}

.info-section > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 12px;
}

.info-section > p strong {
  color: var(--text);
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-tag {
  font-family: var(--font-pixel);
  font-size: 0.4375rem;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.25);
  border: 2px solid var(--outline);
  color: var(--text);
  box-shadow: var(--shadow-block);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list li {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.info-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-subsection h3 {
  font-family: var(--font-pixel);
  font-size: 0.4375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-table-wrap {
  overflow-x: auto;
  border: 3px solid var(--outline);
  box-shadow: var(--shadow-block);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.info-table th,
.info-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(61, 41, 20, 0.12);
  font-weight: 600;
}

.info-table th {
  font-family: var(--font-pixel);
  font-size: 0.4375rem;
  text-transform: uppercase;
  background: rgba(255, 215, 0, 0.2);
  color: var(--text);
}

.info-table td {
  color: var(--text-muted);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table .rank-col {
  color: var(--text);
  font-weight: 700;
}

.info-table .points-col {
  color: var(--primary-dark);
  font-weight: 800;
}

.info-footer {
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 3px solid var(--outline);
}

@media (max-width: 640px) {
  .info-card {
    padding: 44px 20px 24px;
  }

  .info-columns {
    grid-template-columns: 1fr;
  }
}
