/* ============================================================
   THE WINNER'S CIRCLE — Page-Specific Styles
   Homepage, Predictions, Blog, Login, Dashboard, etc.
   ============================================================ */

/* ======================
   HOMEPAGE — HERO SLIDER
   ====================== */
.wc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wc-charcoal);
}

.wc-hero__mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--wc-hero-mesh);
  z-index: 1;
}

.wc-hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wc-hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.wc-hero .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,18,21,0.92) 0%,
    rgba(18,18,21,0.75) 50%,
    rgba(18,18,21,0.85) 100%
  );
}

.wc-hero .slide.active {
  opacity: 1;
}

.wc-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: calc(var(--wc-nav-height) + var(--wc-space-16)) var(--wc-space-6) var(--wc-space-16);
  width: 100%;
}

.wc-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-2);
  font-size: var(--wc-text-xs);
  font-weight: 600;
  color: var(--wc-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--wc-space-6);
}

.wc-hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--wc-gold);
}

.wc-hero__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-5xl);
  color: var(--wc-text-primary);
  max-width: 700px;
  margin-bottom: var(--wc-space-6);
  line-height: 1.1;
}

.wc-hero__title em {
  color: var(--wc-gold);
  font-style: italic;
}

.wc-hero__desc {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--wc-space-8);
}

.wc-hero__actions {
  display: flex;
  gap: var(--wc-space-4);
  flex-wrap: wrap;
}

.wc-hero__stats {
  display: flex;
  gap: var(--wc-space-10);
  margin-top: var(--wc-space-12);
  padding-top: var(--wc-space-8);
  border-top: 1px solid var(--wc-border);
}

.wc-hero__stat-value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-2xl);
  font-weight: 700;
  color: var(--wc-gold);
  display: block;
}

.wc-hero__stat-label {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

/* Hero Slider Navigation */
.wc-hero__dots {
  position: absolute;
  bottom: var(--wc-space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--wc-space-3);
}

.wc-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--wc-radius-full);
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--wc-transition-fast);
  padding: 0;
}

.wc-hero__dot.active {
  background: var(--wc-gold);
  width: 28px;
}

/* Hero Slider Arrows */
.wc-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: var(--wc-radius-full);
  background: rgba(18,18,21,0.6);
  border: 1px solid var(--wc-border);
  color: var(--wc-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--wc-transition-fast);
}

.wc-hero__arrow:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--wc-gold);
  color: var(--wc-gold);
}

.wc-hero__arrow--prev { left: var(--wc-space-6); }
.wc-hero__arrow--next { right: var(--wc-space-6); }

@media (max-width: 768px) {
  .wc-hero {
    min-height: 70vh;
  }

  .wc-hero__stats {
    flex-direction: column;
    gap: var(--wc-space-4);
  }

  .wc-hero__arrow { display: none; }
}

/* ======================
   HOMEPAGE — TRACKS SECTION
   ====================== */
.wc-tracks {
  padding: var(--wc-space-20) 0;
  background: var(--wc-charcoal);
}

.wc-track-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  transition: all var(--wc-transition-base);
}

.wc-track-card:hover {
  border-color: var(--wc-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--wc-shadow-md);
}

.wc-track-card__header {
  padding: var(--wc-space-5) var(--wc-space-6);
  border-bottom: 1px solid var(--wc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wc-track-card__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  font-weight: 600;
}

.wc-track-card__body {
  padding: var(--wc-space-6);
}

.wc-track-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wc-space-4);
  margin-bottom: var(--wc-space-4);
}

.wc-track-card__stat-value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-xl);
  font-weight: 700;
  color: var(--wc-gold);
  display: block;
}

.wc-track-card__stat-label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-track-card__desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.6;
}

.wc-track-card__footer {
  padding: var(--wc-space-4) var(--wc-space-6);
  border-top: 1px solid var(--wc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
}

/* ======================
   HOMEPAGE — NEWSLETTER
   ====================== */
.wc-newsletter {
  padding: var(--wc-space-16) 0;
  background: var(--wc-surface);
  border-top: 1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
}

.wc-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.wc-newsletter__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-newsletter__desc {
  color: var(--wc-text-secondary);
  margin-bottom: var(--wc-space-6);
}

.wc-newsletter__form {
  display: flex;
  gap: var(--wc-space-3);
}

.wc-newsletter__form input {
  flex: 1;
  padding: var(--wc-space-3) var(--wc-space-4);
  background: var(--wc-charcoal);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  color: var(--wc-text-primary);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-base);
}

