/* Friendly Wager Website Styles */

:root {
  --deep-navy: #0B1628;
  --sports-green: #34C759;
  --accent-blue: #007AFF;
  --warm-gold: #FFD60A;
  --off-white: #F5F5F7;
  --primary-bg: #FFFFFF;
  --secondary-text: #6E6E73;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--deep-navy);
  background-color: var(--primary-bg);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep-navy);
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--deep-navy);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--primary-bg) 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
}

.tagline {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline .highlight {
  background: linear-gradient(135deg, var(--sports-green) 0%, #2DB24A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subline {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--secondary-text);
  font-weight: 400;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--deep-navy);
  color: white;
}

.btn-primary:hover {
  background: #1a2a40;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 22, 40, 0.25);
}

.btn-secondary {
  background: var(--off-white);
  color: var(--deep-navy);
  border: 2px solid rgba(11, 22, 40, 0.1);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--sports-green);
}

/* Features Section */
.features {
  padding: 100px 24px;
  background: var(--primary-bg);
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--deep-navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--off-white);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.feature-card p {
  color: var(--secondary-text);
  font-size: 16px;
}

/* How It Works */
.how-it-works {
  padding: 100px 24px;
  background: var(--deep-navy);
  color: white;
}

.how-it-works .container {
  max-width: 1000px;
  margin: 0 auto;
}

.how-it-works .section-title {
  color: white;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sports-green);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* Footer */
footer {
  background: var(--off-white);
  padding: 60px 24px 30px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--secondary-text);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-text);
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--deep-navy);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--sports-green);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  text-align: center;
  color: var(--secondary-text);
  font-size: 14px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-navy);
}

.legal-page .last-updated {
  color: var(--secondary-text);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.legal-page p {
  color: var(--secondary-text);
  margin-bottom: 16px;
  font-size: 16px;
}

.legal-page ul {
  color: var(--secondary-text);
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

/* Contact Page */
.contact-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
  background: var(--off-white);
}

.contact-page .container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-page h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.contact-page .subtitle {
  color: var(--secondary-text);
  font-size: 18px;
  margin-bottom: 48px;
}

.contact-card {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

.contact-card .icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.contact-card p {
  color: var(--secondary-text);
  margin-bottom: 24px;
}

.contact-card a.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sports-green);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a.email-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
  }
  
  .features, .how-it-works {
    padding: 60px 20px;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

