/* Overall page wrapper */
.cp-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: #020617;
  color: #f9fafb;
}

/* Shared layout */
.cp-section {
  padding: 40px 20px;
}

.cp-section-inner,
.cp-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* HERO */
.cp-hero {
  padding: 80px 20px;
  background: radial-gradient(circle at 0% 0%, rgba(52, 211, 153, 0.25), #020617 55%);
}

.cp-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.cp-hero-left,
.cp-hero-right {
  flex: 1 1 300px;
}

.cp-hero-left {
  min-width: 260px;
}

.cp-pill {
  display: inline-block;
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cp-hero-title {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
}

@media (min-width: 900px) {
  .cp-hero-title {
    font-size: 48px;
  }
}

.cp-hero-subtitle {
  color: #9ca3af;
  font-size: 16px;
  max-width: 34rem;
  margin: 0 0 20px;
}

.cp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cp-btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.cp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.45);
}

.cp-btn-secondary {
  border: 1px solid #475569;
  color: #e5e7eb;
  background: transparent;
}

.cp-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.8);
}

.cp-hero-note {
  color: #9ca3af;
  font-size: 13px;
}

/* Right hero panel */
.cp-card {
  border-radius: 24px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 24px;
}

.cp-card-elevated {
  box-shadow: 0 22px 60px rgba(3, 7, 18, 0.75);
}

.cp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.cp-card-label {
  color: #a7f3d0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cp-card-meta {
  color: #9ca3af;
  font-size: 11px;
}

.cp-card-count {
  color: #bbf7d0;
  font-size: 11px;
}

.cp-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.cp-mini-card {
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 4px 4px 8px;
}

.cp-mini-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.cp-mini-name {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
}

.cp-card-footer {
  margin-top: 4px;
}

.cp-card-tag {
  color: #a5b4fc;
  font-size: 12px;
  margin-bottom: 4px;
}

.cp-card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cp-card-copy {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.6;
}

/* Feature row */
.cp-feature-row {
  padding-top: 40px;
  padding-bottom: 20px;
}