.wc-newsletter__form input:focus {
  border-color: var(--wc-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

@media (max-width: 600px) {
  .wc-newsletter__form {
    flex-direction: column;
  }
}

/* ======================
   HOMEPAGE — TESTIMONIALS
   ====================== */
.wc-testimonials {
  padding: var(--wc-space-20) 0;
}

.wc-testimonial-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-8);
  position: relative;
}

.wc-testimonial-card__quote {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--wc-space-6);
  font-style: italic;
}

.wc-testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--wc-font-heading);
  font-size: 3rem;
  color: var(--wc-gold);
  line-height: 1;
  display: block;
  margin-bottom: var(--wc-space-2);
}

.wc-testimonial-card__author {
  font-weight: 600;
  color: var(--wc-text-primary);
  font-size: var(--wc-text-sm);
}

.wc-testimonial-card__role {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

/* ======================
   LOGIN PAGE
   ====================== */
.wc-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--wc-space-6);
  background: var(--wc-hero-mesh), var(--wc-charcoal);
}

.wc-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-xl);
  overflow: hidden;
}

.wc-login-card__header {
  padding: var(--wc-space-8) var(--wc-space-8) var(--wc-space-6);
  text-align: center;
  border-bottom: 1px solid var(--wc-border);
}

.wc-login-card__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--wc-space-4);
  border-radius: var(--wc-radius-lg);
}

.wc-login-card__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
}

.wc-login-card__subtitle {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

.wc-login-card__body {
  padding: var(--wc-space-8);
}

.wc-login-card__footer {
  padding: 0 var(--wc-space-8) var(--wc-space-8);
  text-align: center;
}

.wc-login-card__footer a {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

.wc-login-card__footer a:hover {
  color: var(--wc-gold);
}

/* ======================
   PREDICTIONS PAGE
   ====================== */
.wc-predictions {
  padding-top: 0;
}

.wc-race-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--wc-space-6);
  transition: border-color var(--wc-transition-base);
}

.wc-race-card:hover {
  border-color: var(--wc-border-strong);
}

.wc-race-card__header {
  padding: var(--wc-space-5) var(--wc-space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--wc-space-3);
  border-bottom: 1px solid var(--wc-border);
  background: var(--wc-surface-raised);
}

.wc-race-card__track {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  font-weight: 600;
}

.wc-race-card__meta {
  display: flex;
  align-items: center;
  gap: var(--wc-space-4);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

.wc-race-card__badges {
  display: flex;
  gap: var(--wc-space-2);
}

.wc-race-card__body {
  padding: var(--wc-space-6);
}

.wc-horse-pick {
  display: flex;
  align-items: flex-start;
  gap: var(--wc-space-5);
}

.wc-horse-pick__number {
  width: 48px;
  height: 48px;
  border-radius: var(--wc-radius-full);
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--wc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-lg);
  font-weight: 700;
  color: var(--wc-gold);
  flex-shrink: 0;
}

.wc-horse-pick__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-horse-pick__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--wc-space-3);
  margin-bottom: var(--wc-space-4);
}

.wc-horse-pick__detail-label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-horse-pick__detail-value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-primary);
  font-weight: 600;
}

.wc-analysis {
  padding: var(--wc-space-4) var(--wc-space-5);
  background: rgba(201,168,76,0.04);
  border-left: 3px solid var(--wc-gold);
  border-radius: 0 var(--wc-radius-sm) var(--wc-radius-sm) 0;
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
  margin-top: var(--wc-space-4);
  font-style: italic;
}

/* Locked content overlay for predictions */
.wc-prediction-locked {
  position: relative;
}

.wc-prediction-locked .wc-race-card__body {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.wc-prediction-locked__overlay {
  position: absolute;
  inset: 0;
  top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--wc-space-4);
  background: linear-gradient(to bottom, transparent 0%, rgba(26,26,31,0.95) 30%);
  z-index: 2;
  padding: var(--wc-space-8);
  text-align: center;
}

.wc-prediction-locked__icon {
  width: 48px;
  height: 48px;
  color: var(--wc-gold);
}

.wc-prediction-locked__text {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

/* ======================
   MEMBERSHIP PAGE
   ====================== */
.wc-membership {
  padding-top: 0;
}

/* Featured pricing card glow */
.wc-pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--wc-radius-lg);
  background: var(--wc-gold-gradient);
  z-index: -1;
  opacity: 0.6;
  filter: blur(16px);
}

