/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
  min-height: 100vh;
}

/* Shared section eyebrow label */
.about-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.about-section__heading {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* Origin story section */
.about-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--overlay-white-6);
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-section__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.about-section__media {
  position: relative;
  border: 1px solid var(--overlay-white-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--bg-secondary);
}

.about-section__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.4s ease;
}

.about-section__img:hover {
  filter: grayscale(0);
}

/* Values section */
.about-values-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--overlay-white-6);
}

.about-values-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-values-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-values-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-value-card {
  background-color: var(--overlay-white-3);
  border: 1px solid var(--overlay-white-7);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.about-value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--overlay-brand-12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-value-card__title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-value-card__description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mission section */
.about-mission-section {
  padding: 80px 0;
}

.about-mission-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-mission-section__quote {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 16px 0 40px;
  padding: 32px;
  border-left: 3px solid var(--brand-primary);
  border-right: 3px solid var(--brand-primary);
  background-color: rgba(241, 143, 1, 0.04);
  border-radius: var(--radius-lg);
  text-align: left;
}

.about-mission-section__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  min-height: 100vh;
}

.contact-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
}

.contact-page__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-page__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* Email Section */
.contact-page__email-section {
  padding: 0 16px 48px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-page__email-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page__email-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.contact-page__email-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background-color: var(--overlay-brand-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.contact-page__email-content {
  flex: 1;
}

.contact-page__email-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-page__email-address {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-page__email-note {
  font-size: 13px;
  color: var(--text-tertiary);
}

.contact-page__email-arrow {
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.contact-page__email-card:hover .contact-page__email-arrow {
  color: var(--brand-primary);
  transform: translate(2px, -2px);
}

/* Social Section */
.contact-page__social-section {
  padding: 48px 16px 64px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.contact-page__social-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-page__social-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-page__social-subtitle {
  font-size: 15px;
  color: var(--text-tertiary);
}

.contact-page__social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page__social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page__social-card:hover {
  border-color: var(--overlay-white-20);
  transform: translateY(-2px);
}

.contact-page__social-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--overlay-white-5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-page__social-card:hover .contact-page__social-card-icon {
  background-color: var(--overlay-brand-10);
  color: var(--brand-primary);
}

.contact-page__social-card-content {
  flex: 1;
  min-width: 0;
}

.contact-page__social-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-page__social-card-handle {
  font-size: 14px;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.contact-page__social-card-desc {
  font-size: 13px;
  color: var(--text-tertiary);
}

.contact-page__social-card-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-page__social-card:hover .contact-page__social-card-arrow {
  color: var(--brand-primary);
  transform: translate(2px, -2px);
}

/* Info Section */
.contact-page__info {
  padding: 48px 16px;
  border-top: 1px solid var(--ui-border);
}

.contact-page__info-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-page__info-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-page__info-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-page__info-list li {
  padding: 8px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .contact-page__hero {
    padding: 140px 24px 64px;
  }

  .contact-page__title {
    font-size: 40px;
  }

  .contact-page__email-section {
    padding: 0 24px 64px;
  }

  .contact-page__email-address {
    font-size: 24px;
  }

  .contact-page__social-section {
    padding: 64px 24px 80px;
  }

  .contact-page__social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-page__social-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .contact-page__social-card-arrow {
    display: none;
  }

  .contact-page__info {
    padding: 64px 24px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .contact-page__title {
    font-size: 48px;
  }

  .contact-page__social-title {
    font-size: 28px;
  }
}

/* ============================================
   DELETE ACCOUNT PAGE
   ============================================ */
.delete-account {
  min-height: 100vh;
}

.delete-account__hero {
  padding: 120px 16px 48px;
  text-align: center;
  border-bottom: 1px solid var(--ui-border);
}

.delete-account__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.delete-account__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.delete-account__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
}

.delete-account__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px;
}

.delete-account__section {
  margin-bottom: 48px;
}

.delete-account__section:last-child {
  margin-bottom: 0;
}

.delete-account__section-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ui-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.delete-account__section-icon {
  flex-shrink: 0;
  color: var(--brand-primary);
}

.delete-account__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.delete-account__text--muted {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* Notice Box */
.delete-account__notice {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 48px;
}

.delete-account__notice-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.delete-account__notice-icon {
  flex-shrink: 0;
  color: var(--color-error);
}

.delete-account__notice-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.delete-account__notice p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps */
.delete-account__steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.delete-account__steps li {
  counter-increment: steps;
  padding-left: 36px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.delete-account__steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--brand-primary);
  color: #000;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-account__steps li strong {
  color: var(--text-primary);
}

/* Requirements List */
.delete-account__requirements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.delete-account__requirements li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
}

.delete-account__requirements li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--brand-primary);
  font-weight: 700;
}

/* Email Reveal */
.delete-account__reveal {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.delete-account__reveal-text {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.delete-account__reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--brand-primary);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delete-account__reveal-btn:hover:not(:disabled) {
  background-color: var(--brand-secondary);
}

.delete-account__reveal-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.delete-account__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--overlay-black-20);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.delete-account__email-revealed {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.delete-account__check {
  color: var(--color-success);
  flex-shrink: 0;
}

.delete-account__email-revealed span {
  font-size: 14px;
  color: var(--text-secondary);
}

.delete-account__email {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}

.delete-account__email:hover {
  text-decoration: underline;
}

/* Data Lists */
.delete-account__data-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delete-account__data-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.delete-account__data-list--deleted li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-error);
}

.delete-account__data-list--retained li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--text-muted);
}

/* Timeframe */
.delete-account__timeframe {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.delete-account__timeframe-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
}

.delete-account__timeframe-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.delete-account__timeframe-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
}

/* Links */
.delete-account__link {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
}

.delete-account__link:hover {
  text-decoration: underline;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .delete-account__hero {
    padding: 140px 24px 64px;
  }

  .delete-account__title {
    font-size: 40px;
  }

  .delete-account__content {
    padding: 64px 24px;
  }

  .delete-account__timeframe {
    flex-direction: row;
  }

  .delete-account__timeframe-item {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .delete-account__title {
    font-size: 48px;
  }

  .delete-account__section-title {
    font-size: 24px;
  }
}

/* ============================================
   FEATURES PAGE
   ============================================ */
.features-page {
  min-height: 100vh;
}

.features-page__hero {
  padding: 120px 16px 60px;
  text-align: center;
}

.features-page__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.features-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.features-page__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.features-page__premium-nudge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  border: 1px solid var(--overlay-brand-30);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.features-page__premium-nudge:hover {
  background-color: var(--overlay-brand-8);
  border-color: rgba(241, 143, 1, 0.5);
}

.features-page__sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual Feature Section */
.feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px;
  border-top: 1px solid var(--ui-border);
}

