/* ============================================================
   骏马传奇 · 赛马竞速情报站 — 主样式表
   设计风格：英伦马场贵族风 (British Turf Aristocracy)
   CSS前缀：turf-
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Gentium+Book+Basic:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --turf-primary: #2C5F2D;
  --turf-secondary: #1B3A1B;
  --turf-accent: #8B4513;
  --turf-highlight: #DAA520;
  --turf-bg: #FAF8F0;
  --turf-text: #3D2B1F;
  --turf-text-muted: #8C7853;
  --turf-white: #FFFFFF;
  --turf-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --turf-radius: 4px;
  --turf-font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --turf-font-body: 'Gentium Book Basic', Georgia, 'Times New Roman', serif;
  --turf-max-width: 1280px;
  --turf-transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--turf-font-body);
  color: var(--turf-text);
  background-color: var(--turf-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--turf-primary);
  text-decoration: none;
  transition: var(--turf-transition);
}
a:hover { color: var(--turf-highlight); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--turf-font-title);
  color: var(--turf-text);
  line-height: 1.3;
  margin-bottom: 0.6em;
}
h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1em; }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }

/* ---------- Utility ---------- */
.turf-container {
  max-width: var(--turf-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.turf-section {
  padding: 60px 0;
}

.turf-section--dark {
  background-color: var(--turf-secondary);
  color: var(--turf-bg);
}

.turf-section--dark h2,
.turf-section--dark h3 {
  color: var(--turf-highlight);
}

.turf-divider {
  width: 80px;
  height: 3px;
  background: var(--turf-highlight);
  margin: 0 auto 30px;
  border: none;
}

.turf-text-center { text-align: center; }
.turf-text-muted { color: var(--turf-text-muted); }

/* ---------- Buttons ---------- */
.turf-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--turf-font-title);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--turf-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--turf-transition);
  text-align: center;
  line-height: 1.4;
}

.turf-btn--primary {
  background-color: var(--turf-accent);
  color: var(--turf-white);
  border-color: var(--turf-accent);
}
.turf-btn--primary:hover {
  background-color: #6B3410;
  color: var(--turf-white);
}

.turf-btn--secondary {
  background-color: var(--turf-primary);
  color: var(--turf-white);
  border-color: var(--turf-primary);
}
.turf-btn--secondary:hover {
  background-color: #1E4420;
  color: var(--turf-white);
}

.turf-btn--outline {
  background-color: transparent;
  color: var(--turf-highlight);
  border-color: var(--turf-highlight);
}
.turf-btn--outline:hover {
  background-color: var(--turf-highlight);
  color: var(--turf-secondary);
}

.turf-btn--gold {
  background-color: var(--turf-highlight);
  color: var(--turf-secondary);
  border-color: var(--turf-highlight);
}
.turf-btn--gold:hover {
  background-color: #C4941A;
  color: var(--turf-white);
}

/* ---------- Header / Navigation ---------- */
.turf-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--turf-secondary);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.turf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--turf-max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
}

.turf-header-logo {
  font-family: var(--turf-font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--turf-bg);
  white-space: nowrap;
}
.turf-header-logo span {
  color: var(--turf-highlight);
}
.turf-header-logo:hover {
  color: var(--turf-highlight);
}

.turf-nav { display: flex; align-items: center; gap: 0; }

.turf-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
  padding: 0;
  margin: 0;
}

.turf-nav__item {
  position: relative;
}

.turf-nav__link {
  display: block;
  padding: 0 14px;
  height: 70px;
  line-height: 70px;
  color: var(--turf-bg);
  font-family: var(--turf-font-body);
  font-size: 0.95rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--turf-transition);
}
.turf-nav__link:hover,
.turf-nav__link--active {
  color: var(--turf-highlight);
  border-bottom-color: var(--turf-highlight);
}

.turf-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.turf-header__search {
  background: none;
  border: none;
  color: var(--turf-bg);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
}

.turf-header__login {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Hamburger */
.turf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.turf-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--turf-bg);
  transition: var(--turf-transition);
}

/* ---------- Hero Module ---------- */
.turf-module-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--turf-bg);
  margin-top: 70px;
  overflow: hidden;
}

.turf-module-hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M40 80c10-20 30-40 60-30s20 40 40 50 40-10 50 10-10 40-30 50-40-10-60-5-30 25-50 15-20-30-30-50 10-20 20-40z' fill='none' stroke='%232C5F2D' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 300px;
}

