:root {
  --maroon: #7b1f2e;
  --maroon-dk: #5a1520;
  --gold: #c9a84c;
  --gold-lt: #e8c97a;
  --gold-pale: #f5edd8;
  --cream: #fdfaf5;
  --off-white: #f8f4ee;
  --charcoal: #2c2c2c;
  --muted: #7a7065;
  --border: rgba(123, 31, 46, 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 4rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  min-width: 0;
}

.nav-logo img {
  height: 34px;
  max-width: 180px;
  object-fit: contain;
}

.nav-logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--maroon);
  font-weight: 700;
  display: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.35rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--maroon);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.nav-btn {
  background: var(--maroon);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--maroon-dk);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--maroon);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem 7rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201, 168, 76, 0.035) 0px, rgba(201, 168, 76, 0.035) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(-45deg, rgba(201, 168, 76, 0.035) 0px, rgba(201, 168, 76, 0.035) 1px, transparent 1px, transparent 44px);
}

.hero-left::after {
  content: '🏏';
  position: absolute;
  bottom: -2rem;
  right: -3rem;
  font-size: 18rem;
  opacity: 0.045;
  transform: rotate(-18deg);
  pointer-events: none;
}

.eyebrow,
.sec-eyebrow,
.reg-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow {
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.1s both;
}

.eyebrow-line,
.sec-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.eyebrow span,
.sec-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow span {
  color: var(--gold-lt);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 4.5vw, 5.8rem);
  line-height: 1.04;
  color: #fff;
  font-weight: 700;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.8rem;
  animation: fadeUp 0.7s 0.3s both;
}

.hero-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-top: 1.8rem;
  max-width: 400px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  animation: fadeUp 0.7s 0.5s both;
}

.btn-gold,
.btn-ghost {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: #2c1810;
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-right {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.9s 0.4s both;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.09) 0%, transparent 70%);
}

.preview-card {
  width: 100%;
  max-width: 390px;
  position: relative;
  z-index: 1;
}

.preview-header {
  background: var(--maroon);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.preview-header span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.preview-matches {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
}

.pm-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(123, 31, 46, 0.07);
  transition: background 0.2s;
}

.pm-row:last-child {
  border-bottom: none;
}

.pm-row:hover {
  background: var(--gold-pale);
}

.pm-date {
  min-width: 44px;
  text-align: center;
}

.pm-date-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--maroon);
  font-weight: 700;
  line-height: 1;
}