.feature-section:nth-child(odd) {
  background-color: var(--bg-secondary);
}

.feature-section__phone {
  margin-bottom: 32px;
}

.feature-section__phone-wrapper {
  width: 220px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section__phone-wrapper--placeholder {
  border-radius: 32px;
  background: linear-gradient(145deg, var(--bg-surface), #0a0a0a);
  border: 2px solid var(--ui-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-section__phone-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1.25);
}

.feature-section__phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.feature-section__phone-icon {
  color: var(--brand-primary);
  opacity: 0.4;
}

.feature-section__phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.feature-section__content {
  max-width: 400px;
  text-align: center;
}

.feature-section__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background-color: var(--overlay-brand-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin: 0 auto 16px;
}

.feature-section__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-section__description {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.feature-section__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-section__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  flex-shrink: 0;
}

/* Features Page CTA */
.features-page__cta {
  padding: 80px 16px;
  text-align: center;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.features-page__cta-content {
  max-width: 500px;
  margin: 0 auto;
}

.features-page__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 640px) {
  .features-page__cta-buttons {
    flex-direction: row;
  }
}

.features-page__cta-title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.features-page__cta-text {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .features-page__hero {
    padding: 140px 24px 80px;
  }

  .features-page__title {
    font-size: 40px;
  }

  .feature-section {
    padding: 64px 24px;
  }

  .feature-section__phone-wrapper {
    width: 260px;
    height: 520px;
  }

  .feature-section__title {
    font-size: 28px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .features-page__title {
    font-size: 48px;
  }

  .feature-section {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    padding: 100px 48px;
  }

  .feature-section--reversed {
    flex-direction: row-reverse;
  }

  .feature-section__phone {
    margin-bottom: 0;
  }

  .feature-section__phone-wrapper {
    width: 280px;
    height: 560px;
  }

  .feature-section__content {
    text-align: left;
    max-width: 450px;
  }

  .feature-section__icon {
    margin: 0 0 16px 0;
  }

  .feature-section__title {
    font-size: 32px;
  }

  .feature-section__description {
    font-size: 16px;
  }

  .features-page__cta {
    padding: 100px 48px;
  }

  .features-page__cta-title {
    font-size: 36px;
  }
}

/* ============================================
   FIXTURE PAGE
   ============================================ */

/* ─── FIXTURES LIST PAGE ─────────────────────────────────────────────────── */

.fixtures-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.fixtures-page__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.fixtures-page__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.fixtures-page__subheading {
  color: var(--text-secondary);
  font-size: 1rem;
}

.fixtures-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.fixtures-day-group {
  margin-bottom: var(--space-xl);
}

.fixtures-day-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--overlay-white-10);
}

.fixtures-competition-group {
  margin-bottom: var(--space-lg);
}

.fixtures-competition-heading {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.fixtures-page__cta {
  margin-top: var(--space-xl);
}

/* Fixture card */
.fixtures-card {
  background: var(--surface-secondary, #0a0a0a);
  border: 1px solid var(--overlay-white-7);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
  position: relative;
}

.fixtures-card:hover {
  border-color: var(--overlay-brand-30);
  background: var(--overlay-white-3);
}

.fixtures-card__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-error-dark);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.fixtures-card__competition {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.fixtures-card__matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.fixtures-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.fixtures-card__team--away {
  align-items: center;
}

.fixtures-card__crest {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fixtures-card__initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--overlay-white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.fixtures-card__team-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

.fixtures-card__score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  justify-content: center;
}

.fixtures-card__score-sep {
  color: var(--text-tertiary);
}

.fixtures-card__kickoff {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
}

.fixtures-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: 11px;
}

.fixtures-card__date {
  color: var(--text-tertiary);
}

.fixtures-card__fans {
  color: var(--brand-primary);
  font-weight: 600;
}

.fixtures-page__spacer {
  height: 56px;
}

/* ─── Fixtures / Results Tabs ─────────────────────────────────────────────── */
.fixtures-page__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--overlay-white-10);
  margin-bottom: var(--space-md);
}

.fixtures-page__tab {
  flex: 1;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
}

.fixtures-page__tab:hover {
  color: var(--text-secondary);
}

.fixtures-page__tab--active {
  color: #fff;
  border-bottom-color: var(--brand-primary);
}

/* ─── Day Pills ───────────────────────────────────────────────────────────── */
.fixtures-page__pills-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: var(--space-lg);
  -ms-overflow-style: none;
}

.fixtures-page__pills-container::-webkit-scrollbar {
  display: none;
}

.fixtures-page__pills {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  min-width: -moz-min-content;
  min-width: min-content;
}

.fixtures-page__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--overlay-white-10);
  background: var(--overlay-white-4);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.fixtures-page__pill:hover {
  background: var(--overlay-white-8);
  color: var(--text-primary);
  border-color: var(--overlay-white-20);
}

.fixtures-page__pill--active {
  background: var(--brand-primary);
  color: #000;
  border-color: var(--brand-primary);
}

.fixtures-page__pill--active:hover {
  background: #e08500;
  border-color: #e08500;
  color: #000;
}

.fixtures-page__pill-label {
  line-height: 1;
}

.fixtures-page__pill-count {
  font-size: 10px;
  font-weight: 800;
  background: var(--overlay-black-20);
  border-radius: 10px;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}

.fixtures-page__pill--active .fixtures-page__pill-count {
  background: rgba(0, 0, 0, 0.25);
  color: #000;
}

/* ─── FT Badge ────────────────────────────────────────────────────────────── */
.fixtures-card__ft-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

@media (max-width: 640px) {
  .fixtures-page__tabs {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    padding: 0 var(--space-md);
  }

  .fixtures-page__pills-container {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    padding: 0 var(--space-md);
  }

  .fixtures-page__pill {
    padding: 8px 14px;
    font-size: 11px;
  }
}

