/* CSS VARIABLES: FOOTBALL NEWSSTAND THEME */
:root {
  --bg-ivory: #FDFBF7;
  --txt-charcoal: #16181C;
  --accent-red: #C83737;
  --accent-cobalt: #1F4068;
  --accent-gold: #D4AF37;
  --border-charcoal: #16181C;
  --bg-white: #FFFFFF;
  --card-shadow: 6px 6px 0px #16181C;
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --font-mono: Courier, monospace;
}

/* RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-ivory);
  color: var(--txt-charcoal);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--txt-charcoal);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

a {
  color: var(--accent-cobalt);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--accent-red);
}

a:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background-color: var(--accent-red);
  color: var(--bg-ivory);
  padding: 2px 6px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
}

/* LAYOUT CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* HEADER & NAVIGATION */
.masthead-wrapper {
  border-bottom: 4px double var(--border-charcoal);
  background-color: var(--bg-ivory);
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-charcoal);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.top-bar-date {
  color: var(--accent-red);
  font-weight: bold;
}

.brand-section {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-charcoal);
}

.brand-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  letter-spacing: -1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-title a {
  color: var(--txt-charcoal);
  text-decoration: none;
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-cobalt);
  margin-top: 0.25rem;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--txt-charcoal);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-red);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* MOBILE NAV CONTROLS */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--txt-charcoal);
  margin: 4px 0;
  transition: 0.3s;
}

/* NEWSSTAND HERO / DATE RIBBON */
.hero-ribbon {
  background-color: var(--accent-cobalt);
  color: var(--bg-ivory);
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--border-charcoal);
}

.section-headline-container {
  text-align: center;
  margin: 4rem 0 2rem;
  position: relative;
}

.section-headline-container::before {
  content: "";
  display: block;
  border-top: 1px solid var(--border-charcoal);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}

.section-headline {
  background-color: var(--bg-ivory);
  padding: 0 1.5rem;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: var(--accent-red);
}

.section-subtext {
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  max-width: 650px;
  margin: -1rem auto 3rem;
  color: #444;
  font-size: 1.1rem;
}

/* DATE POSTER 2+1 LAYOUT */
.posters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.unresolved-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.unresolved-container .fixture-poster {
  max-width: 600px;
  width: 100%;
}

/* FIXTURE POSTER CARD */
.fixture-poster {
  background-color: var(--bg-white);
  border: 2px solid var(--border-charcoal);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.fixture-poster:hover {
  transform: translate(-6px, -6px);
  box-shadow: 12px 12px 0px var(--border-charcoal);
}

.poster-header {
  border-bottom: 1px solid var(--border-charcoal);
  padding: 0.9rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FAFAFA;
}

.poster-match-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: bold;
}

.poster-date-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background-color: var(--accent-cobalt);
  color: var(--bg-ivory);
  padding: 3px 10px;
  font-weight: bold;
}

.poster-body {
  padding: 2.5rem 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.poster-teams {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-vs {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-red);
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0.6rem 0;
}

.poster-meta {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #444;
  margin-top: auto;
}

.poster-venue {
  font-weight: bold;
  color: var(--txt-charcoal);
}

.poster-time {
  margin-top: 0.35rem;
}

.poster-footer {
  border-top: 1px dashed var(--border-charcoal);
  padding: 1rem;
  background-color: #FCFCFC;
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
  font-family: var(--font-sans);
}

.poster-footer a {
  text-decoration: none;
}

/* UNRESOLVED SPECIAL DESIGN */
.poster-unresolved {
  border: 2px dashed var(--accent-gold);
}

.poster-unresolved .poster-header {
  border-bottom: 1px dashed var(--accent-gold);
}

.poster-unresolved .poster-date-badge {
  background-color: var(--accent-gold);
  color: var(--txt-charcoal);
}

.poster-unresolved .poster-vs {
  color: var(--accent-gold);
}

/* FOLDED-PAPER DIVIDER */
.folded-divider {
  height: 12px;
  background-image: linear-gradient(45deg, var(--bg-ivory) 25%, transparent 25%), 
                    linear-gradient(-45deg, var(--bg-ivory) 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, var(--bg-ivory) 75%), 
                    linear-gradient(-45deg, transparent 75%, var(--bg-ivory) 75%);
  background-size: 20px 20px;
  background-position: 0 0;
  background-color: var(--border-charcoal);
  margin: 4rem 0;
}

/* ROUTES & CONNECTIONS STRIPS */
.route-strip-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.route-strip {
  background-color: var(--bg-white);
  border: 1px solid var(--border-charcoal);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 0px var(--border-charcoal);
}

.route-strip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.route-strip-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: bold;
}

.route-badge-confirmed {
  background-color: #E6F4EA;
  color: #137333;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 3px;
}

.route-badge-scheduled {
  background-color: #FEF7E0;
  color: #B06000;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 3px;
}

.route-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.route-step-node {
  background: #F4F4F4;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  border: 1px solid #EAEAEA;
}

.route-arrow {
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.2rem;
}

