:root {
  --ink: #18212f;
  --muted: #5d6978;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --navy: #10243f;
  --black: #08090b;
  --green: #1d7a59;
  --gold: #f4b942;
  --red: #c33d32;
  --shadow: 0 18px 50px rgba(17, 33, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(8, 9, 11, 0.94);
  border-bottom: 1px solid rgba(244, 185, 66, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 46px;
  object-fit: contain;
  background: var(--black);
  border: 1px solid rgba(244, 185, 66, 0.35);
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: #c7d3df;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.main-nav a:hover,
.nav-cta,
.active-link {
  background: rgba(255, 255, 255, 0.12);
}

.main-nav .nav-portal {
  color: var(--gold);
  border: 1px solid rgba(244, 185, 66, 0.55);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(12, 19, 31, 0.62), rgba(12, 19, 31, 0.18)),
    url("https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding: 130px clamp(22px, 5vw, 72px) 82px;
}

.hero-logo {
  display: block;
  width: min(360px, 72vw);
  height: auto;
  margin-bottom: 26px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(244, 185, 66, 0.42);
  border-radius: 8px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.46));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  color: #fff;
  background: var(--green);
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.event-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.event-bar article {
  padding: 22px clamp(18px, 3vw, 36px);
  background: #fff;
}

.event-bar span,
.meta,
.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.event-bar strong {
  display: block;
  margin-top: 4px;
}

.portal-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--black);
  border-bottom: 1px solid rgba(244, 185, 66, 0.35);
}

.portal-callout div {
  max-width: 820px;
}

.portal-callout h2,
.portal-callout p {
  margin: 0;
}

.portal-callout p:not(.eyebrow) {
  margin-top: 8px;
  color: #eef3f8;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-section article {
  padding: 26px clamp(18px, 3vw, 34px);
  background: #fff;
}

.trust-section span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-section strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.partners-section {
  padding: 24px clamp(18px, 4vw, 56px) 30px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.partners-title-row {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 28px;
}

.partners-title-row span {
  height: 2px;
  background-image: linear-gradient(90deg, #e5e9ef 50%, transparent 50%);
  background-size: 8px 2px;
}

.partners-title-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.partners-carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 14px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  min-height: 178px;
}

.partner-arrow {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 64px;
  padding: 0;
  color: #c4162e;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.partner-arrow:hover {
  background: #f7eef0;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 150px;
  color: var(--ink);
  text-align: center;
}

.partner-logo span {
  display: block;
  line-height: 1;
}

.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 142px;
  object-fit: contain;
}

.grand-stand {
  color: #1f4d29;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #e8efe6, 1px 1px 0 #e8efe6;
}

.grand-stand span:first-child {
  font-size: clamp(23px, 2.6vw, 34px);
}

.grand-stand span:last-child {
  margin-top: -2px;
  font-size: clamp(17px, 2vw, 25px);
  font-style: italic;
  text-transform: none;
}