.fixtures-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.fixtures-filters__row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fixtures-filters__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
  white-space: nowrap;
}

.fixtures-filter-btn {
  background: transparent;
  border: 1px solid var(--overlay-white-12);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fixtures-filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.fixtures-filter-btn--active {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: var(--overlay-brand-8);
}

/* ─── Date Strip (Sky Sports style) ─────────────────────────────────────── */

.fixtures-date-strip {
  margin-bottom: var(--space-lg);
}

.fixtures-date-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fixtures-date-strip__month {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fixtures-date-strip__today-btn {
  background: transparent;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.fixtures-date-strip__today-btn:hover {
  background: var(--brand-primary);
  color: #000;
}

.fixtures-date-strip__row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fixtures-date-strip__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--overlay-white-10);
  background: var(--overlay-white-4);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.fixtures-date-strip__arrow:hover {
  background: var(--overlay-white-10);
  color: var(--text-primary);
  border-color: var(--overlay-white-20);
}

.fixtures-date-strip__scroll {
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fixtures-date-strip__scroll::-webkit-scrollbar {
  display: none;
}

.fixtures-date-strip__pills {
  display: flex;
  gap: 6px;
  padding: 4px 0;
  min-width: -moz-min-content;
  min-width: min-content;
  justify-content: center;
}

.fixtures-date-strip__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--overlay-white-10);
  background: var(--overlay-white-4);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  min-width: 64px;
}

.fixtures-date-strip__pill:hover {
  background: var(--overlay-white-8);
  color: var(--text-primary);
  border-color: var(--overlay-white-20);
}

.fixtures-date-strip__pill--active {
  background: var(--brand-primary);
  color: #000;
  border-color: var(--brand-primary);
  font-weight: 800;
}

.fixtures-date-strip__pill--active:hover {
  background: #e08500;
  border-color: #e08500;
  color: #000;
}

.fixtures-date-strip__pill--today {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* ─── Filters Bar ───────────────────────────────────────────────────────── */

.fixtures-filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.fixtures-filters-bar__selects {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fixtures-filters-bar__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--overlay-white-4);
  border: 1px solid var(--overlay-white-12);
  border-radius: var(--radius-full);
  padding: 8px 32px 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.fixtures-filters-bar__select:hover,
.fixtures-filters-bar__select:focus {
  border-color: var(--overlay-white-25);
  color: var(--text-primary);
  outline: none;
}

.fixtures-filters-bar__select option {
  background: #1a1a1a;
  color: #fff;
}

.fixtures-filters-bar__search {
  position: relative;
  flex: 1;
  min-width: 160px;
  max-width: 260px;
}

.fixtures-filters-bar__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.fixtures-filters-bar__search-input {
  width: 100%;
  background: var(--overlay-white-4);
  border: 1px solid var(--overlay-white-12);
  border-radius: var(--radius-full);
  padding: 8px 32px 8px 32px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.fixtures-filters-bar__search-input::-moz-placeholder {
  color: var(--text-tertiary);
}

.fixtures-filters-bar__search-input::placeholder {
  color: var(--text-tertiary);
}

.fixtures-filters-bar__search-input:hover,
.fixtures-filters-bar__search-input:focus {
  border-color: var(--overlay-white-25);
  outline: none;
}

.fixtures-filters-bar__search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: var(--overlay-white-10);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s;
}

.fixtures-filters-bar__search-clear:hover {
  background: var(--overlay-white-20);
}

/* ─── Empty State ───────────────────────────────────────────────────────── */

.fixtures-empty {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.fixtures-empty__text {
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ─── Competition Heading (enhanced) ────────────────────────────────────── */

.fixtures-competition-heading__flag {
  margin-right: 6px;
}

.fixtures-competition-heading__count {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  background: var(--overlay-white-8);
  border-radius: 10px;
  padding: 1px 7px;
  color: var(--text-tertiary);
}

/* ─── Skeleton shimmer ──────────────────────────────────────────────────── */

.fixtures-card--skeleton {
  pointer-events: none;
  animation: fixtures-shimmer 1.5s ease-in-out infinite;
}

@keyframes fixtures-shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ─── Mobile overrides ──────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .fixtures-date-strip__pill {
    padding: 7px 10px;
    font-size: 11px;
    min-width: 56px;
  }

  .fixtures-date-strip__arrow {
    width: 28px;
    height: 28px;
  }

  .fixtures-filters-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .fixtures-filters-bar__selects {
    flex-direction: column;
  }

  .fixtures-filters-bar__search {
    max-width: none;
  }

  .fixtures-filters-bar__select {
    width: 100%;
  }
}

/* ─── FIXTURE DETAIL PAGE ─────────────────────────────────────────────────── */

.fixture-page {
  min-height: 100vh;
  padding-top: 40px;
}

.fixture-page__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* Back */

.fixture-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.fixture-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0;
  transition: color 0.2s;
}

.fixture-back:hover {
  color: var(--text-primary);
}

/* Competition Label */

.fixture-competition {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  background: var(--overlay-brand-12);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}

/* Matchup */

.fixture-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.fixture-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 160px;
}

.fixture-team--away {
  align-items: center;
}

.fixture-team__logo {
  width: 64px;
  height: 64px;
  border-radius: 0 !important;
  overflow: visible;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixture-team__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fixture-team__initials {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-tertiary);
}

.fixture-team__name {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.2;
}
.fixture-team__name--link { text-decoration: none; transition: var(--transition-fast); }
.fixture-team__name--link:hover { color: var(--brand-primary); }

/* Score */

.fixture-score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fixture-score__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.fixture-score__sep {
  font-size: 32px;
  color: var(--text-muted);
  font-weight: 300;
}

.fixture-score__vs {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Status */

.fixture-status {
  text-align: center;
  margin-bottom: 32px;
  padding: 12px;
  border-radius: var(--radius-md);
  background-color: var(--bg-elevated);
  border: 1px solid var(--ui-border);
}

.fixture-status__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-error);
  letter-spacing: 0.08em;
}

.fixture-status__time {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* Live Dot */

.fixture-live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-error);
  animation: live-pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Fan Count */

.fixture-fans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px;
  margin-bottom: 32px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--overlay-brand-20);
  border-radius: var(--radius-xl);
  text-align: center;
}

