/* Pitch Page Custom Styles */

/* ===== Hero Section ===== */
.pitch-hero {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.pitch-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.pitch-hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pitch-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}

.pitch-hero-content {
  position: relative;
  z-index: 3;
  padding: 0;
  width: 100%;
}

.pitch-hero-content .row {
  justify-content: flex-end !important;
}

.pitch-hero-content .col-lg-10 {
  text-align: right !important;
}

.pitch-hero-content .lead {
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

/* Add padding to Why Fan Game Cube section */
.pitch-hero + section {
  padding-top: 80px !important;
  margin-top: 0 !important;
}

.pitch-stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pitch-stat {
  text-align: center;
}

.pitch-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: 700;
}

.pitch-stat span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== Audience Selector ===== */
.pitch-selector-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.pitch-selector-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.audience-box {
  background: rgba(255,255,255,0.05);
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
  height: 100%;
}

.audience-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.betting-box {
  border-color: rgba(148, 238, 106, 0.3);
}

.betting-box:hover {
  border-color: var(--accent-color);
  background: rgba(148, 238, 106, 0.08);
}

.sports-box {
  border-color: rgba(240, 196, 23, 0.3);
}

.sports-box:hover {
  border-color: #f0c417;
  background: rgba(240, 196, 23, 0.08);
}

.audience-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.betting-box .audience-icon {
  color: var(--accent-color);
}

.sports-box .audience-icon {
  color: #f0c417;
}

.audience-box h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.audience-box p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.audience-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.audience-highlights li {
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
}

.audience-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.betting-box .audience-highlights li:before {
  color: var(--accent-color);
}

.sports-box .audience-highlights li:before {
  color: #f0c417;
}

.audience-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.audience-box:hover .audience-cta {
  gap: 16px;
}

.betting-box .audience-cta {
  color: var(--accent-color);
}

.sports-box .audience-cta {
  color: #f0c417;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .pitch-hero {
    aspect-ratio: auto;
    min-height: auto;
    padding: 60px 0;
  }

  .pitch-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    overflow: hidden;
  }

  .pitch-hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
  }

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

  .pitch-hero-content {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pitch-hero-content .container {
    margin-top: 0;
  }

  .pitch-hero-content .row {
    justify-content: center !important;
  }

  .pitch-hero-content .col-lg-10 {
    text-align: center !important;
  }

  .pitch-hero-content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .pitch-hero-content h1 {
    font-size: 2rem;
  }

  .pitch-hero-content .lead {
    font-size: 1rem;
  }

  .pitch-selector-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .audience-box {
    padding: 40px 30px;
  }

  .audience-icon {
    font-size: 3rem;
  }

  .audience-box h3 {
    font-size: 1.5rem;
  }
}

/* ===== Traction Section (merged trust bar + credibility) ===== */
.traction-section {
  background: var(--color-surface) !important;
  border-top: 2px solid var(--color-accent);
  position: relative;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}

.trust-logo-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-logo-item:hover {
  transform: translateY(-4px);
}

.trust-logo-label {
  font-size: 1rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.trust-logo-name {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.trust-ticker {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-ticker-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ===== Platform Diagram ===== */
.platform-diagram {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}

.diagram-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.diagram-flow h4,
.diagram-flow h5 {
  margin: 0;
}

.diagram-flow .bi-arrow-down {
  margin: 0;
}

.field-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.grid-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.grid-cell {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.9rem;
}

.application-box {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.application-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.application-box.betting-app:hover {
  border-color: var(--accent-color);
}

.application-box.engagement-app:hover {
  border-color: #f0c417;
}

/* ===== Capability Cards ===== */
.capability-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.capability-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.capability-icon {
  margin-bottom: 20px;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.capability-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.7);
}

.capability-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* ===== Step Cards ===== */
.step-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  position: relative;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.step-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.7);
}

.step-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.step-visual img {
  border: 2px solid rgba(255,255,255,0.1);
}

/* ===== Advantage Cards ===== */
.advantage-card {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.advantage-icon {
  margin-bottom: 20px;
}

/* ===== Traction Timeline ===== */
.traction-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
  list-style: none;
}

.traction-timeline:before {
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  list-style: none;
}

.timeline-marker {
  display: none;
}

.timeline-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  list-style: none;
}

.timeline-content h4 {
  color: #fff;
  margin-bottom: 8px;
  list-style: none;
}

.timeline-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  list-style: none;
}

.timeline-content a {
  list-style: none;
}

/* ===== Founder Cards ===== */
.founder-section {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.founder-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.founder-card h5 {
  color: var(--accent-color);
  margin-bottom: 24px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-color);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(244, 161, 0, 0.2);
}