/* CONNECTIONS SECTION */
.connections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.connection-card {
  background-color: var(--bg-white);
  border: 2px solid var(--border-charcoal);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.connection-card h3 {
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.connection-match-details {
  font-family: var(--font-mono);
  margin-bottom: 1.25rem;
  color: var(--accent-cobalt);
  font-size: 0.95rem;
  font-weight: bold;
}

/* CALENDAR BLOCK */
.calendar-block {
  background-color: var(--txt-charcoal);
  color: var(--bg-ivory);
  padding: 4rem 2.5rem;
  margin-bottom: 4rem;
  border: 2px solid var(--border-charcoal);
  box-shadow: var(--card-shadow);
}

.calendar-block h2 {
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.calendar-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
  position: relative;
  transition: background-color 0.2s ease;
}

.calendar-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.calendar-item-date {
  font-family: var(--font-mono);
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  font-weight: bold;
}

.calendar-item-match {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.calendar-item-meta {
  font-size: 0.85rem;
  color: #CCC;
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* EDITORIAL GRID (ABOUT / METHODOLOGY HOMEPAGE EXCERPTS) */
.editorial-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.editorial-card {
  border-top: 4px solid var(--accent-cobalt);
  padding-top: 1.75rem;
}

.editorial-card h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/* RESULTS INDEX TABLES */
.results-section {
  margin-bottom: 3.5rem;
}

.results-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-charcoal);
  background-color: var(--bg-white);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  min-width: 700px;
}

.results-table th, .results-table td {
  border: 1px solid #EAEAEA;
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.results-table th {
  background-color: var(--accent-cobalt);
  color: var(--bg-ivory);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: bold;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-charcoal);
}

.results-table tr:nth-child(even) {
  background-color: #FAF9F6;
}

.results-table tr:hover {
  background-color: rgba(199, 165, 100, 0.08);
}

/* FORM STYLES */
.contact-form {
  background-color: var(--bg-white);
  border: 2px solid var(--border-charcoal);
  padding: 3rem;
  box-shadow: var(--card-shadow);
  max-width: 750px;
  margin: 0 auto 5rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: bold;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border-charcoal);
  background-color: var(--bg-ivory);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(200, 55, 55, 0.15);
}

.form-help {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.35rem;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--bg-ivory);
  border: 2px solid var(--border-charcoal);
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 3px 3px 0px var(--border-charcoal);
}

.btn-primary:hover {
  background-color: var(--txt-charcoal);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--border-charcoal);
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--txt-charcoal);
  color: var(--bg-ivory);
  padding: 1.75rem;
  z-index: 1000;
  border-top: 4px solid var(--accent-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: none;
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #DDD;
}

.cookie-text strong {
  color: #FFF;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.cookie-text a {
  color: var(--accent-gold);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-size: 0.8rem;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-accept {
  background-color: var(--accent-red);
  color: var(--bg-ivory);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--bg-ivory);
  border: 1px solid var(--bg-ivory);
}

.cookie-btn-manage {
  background-color: var(--accent-gold);
  color: var(--txt-charcoal);
}

/* STATIC LEGAL STYLES */
.legal-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-charcoal);
  padding: 3.5rem;
  margin-bottom: 5rem;
  box-shadow: 2px 2px 0px var(--border-charcoal);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-charcoal);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-cobalt);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* FOOTER */
.site-footer {
  background-color: var(--txt-charcoal);
  color: var(--bg-ivory);
  padding: 4.5rem 0 2.5rem;
  border-top: 8px solid var(--accent-red);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3.5rem;
  margin-bottom: 2rem;
}

.footer-brand h4 {
  color: var(--accent-gold);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.footer-disclaimer {
  color: #BBB;
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.45;
}

.footer-links-title {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.35rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: #CCC;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links-list a:hover {
  color: var(--bg-ivory);
  text-decoration: underline;
}

.footer-address-text {
  color: #CCC;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-reg {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--bg-ivory);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .posters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-top > div:last-child {
    grid-column: span 3;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 2.25rem;
  }
  
  .section-headline {
    font-size: 1.8rem;
  }

  .posters-grid {
    grid-template-columns: 1fr;
  }
  
  .unresolved-container .fixture-poster {
    max-width: 100%;
  }
  
  .connections-grid, 
  .calendar-grid, 
  .editorial-summary-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-ivory);
    border-bottom: 2px solid var(--border-charcoal);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .top-bar {
    padding: 0.5rem 1.5rem;
  }
  
  .brand-section {
    padding: 1rem 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top > div:last-child {
    grid-column: span 1;
    border-top: none;
    padding-top: 0;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex-grow: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.8rem;
  }
  
  .poster-teams {
    font-size: 1.8rem;
  }
  
  .section-headline {
    font-size: 1.4rem;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
}

/* REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ABSTRACT FOOTBALL MOTIF STYLE */
.abstract-pitch {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: var(--accent-cobalt);
  border: 2px solid var(--border-charcoal);
  margin-bottom: 2rem;
  overflow: hidden;
}

.pitch-line {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pitch-center-circle {
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pitch-center-line {
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pitch-penalty-area-left {
  top: 50px;
  left: 0;
  width: 60px;
  height: 100px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pitch-penalty-area-right {
  top: 50px;
  right: 0;
  width: 60px;
  height: 100px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pitch-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px var(--txt-charcoal);
  z-index: 5;
}