.fixture-fans__count {
  font-size: 48px;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
}

.fixture-fans__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Fixture CTA */

.fixture-cta {
  margin-top: 8px;
}

/* ── Fixture Detail — Enrichment Data ── */

.fx-score-detail {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  margin-top: -16px;
  margin-bottom: 8px;
}

.fx-info-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.fx-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: var(--bg-elevated);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--ui-border);
}

.fx-scorers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 16px;
}

.fx-scorer {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Tabs */
.fx-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ui-border);
  margin: 24px 0 0;
}

.fx-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.fx-tab:hover {
  color: var(--text-secondary);
}

.fx-tab--active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}

.fx-tab-content {
  padding-top: 24px;
}

/* Section title */
.fx-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin: 0 0 16px;
}

/* ── Stats ── */
.fx-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fx-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fx-stat-val {
  width: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.fx-stat-val--home { text-align: right; }
.fx-stat-val--away { text-align: left; }

.fx-stat-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fx-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.fx-stat-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 3px;
  display: flex;
  overflow: hidden;
}

.fx-stat-bar__home {
  background: var(--brand-primary);
  border-radius: 3px 0 0 3px;
  transition: width 0.4s ease;
}

.fx-stat-bar__away {
  background: #3B82F6;
  border-radius: 0 3px 3px 0;
  margin-left: auto;
  transition: width 0.4s ease;
}

/* ── Events ── */
.fx-events {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.fx-events::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ui-border);
  transform: translateX(-50%);
}

.fx-event {
  display: flex;
  align-items: center;
  padding: 8px 0;
  position: relative;
}

.fx-event--home { flex-direction: row; }
.fx-event--away { flex-direction: row-reverse; }

.fx-event__content {
  flex: 1;
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.fx-event__content--home { justify-content: flex-end; text-align: right; padding-right: 12px; }
.fx-event__content--away { justify-content: flex-start; text-align: left; padding-left: 12px; }

.fx-event__player {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.fx-event__assist {
  font-size: 11px;
  color: var(--text-muted);
}

.fx-event__minute {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  flex-shrink: 0;
  z-index: 1;
}

.fx-event__icon {
  font-size: 14px;
  line-height: 1;
}

.fx-event__time {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ── Lineups ── */
.fx-lineups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .fx-lineups {
    grid-template-columns: 1fr;
  }
}

.fx-lineups__team-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.fx-lineups__logo {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fx-lineup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fx-lineup__formation {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-primary);
}

.fx-lineup__coach {
  font-size: 11px;
  color: var(--text-muted);
}

.fx-lineup__players {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fx-lineup__player {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.fx-lineup__player:last-child { border-bottom: none; }

.fx-lineup__player--sub {
  opacity: 0.6;
}

.fx-lineup__number {
  width: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.fx-lineup__name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.fx-lineup__pos {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  width: 14px;
  text-align: center;
}

.fx-lineup__sub-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 12px 0 4px;
  padding-top: 8px;
  border-top: 1px solid var(--ui-border);
}

/* ── Player Cards ── */
.fx-performers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.fx-player-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--ui-border);
  border-radius: 10px;
}

.fx-player-card--motm {
  border-color: var(--brand-primary);
  background: rgba(241, 143, 1, 0.06);
}

.fx-player-card__rank {
  width: 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}

.fx-player-card--motm .fx-player-card__rank {
  font-size: 16px;
}

.fx-player-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.fx-player-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fx-player-card__team {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fx-player-card__rating {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: center;
}

.fx-player-card__stats {
  display: flex;
  gap: 6px;
}

.fx-player-card__stat {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal-page {
  min-height: 100vh;
}

.legal-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
}

.legal-page__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.legal-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-page__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.legal-page__intro {
  padding: 0 16px 48px;
}

.legal-page__intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: var(--overlay-white-3);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
}

.legal-page__intro-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

.legal-page__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ui-border);
}

.legal-page__section:last-child {
  border-bottom: none;
}

.legal-page__section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-page__section-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-page__section-text:last-child {
  margin-bottom: 0;
}

.legal-page__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.legal-page__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-page__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--brand-primary);
  border-radius: 50%;
}

.legal-page__list-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-page__section-footer {
  font-size: 14px;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.legal-page__contact {
  font-size: 15px;
  color: var(--text-secondary);
}

.legal-page__contact a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-page__contact a:hover {
  text-decoration: underline;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .legal-page__hero {
    padding: 140px 24px 64px;
  }

  .legal-page__title {
    font-size: 40px;
  }

  .legal-page__intro {
    padding: 0 24px 64px;
  }

  .legal-page__content {
    padding: 0 24px 100px;
  }

  .legal-page__section-title {
    font-size: 20px;
  }
}

/* ============================================
   NEWS ARTICLE PAGE
   ============================================ */

.article-page {
  min-height: 100vh;
  padding-top: 80px;
}

.article-page--not-found .article-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
}

.article-not-found__message {
  font-size: 18px;
  color: var(--text-secondary);
}

.article-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* Hero */

/* Constrained to the content column (not full-bleed): a viewport-wide 400px
   cover crop zoomed absurdly into large source images on wide screens,
   cutting subjects' heads off. aspect-ratio keeps the crop stable at every
   width; object-position favours the upper part where faces live. */
.article-hero {
  max-width: 1000px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.article-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 22%;
     object-position: center 22%;
  border-radius: 16px;
  display: block;
}

/* Back Link */

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.article-back:hover {
  color: var(--text-primary);
}

/* Article Header */

.article-header {
  margin-bottom: 24px;
}

.article-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  background: var(--overlay-brand-12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.article-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-byline__sep {
  color: var(--ui-border);
}

/* Share Row */

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
  margin-bottom: 32px;
}

.article-share__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-right: 4px;
}

.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--ui-border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.article-share__btn:hover {
  border-color: var(--overlay-white-30);
  color: var(--text-primary);
}

.article-share__btn--twitter:hover {
  border-color: var(--color-twitter);
  color: var(--color-twitter);
}

/* Article Body / Typography */

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--text-primary);
  font-weight: 800;
  margin: 32px 0 12px;
  line-height: 1.25;
}