.founder-info strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.founder-info .founder-title {
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.founder-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.founder-info a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.founder-info a:hover {
  gap: 8px;
}

/* ===== Scale Cards ===== */
.scale-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.scale-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.scale-example {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin: 16px 0;
}

.scale-metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
}

.scale-revenue {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* ===== Sports Supported ===== */
.sport-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sport-icon {
  font-size: 1.2rem;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sport-icon:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-color);
}

/* ===== Path Separator ===== */
.path-separator {
  padding: 80px 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.separator-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.separator-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
}

.separator-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  color: var(--accent-color);
}

.separator-link i {
  font-size: 1.5rem;
}

.separator-divider {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  font-weight: 300;
}

/* ===== Betting Section ===== */
.betting-section {
  background: #000;
  border-top: 4px solid var(--accent-color);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(148, 238, 106, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.opportunity-point {
  margin-bottom: 30px;
}

.opportunity-point h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.implementation-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.implementation-step h5 {
  margin-bottom: 16px;
}

.implementation-step ul {
  list-style: none;
  padding: 0;
}

.implementation-step ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.implementation-step ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.revenue-flow {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}

.revenue-step {
  text-align: center;
  margin: 20px 0;
}

.revenue-amount {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.revenue-examples {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
}

.revenue-example-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.revenue-example-item:last-child {
  border-bottom: none;
}

.tech-spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.code-example {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin-top: 12px;
}

.code-example code {
  color: var(--accent-color);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.case-study-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}

.case-study-detail {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-study-detail:last-child {
  border-bottom: none;
}

/* ===== Sports Section ===== */
.sports-section {
  background: var(--color-background);
  border-top: 4px solid #f0c417;
  color: rgba(255, 255, 255, 0.85);
}

/* Text contrast for dark background */
.sports-section h1,
.sports-section h2,
.sports-section h3,
.sports-section h4,
.sports-section h5,
.sports-section h6 {
  color: #fff;
}

.sports-section p,
.sports-section li,
.sports-section span {
  color: rgba(255, 255, 255, 0.85);
}

.sports-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.sports-badge {
  background: rgba(240, 196, 23, 0.1);
  border-color: #f0c417;
  color: #f0c417;
}

.sports-section .opportunity-point h5 {
  color: #f0c417;
}

.sports-section .implementation-step ul li:before {
  color: #f0c417;
}

.sports-step {
  background: rgba(240, 196, 23, 0.05);
  border-color: rgba(240, 196, 23, 0.2);
}

.fan-experience-card {
  background: rgba(240, 196, 23, 0.05);
  border: 1px solid rgba(240, 196, 23, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.video-showcase {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
}

.reward-category {
  background: rgba(240, 196, 23, 0.05);
  border: 1px solid rgba(240, 196, 23, 0.2);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.reward-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.reward-list li {
  padding: 8px 0;
  font-size: 0.95rem;
}

.sports-revenue-flow {
  background: rgba(240, 196, 23,0.05);
  border-color: rgba(240, 196, 23, 0.2);
}

.sports-revenue-flow .revenue-amount {
  background: rgba(240, 196, 23, 0.1);
}

.sports-case-card {
  background: rgba(240, 196, 23, 0.05);
  border-color: rgba(240, 196, 23, 0.2);
}

/* ===== CTA Boxes ===== */
.cta-box {
  background: rgba(255,255,255,0.05);
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.betting-cta-box {
  border-color: var(--accent-color);
  background: rgba(148, 238, 106, 0.05);
}

.sports-cta-box {
  border-color: #f0c417;
  background: rgba(240, 196, 23, 0.05);
}

.cta-icon {
  margin-bottom: 20px;
}

.cta-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 20px;
}

.cta-form .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(148, 238, 106, 0.25);
}

.cta-form .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.cta-contact {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-person {
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.sports-section .cta-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.sports-section .cta-form .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: #f0c417;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(240, 196, 23, 0.25);
}

.sports-section .cta-form .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.sports-section .cta-contact {
  border-top-color: rgba(255,255,255,0.1);
}

.sports-section .contact-person {
  color: rgba(255,255,255,0.8);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .pitch-stats-bar {
    gap: 20px;
  }

  .pitch-stat strong {
    font-size: 1.5rem;
  }

  .trust-logos {
    gap: 20px;
  }

  .separator-links {
    flex-direction: column;
    gap: 20px;
  }

  .separator-link {
    width: 100%;
    justify-content: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 15px;
    right: 15px;
  }

  .cta-box {
    padding: 30px 20px;
  }
}
