/* 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;
}