.article-body h1 { font-size: 1.8rem; }
.article-body h2 { font-size: 1.4rem; }
.article-body h3 { font-size: 1.15rem; }
.article-body h4 { font-size: 1rem; }

.article-body p {
  margin-bottom: 20px;
}

.article-body a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  opacity: 0.8;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 3px solid var(--brand-primary);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text-tertiary);
  font-style: italic;
}

.article-body img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.article-body code {
  background-color: var(--bg-elevated);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

.article-body pre {
  background-color: var(--bg-elevated);
  padding: 16px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: 20px;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--ui-border);
  margin: 32px 0;
}

/* Article CTA wrapper */

.article-cta {
  margin-top: 48px;
}

/* Article Page Responsive */

@media (min-width: 640px) {
  .article-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .article-title {
    font-size: 44px;
  }
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-page {
  min-height: 100vh;
}

.news-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
}

.news-page__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.news-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.news-page__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.news-page__section-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

/* Promo Section */
.news-page__promo {
  padding: 0 16px 48px;
}

.news-page__promo-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--overlay-brand-10) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid var(--overlay-brand-20);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
}

.news-page__promo-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.news-page__promo-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-page__promo-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.news-page__promo-features span {
  padding: 6px 14px;
  background-color: var(--overlay-white-5);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.news-page__promo-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 640px) {
  .news-page__promo-buttons {
    flex-direction: row;
  }
}

/* Updates Grid */
.news-page__updates {
  padding: 48px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.news-page__updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.news-page__update-card {
  padding: 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
}

.news-page__update-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.news-page__update-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-page__update-content {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-page__update-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* FAQ Section */
.news-page__faq {
  padding: 64px 16px;
  border-top: 1px solid var(--ui-border);
}

.news-page__faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-page__faq-subtitle {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-top: -16px;
}

.news-page__faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.news-page__faq-item {
  padding: 24px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
}

.news-page__faq-question {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.news-page__faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-tertiary);
}

/* About Section */
.news-page__about {
  padding: 64px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.news-page__about-content {
  max-width: 700px;
  margin: 0 auto;
}

.news-page__about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.news-page__about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.news-page__about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-page__about-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .news-page__hero {
    padding: 140px 24px 64px;
  }

  .news-page__title {
    font-size: 40px;
  }

  .news-page__promo {
    padding: 0 24px 64px;
  }

  .news-page__promo-card {
    padding: 48px 40px;
  }

  .news-page__promo-title {
    font-size: 28px;
  }

  .news-page__updates {
    padding: 64px 24px;
  }

  .news-page__updates-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-page__faq {
    padding: 80px 24px;
  }

  .news-page__about {
    padding: 80px 24px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .news-page__title {
    font-size: 48px;
  }

  .news-page__section-title {
    font-size: 28px;
  }
}


/* ============================================
   NEWS PAGE
   ============================================ */

.news-page {
  min-height: 100vh;
  padding-top: 80px;
}

.news-page__header {
  padding: 48px 24px 32px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.news-page__heading {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.news-page__subheading {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.news-page__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Category Tabs */

.news-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}

.news-categories::-webkit-scrollbar {
  display: none;
}

.news-category-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  border: 1px solid var(--ui-border);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.news-category-btn:hover {
  color: var(--text-primary);
  border-color: var(--overlay-white-20);
}

.news-category-btn--active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #000;
}

/* Featured Hero */

.news-featured {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-elevated);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--overlay-black-40);
}

.news-featured__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-featured__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-featured:hover .news-featured__image img {
  transform: scale(1.03);
}

.news-featured__image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-surface) 0%, #2a1800 50%, var(--bg-surface) 100%);
}

.news-featured__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-featured__date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-featured__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.news-featured__excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.news-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.news-featured__readtime {
  font-size: 12px;
  color: var(--text-muted);
}

.news-featured__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.02em;
}

/* News Grid */

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Article Card */

.news-card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--overlay-black-40);
}

.news-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card__image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-surface) 0%, #2a1800 50%, var(--bg-surface) 100%);
}