.championship-park {
  position: relative;
  width: min(190px, 100%);
  justify-self: center;
  color: #fff;
  background: #1f4a76;
  border: 7px solid #ffdc54;
  clip-path: polygon(0 0, 100% 0, 100% 67%, 50% 100%, 0 67%);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.championship-park span:first-child {
  padding-top: 26px;
  font-size: 21px;
}

.championship-park span:nth-child(2) {
  font-size: 28px;
}

.championship-park span:last-child {
  color: #ffdc54;
  font-size: 12px;
}

.kc-diamond {
  position: relative;
  width: 140px;
  height: 140px;
  justify-self: center;
  color: #e51e35;
  border: 5px solid #e51e35;
  transform: rotate(45deg);
}

.kc-diamond::before,
.kc-diamond::after {
  position: absolute;
  content: "";
  background: #1c1d22;
}

.kc-diamond::before {
  width: 5px;
  height: 154px;
  left: -20px;
  top: -16px;
}

.kc-diamond::after {
  width: 154px;
  height: 5px;
  right: -18px;
  bottom: -18px;
}

.kc-diamond span {
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.kc-diamond span:first-child {
  margin-top: 42px;
  font-size: 13px;
}

.kc-diamond span:last-child {
  color: #222;
  font-size: 28px;
}

.lumber-yard {
  color: #24602d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: -2px -2px 0 #cf9d51, 2px 2px 0 #173719;
}

.lumber-yard span:first-child {
  font-size: 13px;
  letter-spacing: 4px;
}

.lumber-yard span:nth-child(2),
.lumber-yard span:last-child {
  font-size: clamp(34px, 4vw, 52px);
}

.bullpen-marketing {
  justify-items: start;
  color: #050505;
  font-weight: 950;
  font-style: italic;
  text-transform: uppercase;
}

.bullpen-marketing::before {
  content: "";
  width: 54px;
  height: 42px;
  margin-left: 38px;
  background: var(--black);
  border-radius: 54% 46% 48% 52%;
  transform: skew(-18deg) rotate(-18deg);
}

.bullpen-marketing span:first-child {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 0.9;
}

.bullpen-marketing span:last-child {
  font-size: 12px;
  letter-spacing: 5px;
}

.crown-partner,
.hermitage-partner,
.hll-partner,
.pa-kings-partner,
.hotel-partner,
.umpire-partner,
.field-partner {
  font-weight: 900;
  text-transform: uppercase;
}

.crown-partner {
  color: var(--green);
}

.hermitage-partner {
  color: var(--navy);
}

.hll-partner {
  color: #c4162e;
}

.pa-kings-partner {
  color: var(--black);
}

.hotel-partner {
  color: var(--gold);
}

.umpire-partner {
  color: var(--red);
}

.field-partner {
  color: #2e6b3f;
}

.crown-partner span:first-child,
.hermitage-partner span:first-child,
.hll-partner span:first-child,
.pa-kings-partner span:first-child,
.hotel-partner span:first-child,
.umpire-partner span:first-child,
.field-partner span:first-child {
  font-size: clamp(28px, 3vw, 40px);
}

.crown-partner span:last-child,
.hermitage-partner span:last-child,
.hll-partner span:last-child,
.pa-kings-partner span:last-child,
.hotel-partner span:last-child,
.umpire-partner span:last-child,
.field-partner span:last-child {
  font-size: clamp(18px, 2vw, 26px);
}

.partner-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.partner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #9a9a9a;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.partner-dot.active {
  background: var(--navy);
}

.contact-section {
  padding: 64px clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.contact-card {
  display: grid;
  gap: 10px;
  max-width: 520px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.contact-card strong {
  font-size: 24px;
}

.contact-card a {
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.contact-card a:hover {
  text-decoration: underline;
}

.section {
  padding: 76px clamp(18px, 4vw, 56px);
}

.section.alt {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.register-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.register-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.venue-feature-photo {
  display: block;
  width: 100%;
  max-height: 420px;
  margin-bottom: 24px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.08);
}

.why-section {
  padding: 76px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--black);
}

.why-section .section-heading p:not(.eyebrow) {
  color: #d5dfeb;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.why-main,
.why-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 185, 66, 0.28);
  border-radius: 8px;
}

.why-main h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.why-main p,
.why-card p {
  margin: 0;
  color: #d5dfeb;
}

.why-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.values-row span {
  padding: 8px 11px;
  color: var(--black);
  background: var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter {
  min-width: 96px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 1060px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.08);
}

.feature-copy {
  display: grid;
  gap: 14px;
}

.feature-copy h2,
.feature-copy h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-link-grid a,
.quick-link-grid article {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.quick-link-grid a:hover {
  border-left-color: var(--gold);
}

.quick-link-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-link-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.login-preview {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.login-preview h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.login-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.portal-list {
  display: grid;
  gap: 12px;
}

.portal-list article {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.portal-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-list strong {
  font-size: 18px;
  line-height: 1.2;
}

.format-grid,
.teams-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.format-grid article,
.teams-grid article,
.checklist-grid article {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.format-grid span,
.teams-grid span,
.checklist-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.format-grid strong,
.teams-grid strong,
.checklist-grid strong {
  font-size: 18px;
  line-height: 1.22;
}

.notice-panel {
  max-width: 760px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.notice-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.notice-panel p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.faq-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 14px;
  background: #0b0d10;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.tournament-flyer {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  padding: 0;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-detail-group {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.card-detail-group h4 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mini-info-grid span {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mini-info-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-info-grid strong {
  font-size: 13px;
  line-height: 1.2;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 5px 8px;
  color: var(--navy);
  background: #eaf1f7;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.policy-list {
  max-width: 920px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.policy-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.register-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 70px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--navy);
}

.register-band .eyebrow {
  color: var(--gold);
}

.register-band p:not(.eyebrow) {
  color: #d5dfeb;
}

.jotform-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.register-callout {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.full {
  width: 100%;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #0b1625;
}

.footer span {
  color: #c7d3df;
}

.page-hero {
  padding: 92px clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(16, 36, 63, 0.74)),
    url("https://images.unsplash.com/photo-1508344928928-7165b67de128?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero > div {
  max-width: 840px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #d5dfeb;
  font-size: 19px;
}

.rules-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding: 58px clamp(18px, 4vw, 56px) 82px;
  background: var(--soft);
}

.rules-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  align-self: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rules-sidebar a {
  padding: 14px 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.rules-sidebar a:last-child {
  border-bottom: 0;
}

.rules-sidebar a:hover {
  color: var(--green);
  background: #f8fafc;
}

.rules-content {
  display: grid;
  gap: 18px;
}

.rule-section,
.rules-note {
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 33, 54, 0.06);
}

.rule-section h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.rule-section h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.rule-section p {
  color: var(--muted);
}

.rule-address {
  padding: 14px 16px;
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  font-weight: 700;
}

.rule-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.rules-note {
  border-color: rgba(244, 185, 66, 0.55);
}

.rules-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.rules-note span {
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

.rules-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rules-table th,
.rules-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.rules-table th {
  color: #fff;
  background: var(--navy);
}

.rules-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .site-header,
  .main-nav,
  .hero-actions {
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 560px;
  }

  .event-bar,
  .trust-section,
  .card-grid,
  .feature-layout,
  .quick-link-grid,
  .portal-list,
  .format-grid,
  .teams-grid,
  .checklist-grid,
  .faq-grid,
  .why-layout,
  .register-band,
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .partners-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .rules-sidebar {
    position: static;
  }

  .portal-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 90px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section,
  .page-hero,
  .register-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .partners-section {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .partners-title-row {
    margin-bottom: 18px;
  }

  .partners-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .partners-track {
    grid-template-columns: 1fr;
    min-height: 156px;
  }

  .partner-arrow {
    width: 34px;
    height: 54px;
    font-size: 40px;
  }

  .button {
    width: 100%;
  }
}