.wc-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* FAQ Section */
.wc-faq {
  max-width: 720px;
  margin: 0 auto;
}

.wc-faq-item {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-md);
  margin-bottom: var(--wc-space-3);
  overflow: hidden;
}

.wc-faq-item__question {
  padding: var(--wc-space-5) var(--wc-space-6);
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-base);
  color: var(--wc-text-primary);
  font-weight: 600;
}

.wc-faq-item__answer {
  padding: 0 var(--wc-space-6) var(--wc-space-5);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
}

/* Comparison Table */
.wc-comparison-table {
  overflow-x: auto;
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  margin-top: var(--wc-space-12);
}

.wc-comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.wc-comparison-table th {
  padding: var(--wc-space-4);
  font-size: var(--wc-text-sm);
  font-weight: 600;
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--wc-surface);
  border-bottom: 1px solid var(--wc-border);
  text-align: center;
}

.wc-comparison-table th:first-child {
  text-align: left;
}

.wc-comparison-table td {
  padding: var(--wc-space-4);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  text-align: center;
}

.wc-comparison-table td:first-child {
  text-align: left;
  color: var(--wc-text-secondary);
}

.wc-comparison-table .wc-check-icon {
  color: var(--wc-gold);
}

.wc-comparison-table .wc-x-icon {
  color: var(--wc-text-muted);
}

/* ======================
   ABOUT PAGE
   ====================== */
.wc-about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wc-space-12);
  align-items: center;
  padding: var(--wc-space-16) 0;
}

.wc-about-section--reverse {
  direction: rtl;
}

.wc-about-section--reverse > * {
  direction: ltr;
}

.wc-about-section__image {
  border-radius: var(--wc-radius-lg);
  border: 1px solid var(--wc-border);
  overflow: hidden;
}

.wc-about-section__image img {
  width: 100%;
  height: auto;
}

.wc-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-4);
  margin-top: var(--wc-space-6);
}

.wc-about-stat__value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-2xl);
  font-weight: 700;
  color: var(--wc-gold);
}

.wc-about-stat__label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Steps / Methodology */
.wc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-6);
}

.wc-step-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-8);
  text-align: center;
  position: relative;
}

.wc-step-card__number {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-3xl);
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  position: absolute;
  top: var(--wc-space-4);
  right: var(--wc-space-5);
}

.wc-step-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--wc-space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--wc-radius-md);
  background: rgba(201,168,76,0.08);
  color: var(--wc-gold);
}

.wc-step-card__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-step-card__desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
}

/* Mission / Vision cards */
.wc-feature-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-8);
}

.wc-feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--wc-radius-md);
  background: rgba(201,168,76,0.08);
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-5);
}

.wc-feature-card__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-feature-card__desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
}

/* Contact Section */
.wc-contact-section {
  background: var(--wc-surface);
  border-top: 1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
  padding: var(--wc-space-16) 0;
}

.wc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-6);
  margin-top: var(--wc-space-8);
}

.wc-contact-card {
  background: var(--wc-surface-raised);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  text-align: center;
  transition: border-color var(--wc-transition-base);
}

.wc-contact-card:hover {
  border-color: var(--wc-border-strong);
}

.wc-contact-card__icon {
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-3);
}

.wc-contact-card__title {
  font-weight: 600;
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
}

.wc-contact-card__value {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

@media (max-width: 992px) {
  .wc-about-section {
    grid-template-columns: 1fr;
  }

  .wc-about-section--reverse {
    direction: ltr;
  }

  .wc-steps-grid,
  .wc-contact-cards {
    grid-template-columns: 1fr;
  }

  .wc-about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ======================
   VIDEOS PAGE
   ====================== */
.wc-videos {
  padding-top: 0;
}

.wc-featured-video {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--wc-space-12);
}

.wc-featured-video__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.wc-featured-video__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wc-featured-video__info {
  padding: var(--wc-space-6);
}

.wc-featured-video__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-featured-video__meta {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
}

.wc-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--wc-space-6);
}

.wc-video-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  transition: all var(--wc-transition-base);
}

.wc-video-card:hover {
  border-color: var(--wc-gold);
  transform: translateY(-2px);
  box-shadow: var(--wc-shadow-md);
}

.wc-video-card__player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--wc-charcoal);
}

.wc-video-card__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wc-video-card__info {
  padding: var(--wc-space-5);
}

.wc-video-card__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-base);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
  font-weight: 600;
}

