:root {
  --bs-primary: #2563eb;
  --bs-primary-rgb: 37, 99, 235;
  --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-body-color: #1f2937;
  --bs-secondary-color: #6b7280;
  --bs-body-bg: #f5f7fb;
}

body {
  background: linear-gradient(135deg, #f5f7fb 0%, #e8ecf4 100%);
}

.btn-primary {
  --bs-btn-bg: #2563eb;
  --bs-btn-border-color: #2563eb;
  --bs-btn-hover-bg: #1d4ed8;
  --bs-btn-hover-border-color: #1d4ed8;
  --bs-btn-active-bg: #1e40af;
  --bs-btn-active-border-color: #1e40af;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.text-primary { color: #2563eb !important; }
.bg-primary { background-color: #2563eb !important; }

.logo { font-size: 1.5rem; font-weight: 700; color: #2563eb; }

.hero-title {
  background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #2563eb;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.role-card { border-left: 4px solid; }
.role-card.facilitator { border-color: #2563eb; }
.role-card.player { border-color: #10b981; }
.role-card.viewer { border-color: #8b5cf6; }

.role-card.facilitator .role-icon { color: #2563eb; }
.role-card.player .role-icon { color: #10b981; }
.role-card.viewer .role-icon { color: #8b5cf6; }

.cta-section {
  background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%);
}
.cta-section .btn-light {
  color: #2563eb;
  font-weight: 600;
}
.cta-section .btn-light:hover {
  background: #f8fafc;
}


.hero-section {
  padding: 4rem 0 4rem;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #2563eb 0%, #1f2937 100%);
}

.hero-section .hero-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background-clip: unset;
  color: white;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.85) !important;
}
