/* ── PAGE HEADER ── */
.page-header {
  position: relative;
  padding: 180px 40px 100px;
  overflow: hidden;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(43, 96, 232, 0.2);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(43,96,232,0.08) 0%, transparent 60%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; margin-bottom: 16px; }
.page-sub { font-size: 1rem; color: var(--gray-light); }

.tourney-header { position: relative; }
.tourney-header-rings {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.th-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43,96,232,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.th-ring-1 { width: 500px; height: 500px; }
.th-ring-2 { width: 370px; height: 370px; border-color: rgba(43,96,232,0.2); }
.th-ring-3 { width: 240px; height: 240px; border-color: rgba(43,96,232,0.3); }
.th-ring-4 { width: 110px; height: 110px; background: rgba(43,96,232,0.06); border: none; }

/* ── NEXT TOURNEY ── */
.next-tourney {
  padding: 80px 40px 60px;
  background: var(--navy-mid);
}
.next-tourney-card {
  background: var(--navy-light);
  border: 1px solid rgba(43,96,232,0.3);
  padding: 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.next-tourney-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.next-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 6px 14px;
}

.next-info { flex: 1; }
.next-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.next-info p {
  color: var(--gray-light);
  margin-bottom: 24px;
}
.next-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.next-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-light);
}

.next-prize {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.prize-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.prize-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 110px 40px;
}
.how-header {
  margin-bottom: 60px;
}
.how-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: var(--navy-light);
  padding: 44px 36px;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 40px;
  transform: translateY(-50%);
  background: var(--red);
}
.step:last-child::after { display: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(43,96,232,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── UPCOMING ── */
.upcoming {
  padding: 0 40px 110px;
  background: var(--navy);
}
.upcoming-header {
  padding: 60px 0 50px;
}
.upcoming-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
.tourney-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tourney-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 40px;
  background: var(--navy-light);
  padding: 28px 36px;
  transition: background var(--transition);
}
.tourney-row:hover { background: var(--navy-mid); }

.tourney-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.t-day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.t-mon {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 3px;
}

.tourney-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.tourney-details span {
  font-size: 0.78rem;
  color: var(--gray);
}

.tourney-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 120px;
}
.t-prize {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}
.t-spots {
  font-size: 0.75rem;
  color: var(--gray);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.72rem;
}

/* ── LEAGUE ── */
.league {
  padding: 110px 40px;
  background: var(--navy-mid);
}
.league-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.league-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
}
.league-text h2 em { font-style: italic; color: var(--red); }
.league-text p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.league-table {
  background: var(--navy);
}
.league-table-header {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 20px;
  padding: 16px 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--navy-light);
  border-bottom: 1px solid rgba(43,96,232,0.2);
}
.league-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 20px;
  padding: 16px 24px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(245,240,232,0.05);
  transition: background var(--transition);
}
.league-row:hover { background: var(--navy-light); }
.league-row.gold {
  background: rgba(43,96,232,0.07);
  border-left: 3px solid var(--red);
}
.league-row.gold span:first-child { color: var(--red); font-weight: 700; }
.league-note {
  font-size: 0.72rem;
  color: var(--gray);
  padding: 14px 24px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .next-tourney { padding: 60px 30px; }
  .how-it-works { padding: 90px 30px; }
  .upcoming { padding: 0 30px 90px; }
  .league { padding: 90px 30px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}
@media (max-width: 980px) {
  .next-tourney-card { flex-direction: column; align-items: flex-start; gap: 30px; }
  .next-prize { align-items: flex-start; }
  .tourney-row { grid-template-columns: 60px 1fr; gap: 20px; }
  .tourney-meta, .tourney-row .btn { display: none; }
  .league-inner { grid-template-columns: 1fr; }
}
@media (max-width: 850px) {
  .page-header { padding: 150px 20px 80px; }
  .next-tourney { padding: 50px 20px; }
  .how-it-works { padding: 70px 20px; }
  .upcoming { padding: 0 20px 70px; }
  .league { padding: 70px 20px; }
  .tourney-header-rings { display: none; }
}
@media (max-width: 650px) {
  .next-tourney-card { padding: 32px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .tourney-row { padding: 20px; }
}

/* ── NO INFO MODAL ── */
.no-info-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.no-info-modal.open {
  pointer-events: all;
  opacity: 1;
}

.no-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 14, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.no-info-box {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(43, 96, 232, 0.25);
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.no-info-modal.open .no-info-box {
  transform: translateY(0);
}

.no-info-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}
.no-info-close:hover {
  color: var(--white);
  border-color: rgba(245,240,232,0.3);
}

.no-info-icon {
  margin-bottom: 4px;
}

.no-info-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.no-info-box p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 8px;
}