.wc-video-card__desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  margin-bottom: var(--wc-space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wc-video-card__date {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

/* YouTube CTA */
.wc-youtube-cta {
  text-align: center;
  padding: var(--wc-space-16) 0;
  background: var(--wc-surface);
  border-top: 1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
  margin-top: var(--wc-space-12);
}

.wc-youtube-cta__icon {
  color: var(--wc-danger);
  margin-bottom: var(--wc-space-4);
}

.wc-youtube-cta__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-youtube-cta__desc {
  color: var(--wc-text-secondary);
  margin-bottom: var(--wc-space-6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   RESULTS PAGE
   ====================== */
.wc-results {
  padding-top: 0;
}

.wc-overall-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--wc-space-6);
  margin-bottom: var(--wc-space-12);
}

.wc-overall-stat {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  text-align: center;
}

.wc-overall-stat--primary {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.wc-overall-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--wc-radius-md);
  background: rgba(201,168,76,0.1);
  color: var(--wc-gold);
  margin: 0 auto var(--wc-space-4);
}

.wc-overall-stat__value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-3xl);
  font-weight: 700;
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-2);
}

.wc-overall-stat__label {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Monthly Breakdown */
.wc-month-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  transition: border-color var(--wc-transition-base);
}

.wc-month-card:hover {
  border-color: var(--wc-border-strong);
}

.wc-month-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--wc-space-4);
}

.wc-month-card__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  font-weight: 600;
}

.wc-month-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-3);
  margin-bottom: var(--wc-space-4);
}

.wc-month-card__stat-value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-lg);
  font-weight: 700;
  color: var(--wc-text-primary);
}

.wc-month-card__stat-value--gold {
  color: var(--wc-gold);
}

.wc-month-card__stat-label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

/* Track Stats */
.wc-track-stat-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
}

.wc-track-stat-card__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
  font-weight: 600;
}

.wc-track-stat-card__location {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
  margin-bottom: var(--wc-space-4);
}

.wc-track-stat-card__stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--wc-space-4);
}

@media (max-width: 992px) {
  .wc-overall-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wc-overall-stats {
    grid-template-columns: 1fr;
  }
}

/* ======================
   BLOG PAGE
   ====================== */
.wc-blog {
  padding-top: 0;
}

.wc-blog-hero {
  padding: calc(var(--wc-nav-height) + var(--wc-space-12)) 0 var(--wc-space-12);
  text-align: center;
  background: var(--wc-hero-mesh), var(--wc-charcoal);
  border-bottom: 1px solid var(--wc-border);
}

.wc-blog-hero__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-4xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
}

.wc-blog-hero__subtitle {
  font-size: var(--wc-text-lg);
  color: var(--wc-text-secondary);
}

/* Featured Post */
.wc-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--wc-space-12);
  transition: border-color var(--wc-transition-base);
}

.wc-featured-post:hover {
  border-color: var(--wc-gold);
}

.wc-featured-post__image {
  min-height: 300px;
  background: var(--wc-hero-mesh), var(--wc-surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-featured-post__content {
  padding: var(--wc-space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wc-featured-post__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-4);
}

.wc-featured-post__excerpt {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--wc-space-6);
}

.wc-featured-post__meta {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
  margin-bottom: var(--wc-space-4);
}

/* Blog Grid */
.wc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--wc-space-6);
}

.wc-blog-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  transition: all var(--wc-transition-base);
}

.wc-blog-card:hover {
  border-color: var(--wc-gold);
  transform: translateY(-3px);
  box-shadow: var(--wc-shadow-md);
}

.wc-blog-card__image {
  height: 200px;
  background: var(--wc-hero-mesh), var(--wc-surface-raised);
  position: relative;
}

.wc-blog-card__category {
  position: absolute;
  top: var(--wc-space-4);
  left: var(--wc-space-4);
}

.wc-blog-card__content {
  padding: var(--wc-space-6);
}

.wc-blog-card__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-3);
  font-weight: 600;
  line-height: 1.3;
}

.wc-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.wc-blog-card__title a:hover {
  color: var(--wc-gold);
}

.wc-blog-card__excerpt {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--wc-space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wc-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
  padding-top: var(--wc-space-4);
  border-top: 1px solid var(--wc-border);
}

@media (max-width: 768px) {
  .wc-featured-post {
    grid-template-columns: 1fr;
  }

  .wc-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   BLOG POST (SINGLE)
   ====================== */
.wc-article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--wc-space-10);
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: var(--wc-space-8) var(--wc-space-6);
}

.wc-article__header {
  margin-bottom: var(--wc-space-8);
}