.news-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card__category {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: var(--overlay-brand-12);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.news-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__excerpt {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: auto;
}

/* Load More */

.news-load-more {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.news-load-more__btn {
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--ui-border);
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.news-load-more__btn:hover:not(:disabled) {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.news-load-more__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Skeleton */

@keyframes news-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.news-skeleton {
  animation: news-pulse 1.5s ease-in-out infinite;
}

.news-skeleton--featured {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-elevated);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

.news-skeleton__featured-image {
  width: 100%;
  height: 240px;
  background-color: #222;
}

.news-skeleton--card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.news-skeleton__image {
  width: 100%;
  height: 180px;
  background-color: #222;
}

.news-skeleton--hero {
  width: 100%;
  height: 400px;
  background-color: var(--bg-surface);
}

.news-skeleton--matchup {
  height: 120px;
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.news-skeleton__body {
  padding: 16px;
}

.news-skeleton__pill {
  height: 20px;
  width: 80px;
  background-color: var(--bg-surface-light);
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.news-skeleton__title {
  height: 20px;
  width: 90%;
  background-color: var(--bg-surface-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.news-skeleton__title--large {
  height: 28px;
  width: 85%;
}

.news-skeleton__line {
  height: 14px;
  background-color: var(--bg-surface-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.news-skeleton__line--short {
  width: 60%;
}

.news-skeleton__meta {
  height: 12px;
  width: 120px;
  background-color: var(--bg-surface-light);
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

/* Empty State */

.news-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

/* News Page Responsive */

@media (min-width: 640px) {
  .news-page__heading {
    font-size: 48px;
  }

  .news-featured {
    flex-direction: row;
    min-height: 320px;
  }

  .news-featured__image {
    width: 45%;
    height: auto;
  }

  .news-featured__title {
    font-size: 28px;
  }

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

@media (min-width: 1024px) {
  .news-page__heading {
    font-size: 56px;
  }

  .news-featured__title {
    font-size: 32px;
  }

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

/* ============================================
   404 NOT FOUND PAGE
   ============================================ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 80px;
  text-align: center;
}

.not-found__content {
  max-width: 500px;
}

.not-found__code {
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-primary);
  margin-bottom: 16px;
  text-shadow: 0 4px 30px var(--overlay-brand-30);
}

.not-found__message {
  margin-bottom: 24px;
}

.not-found__title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.not-found__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.not-found__var {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  padding: 12px 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
  display: inline-block;
}

.not-found__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.not-found__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.not-found__btn--primary {
  background-color: var(--brand-primary);
  color: #000;
  border: none;
}

.not-found__btn--primary:hover {
  background-color: var(--brand-secondary);
}

.not-found__btn--secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--ui-border);
}

.not-found__btn--secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.not-found__footer {
  font-size: 13px;
  color: var(--text-muted);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .not-found__code {
    font-size: 200px;
  }

  .not-found__title {
    font-size: 40px;
  }

  .not-found__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .not-found__code {
    font-size: 250px;
  }

  .not-found__title {
    font-size: 48px;
  }
}

/* ============================================
   PREMIUM (ONTOUR PASS) PAGE
   ============================================ */
.premium-page {
  min-height: 100vh;
}

/* Hero */
.premium-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
}

.premium-page__hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.premium-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  background-color: var(--overlay-brand-10);
  color: var(--brand-primary);
  border: 1px solid var(--overlay-brand-30);
}

.premium-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.premium-page__title--accent {
  color: var(--brand-primary);
}

.premium-page__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.premium-page__intro {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* Section Headers */
.premium-page__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.premium-page__section-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Features Section */
.premium-page__features {
  padding: 48px 16px 64px;
}

.premium-page__features-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.premium-page__feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.premium-page__feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--overlay-white-10);
}

.premium-page__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-page__feature-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.premium-page__feature-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* Promo Section */
.premium-page__promo {
  padding: 48px 16px 64px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
}

.premium-page__promo-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.premium-page__promo-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
}

.premium-page__promo-headline {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-page__promo-text {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* How It Works Section */
.premium-page__how-it-works {
  padding: 48px 16px 64px;
}

.premium-page__steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.premium-page__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ui-border);
}

.premium-page__step:last-child {
  border-bottom: none;
}

.premium-page__step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-page__step-icon {
  color: var(--text-muted);
  margin-top: 4px;
  display: none;
}

.premium-page__step-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 5px;
}

/* FAQs Section */
.premium-page__faqs {
  padding: 48px 16px 64px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
}

.premium-page__faq-sections {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.premium-page__faq-group-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.premium-page__faq-item {
  border-bottom: 1px solid var(--ui-border);
}

.premium-page__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.premium-page__faq-question:hover {
  color: var(--brand-primary);
}

.premium-page__faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.premium-page__faq-item--open .premium-page__faq-chevron {
  transform: rotate(180deg);
}

.premium-page__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.premium-page__faq-item--open .premium-page__faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.premium-page__faq-answer p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* Support Section */
.premium-page__support {
  padding: 64px 16px;
}

.premium-page__support-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.premium-page__support-text {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.premium-page__support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--overlay-brand-30);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.premium-page__support-email:hover {
  background-color: var(--overlay-brand-10);
  border-color: var(--brand-primary);
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .premium-page__hero {
    padding: 140px 24px 64px;
  }

  .premium-page__title {
    font-size: 44px;
  }

  .premium-page__features {
    padding: 64px 24px 80px;
  }

  .premium-page__features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .premium-page__promo {
    padding: 64px 24px 80px;
  }

  .premium-page__how-it-works {
    padding: 64px 24px 80px;
  }

  .premium-page__step-icon {
    display: block;
  }

  .premium-page__faqs {
    padding: 64px 24px 80px;
  }

  .premium-page__support {
    padding: 80px 24px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .premium-page__title {
    font-size: 52px;
  }

  .premium-page__subtitle {
    font-size: 20px;
  }

  .premium-page__section-title {
    font-size: 28px;
  }
}

/* ============================================
   PRESS PAGE
   ============================================ */
.press-page {
  min-height: 100vh;
}

.press-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
  border-bottom: 1px solid var(--ui-border);
}

.press-page__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.press-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.press-page__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
}

.press-page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px;
}

.press-page__section {
  margin-bottom: 48px;
}

.press-page__section:last-child {
  margin-bottom: 0;
}

.press-page__section-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ui-border);
}

.press-page__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.press-page__text:last-child {
  margin-bottom: 0;
}

/* Info List */
.press-page__info-list {
  display: grid;
  gap: 12px;
}

.press-page__info-item {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.press-page__info-item dt {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 140px;
}

.press-page__info-item dd {
  font-size: 15px;
  color: var(--text-primary);
}

/* Feature List */
.press-page__feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press-page__feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.press-page__feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-primary);
}

/* Downloads */
.press-page__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.press-page__download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.press-page__download-link:hover {
  border-color: var(--brand-primary);
  background-color: var(--overlay-brand-5);
}

/* FAQ */
.press-page__faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press-page__faq-item {
  padding: 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
}

.press-page__faq-question {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.press-page__faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-tertiary);
}

/* Email */
.press-page__email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}

.press-page__email:hover {
  text-decoration: underline;
}

/* Links */
.press-page__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press-page__links li {
  font-size: 15px;
  color: var(--text-secondary);
}

.press-page__links a {
  color: var(--brand-primary);
  text-decoration: none;
}

.press-page__links a:hover {
  text-decoration: underline;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .press-page__hero {
    padding: 140px 24px 64px;
  }

  .press-page__title {
    font-size: 40px;
  }

  .press-page__content {
    padding: 64px 24px;
  }

  .press-page__info-item {
    flex-direction: row;
    align-items: center;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .press-page__title {
    font-size: 48px;
  }

  .press-page__section-title {
    font-size: 24px;
  }
}

/* ============================================
   ROLE PAGES (Ambassador & Creators)
   ============================================ */
.role-page {
  min-height: 100vh;
}

.role-page__hero {
  padding: 120px 16px 48px;
  text-align: center;
}

.role-page__hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.role-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.role-page__badge--gold {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--color-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.role-page__badge--green {
  background-color: rgba(57, 255, 20, 0.1);
  color: var(--color-neon-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.role-page__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.role-page__title--gold {
  color: var(--color-gold);
}

.role-page__title--green {
  color: var(--color-neon-green);
}

.role-page__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.role-page__tagline {
  font-size: 15px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Benefits Section */
.role-page__benefits {
  padding: 48px 16px 64px;
}

.role-page__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.role-page__section-title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-page__benefits-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Role Card */
.role-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-2px);
  border-color: var(--overlay-white-10);
}

.role-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.role-card__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.role-card__description {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* Who Section (Creators) */
.role-page__who {
  padding: 48px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
  border-bottom: 1px solid var(--ui-border);
}

.role-page__who-inner {
  max-width: 600px;
  margin: 0 auto;
}

.role-page__who-content {
  text-align: center;
}

.role-page__who-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.role-page__who-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-primary);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--ui-border);
}

.role-page__who-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-neon-green);
}