.turf-module-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.turf-module-hero__video-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 8px;
  border: 3px solid var(--turf-highlight);
  border-radius: var(--turf-radius);
  box-shadow: 0 0 30px rgba(218,165,32,0.2), var(--turf-shadow);
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #DAA520 100%);
}

.turf-module-hero__video-frame video {
  display: block;
  width: 100%;
  max-width: 720px;
  border-radius: 2px;
}

.turf-module-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.4em;
  color: var(--turf-text);
}

.turf-module-hero__subtitle {
  font-size: 1.15rem;
  color: var(--turf-text-muted);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.turf-module-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Race Reminder Bar ---------- */
.turf-module-reminder {
  background-color: var(--turf-secondary);
  color: var(--turf-highlight);
  padding: 16px 0;
  overflow: hidden;
}

.turf-module-reminder__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--turf-font-title);
  font-size: 1.1rem;
}

.turf-module-reminder__icon {
  font-size: 1.6rem;
}

.turf-module-reminder__countdown {
  display: flex;
  gap: 8px;
}

.turf-countdown__unit {
  background: rgba(218,165,32,0.15);
  border: 1px solid var(--turf-highlight);
  border-radius: var(--turf-radius);
  padding: 4px 10px;
  min-width: 50px;
  text-align: center;
  font-weight: 700;
}

.turf-countdown__unit small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
}

/* ---------- Entry Matrix (Module 3) ---------- */
.turf-module-matrix {
  padding: 60px 0;
}

.turf-module-matrix__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.turf-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--turf-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--turf-bg);
  text-align: center;
  transition: var(--turf-transition);
  box-shadow: var(--turf-shadow);
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
}

.turf-badge:hover {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(218,165,32,0.5);
  color: var(--turf-highlight);
}

.turf-badge__icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.turf-badge__name {
  font-family: var(--turf-font-title);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- Analysis Card (Module 4) ---------- */
.turf-module-analysis {
  padding: 60px 0;
}

.turf-module-analysis__grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.turf-module-analysis__main {
  flex: 0 0 65%;
}

.turf-module-analysis__sidebar {
  flex: 0 0 35%;
}

.turf-analysis-card {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  overflow: hidden;
}

.turf-analysis-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.turf-analysis-card__body {
  padding: 24px;
}

.turf-analysis-card__badge {
  display: inline-block;
  background: var(--turf-primary);
  color: var(--turf-white);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--turf-radius);
  margin-bottom: 10px;
}

.turf-horse-list {
  list-style: none;
  padding: 0;
}

.turf-horse-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  margin-bottom: 12px;
  transition: var(--turf-transition);
}
.turf-horse-list__item:hover {
  transform: translateX(4px);
}

.turf-horse-list__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--turf-highlight);
}

.turf-horse-list__info {
  flex: 1;
}

.turf-horse-list__name {
  font-family: var(--turf-font-title);
  font-weight: 600;
  font-size: 1rem;
}

.turf-horse-list__odds {
  color: var(--turf-accent);
  font-weight: 700;
}

/* ---------- Data Pillars (Module 5) ---------- */
.turf-module-pillars {
  padding: 60px 0;
  background: var(--turf-bg);
}

.turf-pillars__grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.turf-pillar {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #f5f3ec 0%, #eae6d8 100%);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  position: relative;
}

.turf-pillar__numeral {
  font-family: var(--turf-font-title);
  font-size: 1.4rem;
  color: var(--turf-highlight);
  margin-bottom: 16px;
  font-weight: 700;
}

.turf-pillar__value {
  font-family: var(--turf-font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--turf-primary);
  line-height: 1.2;
}

.turf-pillar__label {
  font-size: 0.9rem;
  color: var(--turf-text-muted);
  margin-top: 8px;
}

/* ---------- Video Gallery (Module 6) ---------- */
.turf-module-videos {
  padding: 60px 0;
}

.turf-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.turf-video-card {
  background: var(--turf-text);
  border-radius: var(--turf-radius);
  overflow: hidden;
  box-shadow: var(--turf-shadow);
  padding: 10px;
}

.turf-video-card video {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.turf-video-card__title {
  color: var(--turf-bg);
  font-family: var(--turf-font-title);
  font-size: 0.95rem;
  padding: 12px 4px 4px;
  line-height: 1.4;
}

/* ---------- Bloodline (Module 7) ---------- */
.turf-module-bloodline {
  padding: 60px 0;
  background: var(--turf-bg);
}

.turf-bloodline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.turf-bloodline-card {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  display: flex;
  overflow: hidden;
  transition: var(--turf-transition);
}
.turf-bloodline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.turf-bloodline-card__img {
  width: 120px;
  min-height: 160px;
  object-fit: cover;
}

.turf-bloodline-card__body {
  padding: 16px;
  flex: 1;
}

.turf-bloodline-tree {
  font-size: 0.8rem;
  color: var(--turf-text-muted);
  margin-top: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--turf-highlight);
}