.wc-article__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-4xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-4);
  line-height: 1.2;
}

.wc-article__meta {
  display: flex;
  align-items: center;
  gap: var(--wc-space-4);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
  flex-wrap: wrap;
}

.wc-article__body {
  font-size: var(--wc-text-base);
  color: var(--wc-text-secondary);
  line-height: 1.8;
}

.wc-article__body h2 {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin: var(--wc-space-8) 0 var(--wc-space-4);
}

.wc-article__body h3 {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-xl);
  color: var(--wc-text-primary);
  margin: var(--wc-space-6) 0 var(--wc-space-3);
}

.wc-article__body p {
  margin-bottom: var(--wc-space-5);
}

.wc-article__body blockquote {
  padding: var(--wc-space-5) var(--wc-space-6);
  border-left: 3px solid var(--wc-gold);
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--wc-radius-sm) var(--wc-radius-sm) 0;
  margin: var(--wc-space-6) 0;
  font-style: italic;
}

.wc-article__body img {
  border-radius: var(--wc-radius-md);
  margin: var(--wc-space-6) 0;
}

.wc-article__body a {
  color: var(--wc-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sidebar */
.wc-sidebar {
  position: sticky;
  top: calc(var(--wc-nav-height) + var(--wc-space-6));
}

.wc-sidebar__section {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  margin-bottom: var(--wc-space-6);
}

.wc-sidebar__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-base);
  color: var(--wc-gold);
  margin-bottom: var(--wc-space-4);
  font-weight: 600;
}

.wc-sidebar__author-name {
  font-weight: 600;
  color: var(--wc-text-primary);
}

.wc-sidebar__author-role {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

.wc-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wc-space-2);
}

.wc-sidebar__tag {
  padding: var(--wc-space-1) var(--wc-space-3);
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
  background: var(--wc-surface-raised);
  border-radius: var(--wc-radius-full);
  text-decoration: none;
  transition: all var(--wc-transition-fast);
}

.wc-sidebar__tag:hover {
  color: var(--wc-gold);
  background: rgba(201,168,76,0.1);
}

/* Share buttons */
.wc-share-buttons {
  display: flex;
  gap: var(--wc-space-2);
}

.wc-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--wc-radius-sm);
  background: var(--wc-surface-raised);
  color: var(--wc-text-secondary);
  transition: all var(--wc-transition-fast);
  text-decoration: none;
}

.wc-share-btn:hover {
  color: var(--wc-gold);
  background: rgba(201,168,76,0.1);
}

/* Related Posts */
.wc-related-post {
  display: flex;
  gap: var(--wc-space-3);
  padding: var(--wc-space-3) 0;
  border-bottom: 1px solid var(--wc-border);
}

.wc-related-post:last-child {
  border-bottom: none;
}

.wc-related-post__thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--wc-radius-sm);
  background: var(--wc-surface-raised);
}

.wc-related-post__title {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--wc-space-1);
}

.wc-related-post__title a {
  color: inherit;
  text-decoration: none;
}

.wc-related-post__title a:hover {
  color: var(--wc-gold);
}

.wc-related-post__date {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
}

@media (max-width: 992px) {
  .wc-article {
    grid-template-columns: 1fr;
  }

  .wc-sidebar {
    position: static;
  }
}

/* ======================
   DASHBOARD
   ====================== */
.wc-dashboard-nav {
  background: var(--wc-surface);
  border-bottom: 1px solid var(--wc-border);
  padding: 0 var(--wc-space-6);
  height: var(--wc-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wc-dashboard-nav__brand {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-gold);
  text-decoration: none;
  font-weight: 700;
}

.wc-dashboard-nav__links {
  display: flex;
  gap: var(--wc-space-1);
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-dashboard-nav__link {
  padding: var(--wc-space-2) var(--wc-space-3);
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
  text-decoration: none;
  border-radius: var(--wc-radius-sm);
  transition: all var(--wc-transition-fast);
}

.wc-dashboard-nav__link:hover {
  color: var(--wc-text-primary);
  background: rgba(201,168,76,0.06);
}

.wc-dashboard-nav__link--active {
  color: var(--wc-gold);
}

.wc-dashboard-nav__user {
  display: flex;
  align-items: center;
  gap: var(--wc-space-3);
}

.wc-dashboard-nav__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--wc-radius-full);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--wc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-sm);
  color: var(--wc-gold);
  font-weight: 600;
}

.wc-dashboard-nav__username {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-primary);
  font-weight: 500;
}

