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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #FF6B00;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B00;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

nav a {
  color: #888888;
  text-decoration: none;
  margin-left: 30px;
  font-size: 14px;
  transition: color 0.3s;
}

nav a:hover {
  color: #FF6B00;
}

/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
}

.scoreboard-display {
  background: #141414;
  border: 2px solid #FF6B00;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scoreboard-display h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 48px;
  color: #FF6B00;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
  letter-spacing: 3px;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: #888888;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.app-badge {
  display: inline-block;
  margin-top: 20px;
}

.app-badge img {
  height: 60px;
  transition: transform 0.3s;
}

.app-badge img:hover {
  transform: scale(1.05);
}

/* Features Grid */
.features {
  padding: 80px 0;
  border-top: 1px solid #333;
}

.features h3 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #FF6B00;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: #141414;
  border: 1px solid #FF6B00;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
  transform: translateY(-5px);
}

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

.feature-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #FF6B00;
}

.feature-card p {
  color: #888888;
  font-size: 16px;
}

/* Stats Row */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 48px;
  color: #FF6B00;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-label {
  color: #888888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: #888888;
  margin-bottom: 30px;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid #FF6B00;
  text-align: center;
}

footer nav {
  margin-bottom: 20px;
}

footer nav a {
  color: #888888;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.3s;
}

footer nav a:hover {
  color: #FF6B00;
}

.copyright {
  color: #555;
  font-size: 14px;
}

/* Content Pages */
.content-page {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #FF6B00;
}

.content-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FF8C00;
}

.content-page h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FF8C00;
}

.content-page p {
  margin-bottom: 20px;
  color: #CCCCCC;
  font-size: 16px;
}

.content-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-page li {
  margin-bottom: 10px;
  color: #CCCCCC;
}

.content-page a {
  color: #FF6B00;
  text-decoration: none;
  transition: color 0.3s;
}

.content-page a:hover {
  color: #FF8C00;
  text-decoration: underline;
}

.email-link {
  display: inline-block;
  background: #141414;
  border: 1px solid #FF6B00;
  padding: 15px 30px;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.3s;
}

.email-link:hover {
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  h2 {
    font-size: 32px;
  }

  .scoreboard-display h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  nav a {
    margin-left: 15px;
    font-size: 12px;
  }

  .content-page h1 {
    font-size: 32px;
  }

  .hero {
    padding: 40px 0;
  }

  .features {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .scoreboard-display h1 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  h2 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 0 10px;
  }
}