.turf-bloodline-tree__gen {
  margin-bottom: 4px;
}

/* ---------- Star Jockeys (Module 8) ---------- */
.turf-module-jockeys {
  padding: 60px 0;
}

.turf-jockeys__grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.turf-jockey-card {
  width: 280px;
  text-align: center;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  overflow: hidden;
  transition: var(--turf-transition);
}
.turf-jockey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.turf-jockey-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.turf-jockey-card__body {
  padding: 20px;
}

.turf-jockey-card__name {
  font-family: var(--turf-font-title);
  font-size: 1.2rem;
  font-weight: 700;
}

.turf-jockey-card__meta {
  font-size: 0.85rem;
  color: var(--turf-text-muted);
  margin: 4px 0 10px;
}

.turf-jockey-card__link {
  font-size: 0.9rem;
  color: var(--turf-highlight);
  font-weight: 600;
}

/* ---------- Testimonials (Module 9) ---------- */
.turf-module-testimonials {
  padding: 60px 0;
  background: var(--turf-text);
  color: var(--turf-bg);
}

.turf-module-testimonials h2 {
  color: var(--turf-highlight);
}

.turf-testimonials__slider {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.turf-testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.turf-testimonial {
  min-width: 100%;
  padding: 30px 60px;
  text-align: center;
}

.turf-testimonial__text {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.turf-testimonial__author {
  color: var(--turf-highlight);
  font-family: var(--turf-font-title);
  font-weight: 600;
}

.turf-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.turf-testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(218,165,32,0.3);
  border: none;
  cursor: pointer;
  transition: var(--turf-transition);
}
.turf-testimonials__dot--active {
  background: var(--turf-highlight);
}

.turf-testimonials__logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.turf-testimonials__logo-item {
  font-size: 0.85rem;
  color: var(--turf-text-muted);
  padding: 8px 16px;
  border: 1px solid rgba(140,120,83,0.3);
  border-radius: var(--turf-radius);
}

/* ---------- Partners (Module 10) ---------- */
.turf-module-partners {
  padding: 60px 0;
}

.turf-partners__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.turf-partner-seal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--turf-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turf-bg);
  font-family: var(--turf-font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: var(--turf-transition);
  box-shadow: var(--turf-shadow);
  cursor: default;
  padding: 10px;
}
.turf-partner-seal:hover {
  background: var(--turf-primary);
  transform: scale(1.1);
}

/* ---------- Feature Entry (Module 11) ---------- */
.turf-module-features {
  padding: 60px 0;
  background: var(--turf-bg);
}

.turf-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.turf-feature-card {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  padding: 30px;
  text-align: center;
  transition: var(--turf-transition);
}
.turf-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.turf-feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.turf-feature-card__title {
  font-family: var(--turf-font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---------- Subscribe (Module 12) ---------- */
.turf-module-subscribe {
  padding: 50px 0;
  background: var(--turf-secondary);
  text-align: center;
}

.turf-module-subscribe h2 {
  color: var(--turf-highlight);
  margin-bottom: 10px;
}

.turf-module-subscribe p {
  color: var(--turf-bg);
  opacity: 0.85;
  margin-bottom: 24px;
}

.turf-subscribe-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.turf-subscribe-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(218,165,32,0.4);
  border-radius: var(--turf-radius);
  background: rgba(255,255,255,0.1);
  color: var(--turf-bg);
  font-family: var(--turf-font-body);
  font-size: 0.95rem;
}
.turf-subscribe-form input[type="email"]::placeholder {
  color: rgba(250,248,240,0.5);
}

/* ---------- Footer ---------- */
.turf-footer {
  background: var(--turf-secondary);
  color: var(--turf-text-muted);
  font-size: 0.9rem;
}

.turf-footer__top {
  padding: 50px 0 30px;
  border-bottom: 1px solid rgba(140,120,83,0.2);
}

.turf-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.turf-footer__col-title {
  font-family: var(--turf-font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--turf-highlight);
  margin-bottom: 16px;
}

.turf-footer__links {
  list-style: none;
  padding: 0;
}

.turf-footer__links li { margin-bottom: 8px; }

.turf-footer__links a {
  color: var(--turf-text-muted);
  font-size: 0.85rem;
}
.turf-footer__links a:hover { color: var(--turf-highlight); }

.turf-footer__middle {
  padding: 24px 0;
  text-align: center;
  border-bottom: 1px solid rgba(140,120,83,0.2);
}

.turf-footer__cert {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.turf-footer__cert-item {
  font-size: 0.8rem;
  padding: 4px 12px;
  border: 1px solid rgba(140,120,83,0.3);
  border-radius: var(--turf-radius);
}

.turf-footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
}

.turf-footer__bottom a {
  color: var(--turf-text-muted);
  margin: 0 8px;
}

/* ---------- Breadcrumb ---------- */
.turf-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--turf-text-muted);
}