/* Requirements Section */
.role-page__requirements {
  padding: 64px 16px;
}

.role-page__requirements-inner {
  max-width: 600px;
  margin: 0 auto;
}

.role-page__requirements-content {
  text-align: center;
}

.role-page__requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}

.role-page__requirement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.role-page__requirement-icon {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.role-page__statement {
  font-size: 16px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 24px;
}

.role-page__statement strong {
  color: var(--text-primary);
}

/* CTA Section */
.role-page__cta {
  padding: 64px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--ui-border);
}

.role-page__cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.role-page__cta-title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.role-page__cta-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.role-page__cta-text {
  font-size: 15px;
  color: var(--text-tertiary);
}

/* Role Form */
.role-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.role-form__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-form__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.role-form__input {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.role-form__input::-moz-placeholder {
  color: var(--text-muted);
}

.role-form__input::placeholder {
  color: var(--text-muted);
}

.role-form__input:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.role-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239BA1A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.role-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.role-form__submit {
  align-self: center;
  margin-top: 8px;
}

.role-form__opt-in {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.role-form__opt-in input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--brand-primary);
}
.role-form__success {
  text-align: center;
  padding: 40px 24px;
}
.role-form__success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.role-form__success-text {
  color: var(--text-secondary);
  font-size: 15px;
}
.role-form__error {
  color: var(--color-error);
  font-size: 13px;
  margin-top: 8px;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .role-page__hero {
    padding: 140px 24px 64px;
  }

  .role-page__title {
    font-size: 44px;
  }

  .role-page__benefits {
    padding: 64px 24px 80px;
  }

  .role-page__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .role-page__requirements {
    padding: 80px 24px;
  }

  .role-page__cta {
    padding: 80px 24px;
  }

  .role-form__row {
    flex-direction: row;
  }

  .role-form__row .role-form__group {
    flex: 1;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .role-page__title {
    font-size: 52px;
  }

  .role-page__subtitle {
    font-size: 20px;
  }

  .role-page__section-title {
    font-size: 28px;
  }

  .role-page__cta-title {
    font-size: 36px;
  }
}

/* ============================================
   WHAT IS ONTOUR PAGE
   ============================================ */
.what-is-ontour {
  min-height: 100vh;
}

.what-is-ontour__hero {
  padding: 120px 16px 48px;
  text-align: center;
  border-bottom: 1px solid var(--ui-border);
}

.what-is-ontour__hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.what-is-ontour__title {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.what-is-ontour__subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
}

.what-is-ontour__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 16px;
}

.what-is-ontour__section {
  margin-bottom: 48px;
}

.what-is-ontour__section:last-child {
  margin-bottom: 0;
}

.what-is-ontour__section-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ui-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.what-is-ontour__icon {
  flex-shrink: 0;
}

.what-is-ontour__icon--success {
  color: var(--color-success);
}

.what-is-ontour__icon--negative {
  color: var(--color-error);
}

.what-is-ontour__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.what-is-ontour__text p {
  margin-bottom: 16px;
}

.what-is-ontour__text p:last-child {
  margin-bottom: 0;
}

.what-is-ontour__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-is-ontour__list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.what-is-ontour__list--positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-success);
}

.what-is-ontour__list--negative li::before {
  content: '✗';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-error);
}

.what-is-ontour__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-is-ontour__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.what-is-ontour__link:hover {
  border-color: var(--brand-primary);
  background-color: var(--overlay-brand-5);
}

.what-is-ontour__link--primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #000;
}