.wc-dashboard-nav__logout {
  padding: var(--wc-space-2) var(--wc-space-4);
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
  background: transparent;
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  cursor: pointer;
  transition: all var(--wc-transition-fast);
  text-decoration: none;
  font-family: var(--wc-font-body);
}

.wc-dashboard-nav__logout:hover {
  color: var(--wc-danger);
  border-color: rgba(229,57,53,0.3);
}

/* Dashboard Container */
.wc-dashboard {
  max-width: var(--wc-container-max);
  margin: 0 auto;
  padding: var(--wc-space-8) var(--wc-space-6);
}

/* Dashboard Header */
.wc-dashboard__header {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-8);
  margin-bottom: var(--wc-space-8);
}

.wc-dashboard__welcome {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-2xl);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-2);
}

.wc-dashboard__membership {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-2);
  margin-bottom: var(--wc-space-6);
}

.wc-dashboard__quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wc-space-4);
}

.wc-dashboard__stat {
  background: var(--wc-surface-raised);
  border-radius: var(--wc-radius-md);
  padding: var(--wc-space-4);
  text-align: center;
}

.wc-dashboard__stat-value {
  font-family: var(--wc-font-mono);
  font-size: var(--wc-text-xl);
  font-weight: 700;
  color: var(--wc-gold);
}

.wc-dashboard__stat-label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dashboard Upgrade Banner */
.wc-upgrade-banner {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6) var(--wc-space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--wc-space-8);
  flex-wrap: wrap;
  gap: var(--wc-space-4);
}

.wc-upgrade-banner__text {
  font-size: var(--wc-text-base);
  color: var(--wc-text-primary);
  font-weight: 500;
}

.wc-upgrade-banner__desc {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-secondary);
}

/* Dashboard Track Cards */
.wc-dashboard__tracks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--wc-space-6);
  margin-bottom: var(--wc-space-8);
}

.wc-dashboard-track-card {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  transition: border-color var(--wc-transition-base);
}

.wc-dashboard-track-card:hover {
  border-color: var(--wc-border-strong);
}

.wc-dashboard-track-card__name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-1);
  font-weight: 600;
}

.wc-dashboard-track-card__location {
  font-size: var(--wc-text-sm);
  color: var(--wc-text-muted);
  margin-bottom: var(--wc-space-4);
}

.wc-dashboard-track-card__pick {
  background: var(--wc-surface-raised);
  border-radius: var(--wc-radius-md);
  padding: var(--wc-space-4);
  margin-bottom: var(--wc-space-4);
}

.wc-dashboard-track-card__pick-label {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--wc-space-1);
}

.wc-dashboard-track-card__pick-name {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-base);
  color: var(--wc-gold);
  font-weight: 600;
}

/* Dashboard Predictions Table */
.wc-dashboard__predictions {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  margin-bottom: var(--wc-space-8);
}

.wc-dashboard__predictions-header {
  padding: var(--wc-space-5) var(--wc-space-6);
  border-bottom: 1px solid var(--wc-border);
}

.wc-dashboard__predictions-header h3 {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-lg);
  color: var(--wc-text-primary);
}

/* Quick Actions */
.wc-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--wc-space-4);
}

.wc-quick-action {
  background: var(--wc-surface);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: var(--wc-space-6);
  text-decoration: none;
  transition: all var(--wc-transition-base);
  display: flex;
  align-items: flex-start;
  gap: var(--wc-space-4);
}

.wc-quick-action:hover {
  border-color: var(--wc-gold);
  transform: translateY(-2px);
}

.wc-quick-action__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--wc-radius-md);
  background: rgba(201,168,76,0.1);
  color: var(--wc-gold);
}

.wc-quick-action__title {
  font-weight: 600;
  color: var(--wc-text-primary);
  margin-bottom: var(--wc-space-1);
  font-size: var(--wc-text-sm);
}

.wc-quick-action__desc {
  font-size: var(--wc-text-xs);
  color: var(--wc-text-secondary);
}

@media (max-width: 768px) {
  .wc-dashboard-nav {
    flex-wrap: wrap;
    height: auto;
    padding: var(--wc-space-4) var(--wc-space-4);
    gap: var(--wc-space-3);
  }

  .wc-dashboard-nav__links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: var(--wc-space-2);
  }

  .wc-dashboard__quick-stats {
    grid-template-columns: 1fr;
  }

  .wc-dashboard__tracks {
    grid-template-columns: 1fr;
  }
}