.turf-breadcrumb a {
  color: var(--turf-text-muted);
}
.turf-breadcrumb a:hover {
  color: var(--turf-highlight);
}

.turf-breadcrumb__sep {
  margin: 0 6px;
  color: var(--turf-text-muted);
}

/* ---------- Page Banner ---------- */
.turf-page-banner {
  position: relative;
  height: 300px;
  margin-top: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turf-page-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turf-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,58,27,0.7) 0%, rgba(27,58,27,0.85) 100%);
}

.turf-page-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--turf-bg);
}

.turf-page-banner__content h1 {
  color: var(--turf-bg);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.turf-page-banner__content p {
  color: rgba(250,248,240,0.8);
  font-size: 1.05rem;
}

/* ---------- Card Grid (List Pages) ---------- */
.turf-list-layout {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.turf-list-layout__main {
  flex: 1;
}

.turf-list-layout__sidebar {
  width: 300px;
  flex-shrink: 0;
}

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

.turf-card {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  overflow: hidden;
  transition: var(--turf-transition);
}
.turf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.turf-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.turf-card__body {
  padding: 18px;
}

.turf-card__tag {
  display: inline-block;
  background: var(--turf-primary);
  color: var(--turf-white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--turf-radius);
  margin-bottom: 8px;
}

.turf-card__title {
  font-family: var(--turf-font-title);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.turf-card__excerpt {
  font-size: 0.85rem;
  color: var(--turf-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.turf-card__meta {
  font-size: 0.75rem;
  color: var(--turf-text-muted);
}

/* ---------- Sidebar Widgets ---------- */
.turf-widget {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  padding: 20px;
  margin-bottom: 24px;
}

.turf-widget__title {
  font-family: var(--turf-font-title);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--turf-highlight);
}

.turf-widget__list {
  list-style: none;
  padding: 0;
}

.turf-widget__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}
.turf-widget__list li:last-child { border-bottom: none; }

.turf-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.turf-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.78rem;
  background: rgba(44,95,45,0.1);
  color: var(--turf-primary);
  border-radius: var(--turf-radius);
  transition: var(--turf-transition);
}
.turf-tag:hover {
  background: var(--turf-primary);
  color: var(--turf-white);
}

/* ---------- Article Page ---------- */
.turf-article {
  max-width: 800px;
}

.turf-article__header {
  margin-bottom: 24px;
}

.turf-article__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--turf-text-muted);
  margin-bottom: 20px;
}

.turf-article__content {
  line-height: 1.85;
}

.turf-article__content h2 {
  margin-top: 30px;
}

.turf-article__content img {
  border-radius: var(--turf-radius);
  margin: 20px 0;
  box-shadow: var(--turf-shadow);
}

.turf-article__share {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.turf-article__author-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  margin: 30px 0;
}

.turf-article__author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Calculator Page ---------- */
.turf-calculator {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.turf-calculator__input {
  flex: 1;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  padding: 30px;
}

.turf-calculator__output {
  flex: 1;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  padding: 30px;
}

.turf-form-group {
  margin-bottom: 18px;
}

.turf-form-group label {
  display: block;
  font-family: var(--turf-font-title);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.turf-form-group select,
.turf-form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--turf-radius);
  font-family: var(--turf-font-body);
  font-size: 0.95rem;
  background: var(--turf-bg);
  color: var(--turf-text);
}

.turf-result-box {
  background: linear-gradient(135deg, rgba(44,95,45,0.05), rgba(218,165,32,0.05));
  border: 1px solid rgba(218,165,32,0.3);
  border-radius: var(--turf-radius);
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.turf-result-box__value {
  font-family: var(--turf-font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--turf-primary);
}

.turf-result-box__label {
  font-size: 0.85rem;
  color: var(--turf-text-muted);
}

/* ---------- FAQ ---------- */
.turf-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.turf-faq-item {
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
  margin-bottom: 12px;
  overflow: hidden;
}

.turf-faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--turf-font-title);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--turf-text);
  transition: var(--turf-transition);
}
.turf-faq-item__question:hover {
  color: var(--turf-primary);
}