.cp-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 800px) {
  .cp-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cp-feature-card {
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.cp-feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cp-feature-text {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Partners */
.cp-partners {
  padding-top: 32px;
  padding-bottom: 40px;
}

.cp-section-title {
  font-size: 24px;
  margin: 0 0 20px;
}

.cp-center {
  text-align: center;
}

.cp-partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.cp-partner-logo {
  max-height: 48px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cp-partner-logo:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* Follow a Star Player */
.cp-follow {
  padding-bottom: 40px;
}

.cp-player-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 900px) {
  .cp-player-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cp-player-card {
  border-radius: 18px;
  border: 1px solid #1f2937;
  background: #020617;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
}

.cp-player-image {
  width: 100%;
  display: block;
}

.cp-player-body {
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-player-name {
  font-size: 14px;
  font-weight: 600;
}

.cp-chip {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.8);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  color: #bbf7d0;
}

/* Smart feeds */
.cp-feeds {
  padding-bottom: 80px;
}

.cp-feeds-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

@media (min-width: 800px) {
  .cp-feeds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cp-feed-card {
  border-radius: 12px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 14px 16px;
}

.cp-feed-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cp-feed-text {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Hero headline color override */
.cp-hero-title {
  color: #ffffff !important;
}

/* Green outline icons */
.cp-icon {
  width: 18px;
  height: 18px;
  stroke: #34D399;          /* vibrant green */
  stroke-width: 2;
  fill: transparent;        /* no fill, lets black background show */
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.site-header,
.main-header-bar {
  background-color: #0A1220 !important;
}

.main-header-menu > .menu-item > a {
  color: #F9FAFB !important;
}

.main-header-menu > .menu-item > a:hover,
.main-header-menu > .menu-item.current-menu-item > a {
  color: #6CFF5F !important;
}

/* Center-align hero buttons */
.cp-hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Browse Smart Feeds section title */
.cp-feeds .cp-section-title {
  text-align: center;
  color: #ffffff;
}

.cp-footer-legal {
  font-size: 13px;
  color: #9ca3af;
  max-width: 900px;
  margin: 32px auto 0;
  line-height: 1.6;
}

.cp-footer-legal p {
  margin-bottom: 12px;
}

footer,
footer * {
  background-color: #020617 !important;
}



/* Prevent white bleed between last section and footer */
.wp-site-blocks,
#content {
  background-color: #0f172a;
}

/* About Page Typography */
.page-id-14451 h1,
.page-id-14451 h2 {
  color: #ffffff;
}

.page-id-14451 p,
.page-id-14451 li {
  color: #d1d5db;
}

/* =========================
   Privacy Policy – Page ID Scoped Styles
   ========================= */

.page-id-276,
.page-id-276 p,
.page-id-276 li,
.page-id-276 a,
.page-id-276 h1,
.page-id-276 h2,
.page-id-276 h3,
.page-id-276 h4,
.page-id-276 strong {
  color: #ffffff !important;
}

/* Optional: tighten spacing and readability */
.page-id-276 p,
.page-id-276 li {
  line-height: 1.75;
  font-size: 16px;
}

/* Optional: keep links clearly visible */
.page-id-1234 a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Optional: mobile adjustments */
@media (max-width: 640px) {
  .page-id-1234 p,
  .page-id-1234 li {
    font-size: 15px;
  }
}

.page-id-1234 .cp-last-updated,
.page-id-1234 .cp-last-updated * {
  color: #0f172a !important;
  background: transparent !important;
}


}

/* Make FAQ headings white */
  .cp-faq h3 {
    color: #ffffff;
  }

  If you need the paragraphs lighter too, extend it:

  .cp-faq p {
    color: rgba(255, 255, 255, 0.85);
  }

.page-id-18375 h3,
.page-id-18375 h4 {
  color: #ffffff;
}

.page-id-18375 .entry-content a:not(.cp-btn):not(.elementor-button) {
  color: #22c55e;
}

.cp-player-summary-block {
       margin-top: 1rem;
       padding: 1rem;
       border-radius: 16px;
       border: 1px solid #1e293b;
       background: rgba(15, 23, 42, 0.6);
     }
     .cp-player-heatmap-meta {
       font-size: 0.75rem;
       text-transform: uppercase;
       letter-spacing: 0.2em;
       color: #94a3b8;
       margin-bottom: 0.25rem;
     }
     .cp-player-heatmap-text {
       font-size: 0.95rem;
       color: #cbd5f5;
       margin: 0;
     }

 .cp-section.cp-player-feed,
  .cp-section.cp-player-feed .cp-section-title {
    color: #ffffff;
  }

.cp-intel {
    color: #fff;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: #050b17;
    padding: 32px;
    border-radius: 16px;
  }

  .cp-intel a {
    color: #2de38f;
    text-decoration: none;
  }

  .cp-intel a:hover {
    text-decoration: underline;
  }

  .cp-intel .cp-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(45, 227, 143, 0.15);
    color: #2de38f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

/* Make Intel post text readable on dark background */
.single-post .entry-content,
.single-post .entry-content p,
.single-post .entry-content li,
.single-post .entry-content span {
  color: #f1f5f9 !important; /* slate-100 */
}

/* Headings brighter */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
  color: #ffffff !important;
}

/* Links readable */
.single-post .entry-content a {
  color: #34d399 !important; /* emerald-400 */
}

/* Sports Market Intelligence post */
  body .cp-intel {
      background: #050b17;
      padding: 32px;
      color: #fff;
      font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
  }

  body .cp-intel h1,
  body .cp-intel h2,
  body .cp-intel h3,
  body .cp-intel h4 {
      color: #fff !important; /* override Elementor heading colors */
  }

  body .cp-intel a {
      color: #2de38f;
      text-decoration: none;
  }

  body .cp-intel a:hover {
      text-decoration: underline;
  }

  body .cp-pill {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(45, 227, 143, 0.15);
      color: #2de38f;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
  }

/* Intelligence archive text color */
.category-intelligence h1,
.category-intelligence h2,
.category-intelligence h3,
.category-intelligence p,
.category-intelligence span,
.category-intelligence .entry-title,
.category-intelligence .entry-summary,
.category-intelligence .posted-on {
    color: #ffffff !important;
}

/* Links */
.category-intelligence a {
    color: #2de38f !important;
}

.category-intelligence a:hover {
    color: #34f5a3 !important;
}