.pm-date-mo {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pm-div {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}

.pm-teams {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pm-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.pm-vs-wrap {
  flex: 1;
}

.pm-matchup {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.pm-venue {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.pm-time {
  font-size: 0.68rem;
  color: var(--maroon);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.pm-day {
  font-size: 0.58rem;
  color: var(--muted);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-footer {
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-top: none;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.preview-footer span {
  font-size: 0.7rem;
  color: var(--maroon);
  font-weight: 500;
}

.preview-footer button {
  font-size: 0.7rem;
  color: var(--maroon);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.marquee-wrap {
  background: var(--maroon-dk);
  overflow: hidden;
  padding: 0.5rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-item {
  font-family: 'Teko', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-sep {
  color: var(--gold);
  padding: 0 0.2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.schedule-section {
  padding: 5.5rem 5.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.sec-eyebrow,
.reg-eyebrow {
  margin-bottom: 1rem;
}

.sec-label {
  color: var(--maroon);
  font-weight: 600;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  font-weight: 700;
}

.sec-title em {
  color: var(--maroon);
  font-style: italic;
}

.sec-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

.schedule-actions {
  margin-top: 1rem;
}

.schedule-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: var(--gold-pale);
  color: var(--maroon);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-block {
  margin-top: 2rem;
}

.week-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.week-kicker,
.match-week-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.week-title,
.match-week-head h3 {
  margin: 0.35rem 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.week-status,
.match-week-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.week-status.is-open,
.match-week-status.is-open {
  background: rgba(201, 168, 76, 0.16);
  color: var(--maroon);
  border-color: rgba(201, 168, 76, 0.4);
}

.week-status.is-locked,
.match-week-status.is-locked {
  background: rgba(123, 31, 46, 0.06);
  color: rgba(89, 73, 37, 0.9);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.match-card {
  background: var(--cream);
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.match-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.match-card:hover {
  background: #fff;
}

.match-card:hover::before {
  transform: scaleY(1);
}

.week-block.is-locked .match-grid {
  background: rgba(134, 121, 99, 0.28);
  border-color: rgba(134, 121, 99, 0.28);
}

.match-card.is-locked {
  background: #f3ede2;
  opacity: 0.72;
}

.match-card.is-locked::before,
.match-card.is-locked:hover::before {
  transform: scaleY(0);
}

.match-card.is-locked:hover {
  background: #f3ede2;
}

.mc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: rgba(123, 31, 46, 0.13);
  font-weight: 700;
  min-width: 1.8rem;
  line-height: 1;
}

.mc-date {
  background: var(--maroon);
  padding: 0.45rem 0.65rem;
  text-align: center;
  min-width: 48px;
  flex-shrink: 0;
}

.mc-day-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.mc-month {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.08rem;
}

.mc-dayname {
  font-size: 0.54rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.12rem;
}

.mc-body {
  flex: 1;
  min-width: 0;
}

.mc-versus {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mc-team {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.mc-team-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.mc-team-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-vs {
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  padding: 0 0.2rem;
}

.mc-venue {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.3rem;
  font-weight: 300;
}

.mc-right {
  text-align: right;
  flex-shrink: 0;
}

.mc-time {
  font-size: 0.78rem;
  color: var(--maroon);
  font-weight: 600;
}

.mc-slot {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mc-lock-note {
  margin-top: 0.35rem;
  font-size: 0.58rem;
  color: rgba(123, 31, 46, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reg-section {
  background: var(--maroon);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.reg-section::before {
  content: '2026';
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.025);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.reg-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reg-label {
  color: var(--gold-lt);
}

.reg-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}

.reg-title em {
  color: var(--gold);
  font-style: italic;
}

.reg-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.reg-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-alert {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: #fff;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.form-alert ul {
  margin: 0.4rem 0 0 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label,
.matches-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.form-group input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.phone-input {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 0.7rem;
}

.phone-input select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.88rem;
  padding: 0.75rem 0.8rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.phone-input select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.matches-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0.6rem 0 1rem;
}

.match-week-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.match-week {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.match-week.is-locked {
  background: rgba(255, 255, 255, 0.025);
}

.match-week-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.match-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.match-selector.is-locked {
  opacity: 0.68;
}

.match-selector::-webkit-scrollbar {
  width: 3px;
}

.match-selector::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.match-selector::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.match-option {
  display: block;
  cursor: pointer;
}

.match-option.is-disabled {
  cursor: not-allowed;
}

.match-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.match-option-ui {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
  transition: all 0.2s;
  position: relative;
}

.match-option.is-disabled .match-option-ui {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.match-option:hover .match-option-ui {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.match-option.is-disabled:hover .match-option-ui {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.match-option input:checked + .match-option-ui {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.match-option input:checked + .match-option-ui .mo-check {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

.match-option input:checked + .match-option-ui .mo-check svg {
  display: block;
}

.mo-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.2s;
}

.mo-check svg {
  width: 11px;
  height: 11px;
  display: none;
}

.mo-date {
  min-width: 42px;
  text-align: center;
  flex-shrink: 0;
}

.mo-date-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.mo-date-mo {
  display: block;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mo-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mo-teams {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.mo-teams > span {
  min-width: 0;
}

.mo-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.mo-matchup {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.mo-vs-txt {
  font-size: 0.6rem;
  color: rgba(201, 168, 76, 0.7);
}

.mo-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.mo-lock-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(201, 168, 76, 0.24);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.form-submit {
  margin-top: 0.5rem;
  background: var(--gold);
  color: #2c1810;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
}

.form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.25);
}

.form-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 2.5rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.success-msg {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.6rem;
  line-height: 1.6;
}

footer {
  background: var(--maroon-dk);
  padding: 1.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-tag {
  font-family: 'Teko', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.65;
}

footer p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s, transform 0.55s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  nav {
    height: auto;
    min-height: 68px;
    padding: 0.8rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-btn {
    width: 100%;
  }

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

  .hero-left {
    padding: 4.5rem 2.2rem;
    min-height: auto;
  }

  .hero-right {
    padding: 2.5rem 1.5rem 3rem;
  }

  .schedule-section {
    padding: 4rem 1.5rem;
  }

  .reg-section {
    padding: 4.5rem 1.5rem;
  }

  .match-grid,
  .form-row,
  .week-head,
  .match-week-head {
    grid-template-columns: 1fr;
  }

  .week-head,
  .match-week-head {
    display: grid;
    align-items: start;
  }

  .phone-input {
    grid-template-columns: 110px 1fr;
  }

  .match-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .mc-right {
    width: 100%;
    text-align: left;
  }

  .preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .nav-logo img {
    max-width: 138px;
    height: 28px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .nav-pill {
    display: none;
  }

  .hero-left,
  .hero-right,
  .schedule-section,
  .reg-section,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-gold,
  .btn-ghost,
  .form-submit {
    width: 100%;
  }

  .pm-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: start;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .pm-div {
    display: none;
  }

  .pm-teams {
    grid-column: 2;
  }

  .pm-row > :last-child {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
  }

  .week-title,
  .match-week-head h3 {
    font-size: 1.2rem;
  }

  .match-card {
    padding: 1rem;
  }

  .mc-date {
    min-width: 44px;
  }

  .mc-team-name {
    white-space: normal;
  }

  .phone-input {
    grid-template-columns: 1fr;
  }

  .match-week {
    padding: 0.85rem;
  }

  .match-option-ui {
    grid-template-columns: auto 1fr auto;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    gap: 0.8rem;
  }

  .mo-div,
  .mo-lock-badge {
    display: none;
  }

  .mo-date {
    min-width: 34px;
  }

  .mo-teams {
    grid-column: 2 / 4;
    width: 100%;
  }

  .mo-time {
    grid-column: 2 / 4;
    text-align: left;
    white-space: normal;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