.what-is-ontour__link--primary:hover {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

.what-is-ontour__email {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.what-is-ontour__email:hover {
  text-decoration: underline;
}

/* Tablet (640px+) */
@media (min-width: 640px) {
  .what-is-ontour__hero {
    padding: 140px 24px 64px;
  }

  .what-is-ontour__title {
    font-size: 40px;
  }

  .what-is-ontour__content {
    padding: 64px 24px;
  }

  .what-is-ontour__links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .what-is-ontour__title {
    font-size: 48px;
  }

  .what-is-ontour__section-title {
    font-size: 24px;
  }
}


/* ============================================
   LEAGUES & STANDINGS
   ============================================ */
.leagues-page { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.leagues-page__header { text-align: center; padding: 4rem 0 2rem; }
.leagues-page__heading { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; font-style: italic; }
.leagues-page__subheading { color: var(--text-tertiary); margin-top: 0.5rem; font-size: 1.1rem; }
.leagues-page__grid { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.leagues-country__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.leagues-country__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
.leagues-comp-card { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--overlay-white-5); border: 1px solid var(--overlay-white-10); border-radius: var(--radius-lg); transition: var(--transition-fast); }
.leagues-comp-card:hover { background: var(--overlay-brand-10); border-color: var(--overlay-brand-30); }
.leagues-comp-card__name { font-weight: 600; }
.leagues-comp-card__short { color: var(--text-muted); font-size: 0.85rem; }

.league-hub { padding: 2rem 1.5rem; max-width: 1000px; margin: 0 auto; }
.league-hub__header { text-align: center; padding: 3rem 0 1.5rem; }
.league-hub__title { font-size: 2.2rem; font-weight: 800; text-transform: uppercase; font-style: italic; }
.league-hub__country { color: var(--text-tertiary); margin-top: 0.25rem; text-transform: capitalize; }
.league-hub__nav { display: flex; justify-content: center; gap: 1rem; margin: 1.5rem 0; }
.league-hub__table-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; margin: 1.5rem 0 2rem; padding: 1.1rem 1.5rem;
  background: var(--brand-primary); color: #0a0a0a;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em;
  border-radius: var(--radius-lg); text-decoration: none;
  transition: var(--transition-fast);
}
.league-hub__table-cta:hover { filter: brightness(1.08); }
.league-hub__table-cta__arrow { font-size: 1.4rem; line-height: 1; transition: var(--transition-fast); }
.league-hub__table-cta:hover .league-hub__table-cta__arrow { transform: translateX(4px); }
.league-hub__section-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.league-hub__fixtures { display: flex; flex-direction: column; gap: 0.5rem; }
.league-hub__fixture { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--overlay-white-5); border-radius: var(--radius-md); transition: var(--transition-fast); }
.league-hub__fixture:hover { background: var(--overlay-brand-10); }
.league-hub__fixture-vs { color: var(--text-muted); font-size: 0.85rem; }
.league-hub__fixture-score { color: var(--text-secondary); font-size: 0.9rem; font-weight: 700; min-width: 38px; text-align: center; }
.league-hub__fixture-date { margin-left: auto; color: var(--text-muted); font-size: 0.85rem; }
.league-hub__fixture { color: inherit; text-decoration: none; }
.league-hub__fixture a { color: inherit; text-decoration: none; }
.league-hub__fixture-team:hover { color: var(--brand-primary); text-decoration: underline; }
.league-hub__fixture-mid { display: inline-flex; align-items: center; }
.results-nav { display: flex; justify-content: space-between; gap: 1rem; margin: 0 0 1.5rem; }
.compare-intro { color: var(--text-secondary); line-height: 1.6; margin: 0 0 1.5rem; max-width: 720px; }
.compare-table td { text-align: center; }
.compare-table .standings-table__team { text-align: left !important; }
.compare-yes { color: var(--color-success); font-weight: 700; }
.compare-no { color: var(--text-muted); }
.compare-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.league-hub__see-all { display: inline-block; margin-top: 0.75rem; color: var(--brand-primary); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.league-hub__see-all:hover { text-decoration: underline; }

/* ============================================
   BREADCRUMBS (crawlable internal links)
   ============================================ */
.breadcrumbs { max-width: 1000px; margin: 0 auto; padding: 1rem 1.5rem 0; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; list-style: none; margin: 0; padding: 0; font-size: 0.85rem; }
.breadcrumbs__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumbs__link { color: var(--brand-primary); text-decoration: none; transition: var(--transition-fast); }
.breadcrumbs__link:hover { color: var(--brand-primary); text-decoration: underline; }
.breadcrumbs__sep { color: var(--text-muted); }
.breadcrumbs__current { color: var(--text-secondary); }

/* Fixture cards / date pills rendered as anchors stay visually identical */
a.fixtures-card { color: inherit; text-decoration: none; }
a.fixtures-date-strip__pill { text-decoration: none; }

.standings-page { padding: 2rem 1.5rem; max-width: 1000px; margin: 0 auto; }
.standings-page__header { text-align: center; padding: 3rem 0 1.5rem; }
.standings-page__title { font-size: 2rem; font-weight: 800; text-transform: uppercase; font-style: italic; }
.standings-page__season { color: var(--text-tertiary); margin-top: 0.25rem; }
.standings-page__empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.standings-page__table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.standings-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.standings-table th { padding: 0.75rem 0.5rem; text-align: center; color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; border-bottom: 1px solid var(--overlay-white-10); }
.standings-table td { padding: 0.6rem 0.5rem; text-align: center; border-bottom: 1px solid var(--overlay-white-5); }
.standings-table tbody tr:hover { background: var(--overlay-white-5); }
.standings-table__pos { width: 40px; font-weight: 700; }
.standings-table__team { text-align: left !important; display: flex; align-items: center; gap: 0.5rem; min-width: 160px; }
.standings-table__team th { text-align: left !important; }
.standings-table__logo { width: 24px; height: 24px; -o-object-fit: contain; object-fit: contain; }
.standings-table__pts { font-weight: 700; color: var(--brand-primary); }
.standings-table__team-link { color: inherit; text-decoration: none; }
.standings-table__team-link:hover { color: var(--brand-primary); text-decoration: underline; }
.standings-table__gd--pos { color: var(--color-success); }
.standings-table__gd--neg { color: var(--color-error); }
.standings-table__form { display: flex; gap: 3px; justify-content: center; }
.standings-form { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; }
.standings-form--w { background: var(--color-success); color: #000; }
.standings-form--d { background: var(--text-muted); color: #fff; }
.standings-form--l { background: var(--color-error); color: #fff; }

/* ── Live Scores ── */
.live-scores__updated { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin-bottom: 1rem; }

@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================================
   REFERRAL LANDING (/r/[code])
   ============================================ */
.referral-page { min-height: 100vh; }

.referral-page__hero {
  padding: 80px 16px 96px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--overlay-brand-10) 0%, transparent 60%),
    var(--bg-primary);
}

.referral-page__hero-content {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.referral-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  background-color: var(--overlay-brand-10);
  color: var(--brand-primary);
  border: 1px solid var(--overlay-brand-30);
}

.referral-page__badge--muted {
  background-color: var(--overlay-white-5);
  color: var(--text-tertiary);
  border-color: var(--overlay-white-10);
}

.referral-page__title {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.referral-page__title--accent { color: var(--brand-primary); }

.referral-page__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.referral-page__handle {
  color: var(--brand-primary);
  font-weight: 700;
}

.referral-page__code-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 32px 0 8px;
  width: 100%;
}

.referral-page__code-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
}

.referral-page__code-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background-color: var(--overlay-brand-10);
  border: 2px solid var(--overlay-brand-30);
  border-radius: var(--radius-lg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-primary);
  word-break: break-all;
  max-width: 100%;
}

.referral-page__code-hint {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  max-width: 420px;
}

.referral-page__code-hint--centered { margin: 16px auto 0; }

.referral-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

.referral-page__open-app { min-width: 220px; }

.referral-page__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.referral-page__store-badge {
  display: inline-flex;
  transition: transform 0.2s;
}
.referral-page__store-badge:hover { transform: scale(1.03); }

.referral-page__store-badge-img { height: 56px; width: auto; }
.referral-page__store-badge-img--google { height: 82px; margin: -13px 0; }

.referral-page__trust {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (min-width: 640px) {
  .referral-page__title { font-size: 48px; }
  .referral-page__code-chip { font-size: 40px; padding: 22px 40px; }
}

