/* ============================================
   数据绿茵 - 足球数据分析站
   CSS前缀: pitch-
   设计风格: 科技数据仪表盘风 (Tech Data Dashboard)
   ============================================ */

/* === Font Face Declarations === */
@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --pitch-primary: #0A2463;
  --pitch-secondary: #1E1E2F;
  --pitch-accent: #3CDFFF;
  --pitch-green: #00E676;
  --pitch-bg: #F0F4F8;
  --pitch-text: #1E1E2F;
  --pitch-text-muted: #6C757D;
  --pitch-radius: 4px;
  --pitch-shadow: 0 4px 12px rgba(10, 36, 99, 0.1);
  --pitch-font-heading: 'Roboto Mono', monospace;
  --pitch-font-body: 'Lato', sans-serif;
  --pitch-font-number: 'Oswald', sans-serif;
  --pitch-glow: 0 0 20px rgba(60, 223, 255, 0.3);
  --pitch-glow-green: 0 0 20px rgba(0, 230, 118, 0.3);
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--pitch-font-body);
  color: var(--pitch-text);
  background-color: var(--pitch-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: var(--pitch-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--pitch-green);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pitch-font-heading);
  color: var(--pitch-text);
  line-height: 1.3;
}

/* === Header / Navigation === */
.pitch-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(30, 30, 47, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 223, 255, 0.1);
  transition: background 0.3s ease;
}
.pitch-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
}
.pitch-header-logo {
  font-family: var(--pitch-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.pitch-header-logo span {
  color: var(--pitch-accent);
}
.pitch-header-logo:hover {
  color: var(--pitch-accent);
}
.pitch-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.pitch-nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--pitch-font-body);
  font-size: 0.9rem;
  padding: 24px 14px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.pitch-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--pitch-accent);
  transition: width 0.3s ease;
}
.pitch-nav__link:hover {
  color: #fff;
}
.pitch-nav__link:hover::after {
  width: 60%;
}
.pitch-nav__search {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  transition: color 0.3s ease;
}
.pitch-nav__search:hover {
  color: var(--pitch-accent);
}
.pitch-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.pitch-hamburger__line {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* === Hero Module === */
.pitch-module-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pitch-primary);
  overflow: hidden;
  margin-top: 70px;
}
.pitch-module-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.pitch-module-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pitch-module-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 900px;
}
.pitch-module-hero__title {
  font-family: var(--pitch-font-heading);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(60, 223, 255, 0.3);
}
.pitch-module-hero__subtitle {
  font-family: var(--pitch-font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.pitch-module-hero__cursor {
  display: inline-block;
  font-family: var(--pitch-font-heading);
  color: var(--pitch-accent);
  font-size: 1.2rem;
  margin-bottom: 32px;
  animation: pitch-blink 1s step-end infinite;
}
@keyframes pitch-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.pitch-module-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.pitch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--pitch-radius);
  font-family: var(--pitch-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.pitch-btn--glow {
  background: rgba(60, 223, 255, 0.15);
  color: var(--pitch-accent);
  border: 1px solid rgba(60, 223, 255, 0.4);
  box-shadow: 0 0 20px rgba(60, 223, 255, 0.15);
}
.pitch-btn--glow:hover {
  background: rgba(60, 223, 255, 0.25);
  box-shadow: 0 0 30px rgba(60, 223, 255, 0.3);
  color: #fff;
}
.pitch-btn--primary {
  background: var(--pitch-accent);
  color: var(--pitch-primary);
  font-weight: 700;
}
.pitch-btn--primary:hover {
  background: #5de8ff;
  box-shadow: var(--pitch-glow);
  color: var(--pitch-primary);
}
.pitch-btn--green {
  background: var(--pitch-green);
  color: var(--pitch-primary);
}
.pitch-btn--green:hover {
  background: #33eb91;
  box-shadow: var(--pitch-glow-green);
  color: var(--pitch-primary);
}

/* === Scrolling Ticker === */
.pitch-module-ticker {
  background: var(--pitch-secondary);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(60, 223, 255, 0.1);
  border-bottom: 1px solid rgba(60, 223, 255, 0.1);
}
.pitch-module-ticker__track {
  display: flex;
  animation: pitch-scroll 30s linear infinite;
  white-space: nowrap;
}
.pitch-module-ticker__item {
  font-family: var(--pitch-font-heading);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 40px;
  flex-shrink: 0;
}
.pitch-module-ticker__item strong {
  color: var(--pitch-green);
}
@keyframes pitch-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Section Containers === */
.pitch-section {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.pitch-section--dark {
  background: var(--pitch-secondary);
  max-width: 100%;
  padding: 80px 24px;
}
.pitch-section--dark .pitch-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.pitch-section--primary {
  background: var(--pitch-primary);
  max-width: 100%;
  padding: 80px 24px;
}
.pitch-section--primary .pitch-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.pitch-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.pitch-section__title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pitch-section--dark .pitch-section__title,
.pitch-section--primary .pitch-section__title {
  color: #fff;
}
.pitch-section__desc {
  color: var(--pitch-text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}
.pitch-section--dark .pitch-section__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* === Navigation Matrix (Module 3) === */
.pitch-nav-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pitch-nav-matrix__card {
  background: #fff;
  border-radius: var(--pitch-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--pitch-shadow);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  display: block;
}
.pitch-nav-matrix__card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--pitch-accent);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}
.pitch-nav-matrix__card:hover .pitch-nav-matrix__icon {
  color: var(--pitch-accent);
}
.pitch-nav-matrix__card:hover .pitch-nav-matrix__name {
  color: var(--pitch-accent);
}
.pitch-nav-matrix__icon {
  font-size: 2.2rem;
  color: var(--pitch-primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.pitch-nav-matrix__name {
  font-family: var(--pitch-font-heading);
  font-size: 1rem;
  color: var(--pitch-text);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.pitch-nav-matrix__desc {
  font-size: 0.85rem;
  color: var(--pitch-text-muted);
  line-height: 1.5;
}

/* === Match Preview (Module 4) === */
.pitch-match-preview {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 24px;
}
.pitch-match-preview__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}
.pitch-match-preview__team {
  text-align: center;
}
.pitch-match-preview__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(60, 223, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 2rem;
  color: var(--pitch-accent);
  border: 2px solid rgba(60, 223, 255, 0.3);
}
.pitch-match-preview__team-name {
  color: #fff;
  font-family: var(--pitch-font-heading);
  font-size: 1.1rem;
}
.pitch-match-preview__vs {
  color: var(--pitch-accent);
  font-family: var(--pitch-font-heading);
  font-size: 1.5rem;
}
.pitch-match-preview__record {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.pitch-match-preview__stat {
  text-align: center;
}
.pitch-match-preview__stat-value {
  font-family: var(--pitch-font-number);
  font-size: 2rem;
  color: var(--pitch-accent);
}
.pitch-match-preview__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.pitch-match-preview__form {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.pitch-match-preview__form-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--pitch-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.pitch-match-preview__form-dot--w { background: var(--pitch-green); }
.pitch-match-preview__form-dot--d { background: #FFC107; }
.pitch-match-preview__form-dot--l { background: #FF5252; }
.pitch-match-preview__prediction {
  background: rgba(10, 36, 99, 0.5);
  border-radius: var(--pitch-radius);
  padding: 24px;
  border: 1px solid rgba(60, 223, 255, 0.15);
}

/* === Stats Cards (Module 5) === */
.pitch-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pitch-stats-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--pitch-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(60, 223, 255, 0.1);
  transition: all 0.3s ease;
}
.pitch-stats-card:hover {
  border-color: rgba(60, 223, 255, 0.3);
  box-shadow: var(--pitch-glow);
}
.pitch-stats-card__number {
  font-family: var(--pitch-font-number);
  font-size: 3rem;
  color: var(--pitch-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pitch-stats-card__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.pitch-stats-card__trend {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  justify-content: center;
}
.pitch-stats-card__bar {
  width: 6px;
  background: var(--pitch-accent);
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
}

/* === Video Module (Module 6) === */
.pitch-video-section {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  align-items: start;
}
.pitch-video-player {
  border-radius: var(--pitch-radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.pitch-video-player video {
  width: 100%;
  display: block;
}
.pitch-video-timeline {
  background: rgba(10, 36, 99, 0.3);
  border-radius: var(--pitch-radius);
  padding: 20px;
  border: 1px solid rgba(60, 223, 255, 0.1);
}
.pitch-video-timeline__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(60, 223, 255, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pitch-video-timeline__item:hover {
  background: rgba(60, 223, 255, 0.05);
  padding-left: 8px;
}
.pitch-video-timeline__time {
  font-family: var(--pitch-font-heading);
  color: var(--pitch-accent);
  font-size: 0.85rem;
  white-space: nowrap;
}
.pitch-video-timeline__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* === Player Cards (Module 7) === */
.pitch-player-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.pitch-player-scroll::-webkit-scrollbar {
  height: 6px;
}
.pitch-player-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.pitch-player-scroll::-webkit-scrollbar-thumb {
  background: var(--pitch-accent);
  border-radius: 3px;
}
.pitch-player-card {
  flex: 0 0 280px;
  background: rgba(10, 36, 99, 0.4);
  border-radius: var(--pitch-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(60, 223, 255, 0.1);
  scroll-snap-align: start;
  transition: all 0.3s ease;
}
.pitch-player-card:hover {
  border-color: var(--pitch-accent);
  box-shadow: var(--pitch-glow);
}
.pitch-player-card__radar {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
}
.pitch-player-card__name {
  font-family: var(--pitch-font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.pitch-player-card__team {
  color: var(--pitch-text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.pitch-player-card__link {
  color: var(--pitch-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

/* === Formation Display (Module 8) === */
.pitch-formation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pitch-formation-card {
  background: #fff;
  border-radius: var(--pitch-radius);
  overflow: hidden;
  box-shadow: var(--pitch-shadow);
  transition: transform 0.3s ease;
}
.pitch-formation-card:hover {
  transform: translateY(-4px);
}
.pitch-formation-card__pitch {
  background: #1a5c2a;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.pitch-formation-card__pitch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.pitch-formation-card__pitch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.pitch-formation-card__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--pitch-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
  transform: translate(-50%, -50%);
}
.pitch-formation-card__info {
  padding: 20px;
}
.pitch-formation-card__name {
  font-family: var(--pitch-font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.pitch-formation-card__text {
  font-size: 0.9rem;
  color: var(--pitch-text-muted);
  line-height: 1.6;
}

/* === League Tabs (Module 9) === */
.pitch-league-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(60, 223, 255, 0.1);
  margin-bottom: 32px;
}
.pitch-league-tabs__tab {
  padding: 12px 24px;
  font-family: var(--pitch-font-heading);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.pitch-league-tabs__tab:hover,
.pitch-league-tabs__tab--active {
  color: var(--pitch-accent);
  border-bottom-color: var(--pitch-accent);
}
.pitch-league-table {
  width: 100%;
  border-collapse: collapse;
}
.pitch-league-table th {
  font-family: var(--pitch-font-heading);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(60, 223, 255, 0.1);
  text-transform: uppercase;
}
.pitch-league-table td {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pitch-league-table tr:hover td {
  background: rgba(60, 223, 255, 0.03);
}

/* === Testimonials (Module 10) === */
.pitch-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pitch-testimonial-card {
  background: #fff;
  border-radius: var(--pitch-radius);
  padding: 28px;
  box-shadow: var(--pitch-shadow);
  margin-bottom: 20px;
}
.pitch-testimonial-card__text {
  font-size: 0.95rem;
  color: var(--pitch-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.pitch-testimonial-card__author {
  font-family: var(--pitch-font-heading);
  font-size: 0.85rem;
  color: var(--pitch-primary);
}
.pitch-cert-wall {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.pitch-cert-wall__logo {
  max-width: 200px;
  border-radius: var(--pitch-radius);
}
.pitch-cert-wall__text {
  font-size: 0.85rem;
  color: var(--pitch-text-muted);
  text-align: center;
}

/* === CTA Module (Module 12) === */
.pitch-cta-section {
  text-align: center;
}
.pitch-cta-section__title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}
.pitch-cta-section__desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pitch-subscribe-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto 24px;
}
.pitch-subscribe-form__input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(60, 223, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--pitch-radius);
  color: #fff;
  font-family: var(--pitch-font-body);
  font-size: 0.95rem;
  outline: none;
}
.pitch-subscribe-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.pitch-subscribe-form__input:focus {
  border-color: var(--pitch-accent);
  box-shadow: var(--pitch-glow);
}

/* === Footer === */
.pitch-footer {
  background: var(--pitch-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 24px;
}
.pitch-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.pitch-footer__title {
  font-family: var(--pitch-font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}
.pitch-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pitch-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.pitch-footer__links a:hover {
  color: var(--pitch-accent);
}
.pitch-footer__cert {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.pitch-footer__cert-img {
  width: 60px;
  height: 60px;
  border-radius: var(--pitch-radius);
  object-fit: cover;
}
.pitch-footer__cert-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.pitch-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.pitch-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.pitch-footer__social-link:hover {
  background: var(--pitch-accent);
  color: var(--pitch-primary);
}
.pitch-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === Breadcrumb === */
.pitch-breadcrumb {
  padding: 16px 24px;
  max-width: 1400px;
  margin: 70px auto 0;
  font-size: 0.85rem;
}
.pitch-breadcrumb a {
  color: var(--pitch-text-muted);
}
.pitch-breadcrumb span {
  color: var(--pitch-text-muted);
  margin: 0 8px;
}

/* === Category Page Hero === */
.pitch-category-hero {
  background: var(--pitch-primary);
  padding: 80px 24px 60px;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.pitch-category-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.pitch-category-hero__content {
  position: relative;
  z-index: 2;
}
.pitch-category-hero__title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.pitch-category-hero__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* === Content Cards === */
.pitch-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pitch-content-card {
  background: #fff;
  border-radius: var(--pitch-radius);
  overflow: hidden;
  box-shadow: var(--pitch-shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.pitch-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.15);
}
.pitch-content-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pitch-content-card__body {
  padding: 20px;
}
.pitch-content-card__tag {
  display: inline-block;
  font-family: var(--pitch-font-heading);
  font-size: 0.7rem;
  color: var(--pitch-accent);
  background: rgba(60, 223, 255, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.pitch-content-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.pitch-content-card__excerpt {
  font-size: 0.9rem;
  color: var(--pitch-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.pitch-content-card__meta {
  font-size: 0.8rem;
  color: var(--pitch-text-muted);
}

/* === FAQ Module === */
.pitch-faq {
  max-width: 800px;
  margin: 0 auto;
}
.pitch-faq__item {
  border-bottom: 1px solid rgba(10, 36, 99, 0.1);
}
.pitch-faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--pitch-font-heading);
  font-size: 1rem;
  color: var(--pitch-text);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pitch-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--pitch-accent);
  transition: transform 0.3s ease;
}
.pitch-faq__item--open .pitch-faq__question::after {
  transform: rotate(45deg);
}
.pitch-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pitch-faq__item--open .pitch-faq__answer {
  max-height: 500px;
}
.pitch-faq__answer p {
  padding: 0 0 20px;
  color: var(--pitch-text-muted);
  line-height: 1.7;
}

/* === Article Page === */
.pitch-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}
.pitch-article__header {
  margin-bottom: 32px;
}
.pitch-article__title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pitch-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--pitch-text-muted);
  font-size: 0.9rem;
}
.pitch-article__author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.pitch-article__content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}
.pitch-article__content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.pitch-article__content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.pitch-article__content blockquote {
  border-left: 3px solid var(--pitch-accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(60, 223, 255, 0.05);
  border-radius: 0 var(--pitch-radius) var(--pitch-radius) 0;
  font-style: italic;
  color: var(--pitch-text-muted);
}
.pitch-article__sidebar {
  position: sticky;
  top: 90px;
}

/* === About Page === */
.pitch-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.pitch-about-story__image {
  border-radius: var(--pitch-radius);
  box-shadow: var(--pitch-shadow);
}
.pitch-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pitch-team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--pitch-radius);
  padding: 32px 20px;
  box-shadow: var(--pitch-shadow);
}
.pitch-team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--pitch-accent);
}
.pitch-team-card__name {
  font-family: var(--pitch-font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.pitch-team-card__role {
  color: var(--pitch-accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.pitch-team-card__bio {
  font-size: 0.9rem;
  color: var(--pitch-text-muted);
  line-height: 1.6;
}

/* === App Download Page === */
.pitch-app-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pitch-primary);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.pitch-app-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  padding: 40px 24px;
  align-items: center;
}
.pitch-app-hero__text {
  color: #fff;
}
.pitch-app-hero__title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.pitch-app-hero__desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.pitch-app-hero__buttons {
  display: flex;
  gap: 16px;
}
.pitch-app-hero__mockup {
  max-width: 350px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* === Formation Simulator === */
.pitch-simulator {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 20px;
  min-height: 600px;
}
.pitch-simulator__toolbar {
  background: var(--pitch-secondary);
  border-radius: var(--pitch-radius);
  padding: 20px;
}
.pitch-simulator__field {
  background: #1a5c2a;
  border-radius: var(--pitch-radius);
  position: relative;
  min-height: 500px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.pitch-simulator__field-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pitch-simulator__params {
  background: var(--pitch-secondary);
  border-radius: var(--pitch-radius);
  padding: 20px;
}
.pitch-simulator__btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pitch-simulator__btn {
  padding: 10px 16px;
  background: rgba(60, 223, 255, 0.1);
  border: 1px solid rgba(60, 223, 255, 0.2);
  color: var(--pitch-accent);
  border-radius: var(--pitch-radius);
  font-family: var(--pitch-font-heading);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pitch-simulator__btn:hover,
.pitch-simulator__btn--active {
  background: var(--pitch-accent);
  color: var(--pitch-primary);
}
.pitch-simulator__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-bottom: 6px;
  display: block;
}
.pitch-simulator__slider {
  width: 100%;
  margin-bottom: 16px;
  accent-color: var(--pitch-accent);
}
.pitch-simulator__player {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--pitch-green);
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pitch-primary);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
  transform: translate(-50%, -50%);
  z-index: 10;
  user-select: none;
}
.pitch-simulator__player:active {
  cursor: grabbing;
}

/* === Sidebar === */
.pitch-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pitch-sidebar__widget {
  background: #fff;
  border-radius: var(--pitch-radius);
  padding: 20px;
  box-shadow: var(--pitch-shadow);
}
.pitch-sidebar__title {
  font-family: var(--pitch-font-heading);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pitch-accent);
}
.pitch-sidebar__list {
  list-style: none;
}
.pitch-sidebar__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(10, 36, 99, 0.05);
}
.pitch-sidebar__list a {
  color: var(--pitch-text);
  font-size: 0.9rem;
}
.pitch-sidebar__list a:hover {
  color: var(--pitch-accent);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .pitch-nav-matrix { grid-template-columns: repeat(2, 1fr); }
  .pitch-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-content-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-formation-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-team-grid { grid-template-columns: repeat(2, 1fr); }
  .pitch-match-preview { grid-template-columns: 1fr; }
  .pitch-video-section { grid-template-columns: 1fr; }
  .pitch-testimonials { grid-template-columns: 1fr; }
  .pitch-about-story { grid-template-columns: 1fr; }
  .pitch-simulator { grid-template-columns: 1fr; }
  .pitch-app-hero__content { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .pitch-nav { display: none; }
  .pitch-nav--open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: var(--pitch-secondary); padding: 20px; }
  .pitch-hamburger { display: flex; }
  .pitch-module-hero__title { font-size: 1.8rem; }
  .pitch-nav-matrix { grid-template-columns: 1fr; }
  .pitch-stats-grid { grid-template-columns: 1fr 1fr; }
  .pitch-content-grid { grid-template-columns: 1fr; }
  .pitch-formation-grid { grid-template-columns: 1fr; }
  .pitch-footer__inner { grid-template-columns: 1fr; }
  .pitch-subscribe-form { flex-direction: column; }
  .pitch-module-hero__cta { flex-direction: column; align-items: center; }
  .pitch-section { padding: 48px 16px; }
  .pitch-category-hero { padding: 60px 16px 40px; }
}