.turf-faq-item__icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.turf-faq-item--open .turf-faq-item__icon {
  transform: rotate(45deg);
}

.turf-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.turf-faq-item--open .turf-faq-item__answer {
  max-height: 500px;
  padding: 0 24px 18px;
}

/* ---------- APP Download ---------- */
.turf-app-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

.turf-app-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turf-app-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,58,27,0.75), rgba(27,58,27,0.9));
}

.turf-app-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--turf-bg);
  padding: 40px;
}

.turf-app-hero__content h1 {
  color: var(--turf-bg);
}

.turf-app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.turf-app-feature {
  text-align: center;
  padding: 30px;
  background: var(--turf-white);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
}

.turf-app-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* ---------- About Page ---------- */
.turf-about-section {
  padding: 50px 0;
}

.turf-about-section:nth-child(even) {
  background: var(--turf-white);
}

.turf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.turf-team-card {
  text-align: center;
  padding: 24px;
  background: var(--turf-bg);
  border-radius: var(--turf-radius);
  box-shadow: var(--turf-shadow);
}

.turf-team-card__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--turf-highlight);
}

/* ---------- Comments ---------- */
.turf-comments {
  margin-top: 40px;
}

.turf-comment {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.turf-comment__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--turf-primary);
  color: var(--turf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--turf-font-title);
  font-weight: 700;
  flex-shrink: 0;
}

.turf-comment__body { flex: 1; }

.turf-comment__author {
  font-weight: 700;
  font-size: 0.9rem;
}

.turf-comment__date {
  font-size: 0.75rem;
  color: var(--turf-text-muted);
  margin-left: 8px;
}

.turf-comment__text {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .turf-card-grid { grid-template-columns: repeat(2, 1fr); }
  .turf-bloodline__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .turf-container { padding: 0 20px; }

  .turf-hamburger { display: flex; }

  .turf-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--turf-secondary);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .turf-nav--open { max-height: 500px; }

  .turf-nav__list {
    flex-direction: column;
    width: 100%;
  }

  .turf-nav__link {
    height: auto;
    line-height: 1.4;
    padding: 12px 20px;
  }

  .turf-header__actions { display: none; }

  .turf-module-hero { min-height: 60vh; }
  .turf-module-hero h1 { font-size: 1.8rem; }

  .turf-module-analysis__grid { flex-direction: column; }
  .turf-module-analysis__main,
  .turf-module-analysis__sidebar { flex: none; width: 100%; }

  .turf-pillars__grid { flex-wrap: wrap; }
  .turf-pillar { flex: 0 0 calc(50% - 12px); max-width: none; }

  .turf-videos__grid { grid-template-columns: 1fr; }

  .turf-bloodline__grid { grid-template-columns: 1fr; }

  .turf-jockeys__grid { flex-direction: column; align-items: center; }

  .turf-card-grid { grid-template-columns: 1fr; }

  .turf-list-layout { flex-direction: column; }
  .turf-list-layout__sidebar { width: 100%; }

  .turf-calculator { flex-direction: column; }

  .turf-footer__grid { grid-template-columns: repeat(2, 1fr); }

  .turf-features__grid { grid-template-columns: 1fr; }
  .turf-app-features { grid-template-columns: 1fr; }
  .turf-team-grid { grid-template-columns: 1fr; }

  .turf-subscribe-form { flex-direction: column; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .turf-module-hero h1 { font-size: 1.5rem; }
  .turf-module-hero__cta { flex-direction: column; align-items: center; }
  .turf-pillars__grid { flex-direction: column; }
  .turf-pillar { flex: none; }
  .turf-footer__grid { grid-template-columns: 1fr; }
  .turf-badge { width: 100px; height: 100px; }
}

/* ---------- Animations ---------- */
@keyframes turf-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.turf-animate {
  opacity: 0;
  transform: translateY(20px);
}

.turf-animate--visible {
  animation: turf-fadeInUp 0.6s ease forwards;
}

/* Horseshoe loading animation */
@keyframes turf-horseshoe-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.turf-loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(218,165,32,0.2);
  border-top-color: var(--turf-highlight);
  border-radius: 50%;
  animation: turf-horseshoe-spin 0.8s linear infinite;
  margin: 20px auto;
}

/* Ribbon flutter */
@keyframes turf-ribbon-flutter {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.turf-ribbon {
  display: inline-block;
  animation: turf-ribbon-flutter 3s ease-in-out infinite;
}
