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

:root {
  --brand-bg: #161b2d;
  --heading: #161b2d;
  --paragraph: #666666;
  --subtext: #b2b2b2;
  --tertiary: #ffde6c;
  --accent-blue: #2ca5ff;
  --accent-cyan: #6ddcff;
  --accent-red: #ea6666;
  --white: #ffffff;
  --border-color: #ececec;
  --body-bg: #ffffff;
  --card-bg: #f5f7fb;
  --step-card-bg-blue: #eef8ff;
  --step-card-border-blue: #def1ff;
  --step-card-bg-red: #fff3f3;
  --step-card-border-red: #ffe7e7;
  --step-card-bg-green: #e9fff0;
  --step-card-border-green: #cdf7d9;
  --step-card-bg-yellow: #fff8e2;
  --step-card-border-yellow: #feefbd;
  --sport-tag-bg: #f5f5f5;
  --brands-border: #e5e7eb;
  --stat-card-bg: #ffffff;
  --stat-card-border: #ececec;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --body-bg: #050711;
  --brand-bg: #161b2d;
  --heading: #ffffff;
  --paragraph: #b2b2b2;
  --subtext: #b2b2b2;
  --white: #ffffff;
  --border-color: #212633;
  --card-bg: #131721;
  --step-card-bg-blue: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  --step-card-border-blue: #565660;
  --step-card-bg-red: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  --step-card-border-red: #565660;
  --step-card-bg-green: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  --step-card-border-green: #565660;
  --step-card-bg-yellow: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  --step-card-border-yellow: #565660;
  --sport-tag-bg: #131721;
  --brands-border: #212633;
  --stat-card-bg: #131721;
  --stat-card-border: #2a2a2a;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  background-color: var(--body-bg);
  transition: background-color 0.3s ease;
}

/* Utility Classes */
.container {
  max-width: 1512px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #2ca5ff, #991a1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text::after {
  content: '';
  display: inline-block;
  width: 0.05em;
}

.footer-link-gradient {
  background: linear-gradient(to right, #ddd569, #bbde6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  max-width: 1512px;
  margin: 0 auto;
  height: auto;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 32px;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.mobile-menu-btn {
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--heading);
  text-decoration: none;
  white-space: nowrap;
}

.download-btn {
  text-decoration: none;
  background-color: var(--brand-bg);
  color: var(--white);
  height: 48px;
  padding: 0 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.theme-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  z-index: 50;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 48px 16px 24px;
  max-width: 1512px;
  margin: 0 auto;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  text-align: center;
}

.hero-heading {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--heading);
}

.hero-description {
  font-size: 16px;
  color: var(--paragraph);
  opacity: 0.8;
  line-height: 32px;
}

.app-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  padding-bottom: 20px;
}

.app-store-btn {
  background-color: transparent;
  border: none;
  border-radius: 10px;
  width: 160px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.app-store-btn svg {
  flex-shrink: 0;
}

.app-store-btn .store-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-store-btn-text {
  text-align: left;
}

.app-store-btn-text p:first-child {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.app-store-btn-text p:last-child {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-avatars {
  display: flex;
  align-items: center;
  padding-right: 9px;
}

.stat-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -9px;
  position: relative;
}

.stat-avatars img:nth-child(1) {
  z-index: 3;
}

.stat-avatars img:nth-child(2) {
  z-index: 2;
}

.stat-avatars img:nth-child(3) {
  z-index: 1;
}

.stat-text p:first-child {
  font-weight: 600;
  font-size: 20px;
  color: #1b1c20;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-text p:last-child {
  font-size: 14px;
  color: #383a47;
  opacity: 0.6;
  line-height: 1.5;
}

.stat-divider {
  display: none;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 39px;
}

.stat-divider div {
  width: 39px;
  height: 1px;
  background-color: #f2f2f2;
  transform: rotate(90deg);
}

.rating-text {
  display: flex;
  flex-direction: column;
}

.rating-text p:first-child {
  font-weight: 700;
  font-size: 20px;
  color: #1b1c20;
  letter-spacing: -1px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 24px;
}

.rating-stars span {
  color: #383a47;
  opacity: 0.6;
  font-size: 16px;
  line-height: 24px;
}

/* Hero Image */
.hero-image {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Trusted Brands Section */
.trusted-brands {
  padding: 16px 16px 24px;
  max-width: 1512px;
  margin: 0 auto;
}

.trusted-brands-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}

.trusted-brands-header svg {
  width: 16px;
  height: 16px;
  color: #facc15;
}

.trusted-brands-header span {
  color: var(--paragraph);
  font-size: 14px;
  text-align: center;
}

.brands-container {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  overflow-x: auto;
}

.brands-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-width: max-content;
}

.brands-list img {
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brands-list img:hover {
  filter: grayscale(0%);
}

/* Features Section (Dark) */
.features-section {
  background-color: var(--brand-bg);
  border-radius: 32px;
  margin-top: 48px;
  padding: 40px 20px;
  margin-left: 16px;
  margin-right: 16px;
}

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

.features-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.features-title-group {
  text-align: center;
}

.features-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.features-subtitle {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.6;
}

.features-subtitle br {
  display: none;
}

.features-toggle {
  background-color: #232a44;
  border-radius: 32px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.features-toggle-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.features-toggle-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.features-toggle-btn.active {
  background-color: var(--tertiary);
  color: var(--brand-bg);
}

.features-toggle-btn:not(.active) {
  background: transparent;
  color: var(--white);
}

/* Feature Cards */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-cards.hidden {
  display: none;
}

.feature-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-content {
  padding: 24px 20px 16px;
  text-align: center;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.5;
}

.feature-card-image {
  display: flex;
  justify-content: center;
}

.feature-card-image img {
  width: 80%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

/* How It Works Section */
.how-it-works {
  padding: 64px 16px 0;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.35;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}

.how-it-works-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  border-radius: 16px;
  padding: 20px;
  width: 100%;
}

.step-card.blue {
  background-color: #eef8ff;
  border: 1px solid #def1ff;
}

.step-card.red {
  background-color: #fff3f3;
  border: 1px solid #ffe7e7;
}

.step-card.green {
  background-color: #e9fff0;
  border: 1px solid #cdf7d9;
}

.step-card.yellow {
  background-color: #fff8e2;
  border: 1px solid #feefbd;
}

.step-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.18px;
  line-height: 28px;
}

.step-card-desc {
  font-size: 14px;
  color: var(--paragraph);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
}

.phone-mockup {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  order: 3;
  margin-top: 24px;
}

.phone-mockup-container {
  position: relative;
  width: 240px;
  height: 300px;
  overflow: hidden;
}

.phone-mockup-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/* Products/Business Section */
.products-section {
  background-color: var(--white);
  padding: 64px 16px;
}

.products-container {
  max-width: 1240px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card-image {
  aspect-ratio: 300 / 270;
  background-color: #f5f7fb;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  position: absolute;
  top: 2.3%;
  left: 4%;
  width: 92%;
  height: 95%;
  object-fit: contain;
}

.product-card-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--tertiary);
  color: var(--heading);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.product-card:hover .product-card-btn {
  opacity: 1;
}

.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.product-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
}

.product-card-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.5;
}

/* App Download CTA Section */
.app-cta-section {
  background-color: var(--brand-bg);
  position: relative;
  overflow: hidden;
}

.app-cta-container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 40px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-cta-image {
  order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.app-cta-image img {
  width: 240px;
  height: auto;
  max-width: 100%;
}

.app-cta-content {
  max-width: 100%;
  text-align: center;
  order: 1;
}

.app-cta-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.app-cta-title {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.app-cta-title-line {
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}

.app-cta-title-line .gradient-text {
  font-style: italic;
}

.app-cta-subtitle {
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
}

.app-cta-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.5;
  margin-bottom: 24px;
}

.app-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.app-cta-btn {
  background-color: transparent;
  border: none;
  border-radius: 10px;
  width: 150px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.app-cta-btn .store-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Trust Section */
.trust-section {
  padding: 64px 16px;
  max-width: 1512px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.green {
  background-color: #e9fff0;
  border: 1px solid #cdf7d9;
  height: auto;
}

.testimonial-card.yellow {
  background-color: #fff8e2;
  border: 1px solid #feefbd;
  min-height: 200px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-icon svg {
  width: 40px;
  height: 32px;
  /* transform: rotate(180deg); */
  opacity: 40%;
  transform: scale(-1, -1);
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.24px;
  line-height: 1.2;
}

.testimonial-text {
  font-size: 14px;
  color: var(--heading);
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info p:first-child {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading);
}

.testimonial-author-info p:last-child {
  font-weight: 500;
  font-size: 14px;
  color: var(--paragraph);
}

.stars {
  display: flex;
  gap: 4px;
  margin-top: 24px;
}

.stars svg {
  width: 24px;
  height: 24px;
}

.stat-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
}

.stat-card-value {
  font-weight: 600;
  font-size: 32px;
  color: var(--heading);
}

.stat-card-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--paragraph);
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Sports Section */
.sports-section {
  padding: 40px 16px 32px;
  max-width: 1512px;
  margin: 0 auto;
}

.sports-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sports-number-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sports-number {
  font-size: 80px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -4px;
}

.sports-arrow {
  display: none;
  position: absolute;
  right: -120px;
  top: 20px;
  align-items: flex-end;
  gap: 4px;
}

.sports-arrow svg {
  width: 108px;
  height: 116px;
}

.sports-label {
  color: var(--accent-red);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  text-align: left;
}

.sports-label p {
  margin: 0;
}

.sports-content {
  max-width: 100%;
  text-align: center;
}

.sports-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: -0.48px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.sports-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}

/* Sports Tags - Full Width */
.sports-tags-wrapper {
  width: 100%;
  padding: 32px 16px 40px;
}

.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sport-tag {
  background-color: #f5f5f5;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.sport-tag img {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background-color: var(--brand-bg);
  border-radius: 40px 40px 0 0;
  position: relative;
  margin-top: 40px;
}

.footer-bg-image {
  position: absolute;
  right: 55px;
  bottom: 60px;
  width: 385px;
  height: 460px;
  display: none;
  pointer-events: none;
}

.footer-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 40px 16px 24px;
  position: relative;
  z-index: 10;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
  color: #808080;
  font-size: 14px;
  line-height: 1.35;
}

.footer-copyright a {
  color: var(--accent-red);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-link span {
  background: linear-gradient(to right, #ddd569, #bbde6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.16px;
  line-height: 1.5;
}

.footer-link svg {
  width: 16px;
  height: 16px;
  color: #bdde6c;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-link:hover svg {
  transform: translate(2px, -2px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;
  grid-column: span 2;
  justify-content: center;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.dd-none {
  display: none !important;
}
/* Responsive Styles */
@media (min-width: 640px) {
  .header {
    padding: 24px 32px;
  }
  .header-logo,
  .header-logo img {
    height: 38.86px;
  }

  .hero {
    padding: 64px 24px 24px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .app-buttons {
    gap: 16px;
  }

  .app-store-btn {
    width: 180px;
    height: 56px;
  }

  .app-store-btn-text p:last-child {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 24px;
  }

  .stat-divider {
    display: flex;
  }

  .trusted-brands {
    padding: 16px 24px 24px;
  }

  .trusted-brands-header span {
    font-size: 16px;
  }

  .brands-container {
    padding: 24px;
  }

  .brands-list {
    gap: 32px;
  }

  .brands-list img {
    height: 56px;
  }

  .features-section {
    border-radius: 48px;
    margin-top: 80px;
    margin-left: 24px;
    margin-right: 24px;
    padding: 56px 32px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 16px;
  }

  .features-subtitle br {
    display: inline;
  }

  .features-toggle {
    padding: 8px;
  }

  .features-toggle-btn {
    width: 170px;
    height: 46px;
    font-size: 15px;
  }

  .features-toggle-btn svg {
    width: 22px;
    height: 22px;
  }

  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-cards.hidden {
    display: none;
  }

  .feature-card {
    border-radius: 24px;
  }

  .feature-card-content {
    padding: 28px 24px 20px;
  }

  .feature-card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-card-desc {
    font-size: 14px;
  }

  .feature-card-image {
    justify-content: center;
  }

  .feature-card-image img {
    width: 85%;
    max-width: 260px;
  }

  .how-it-works {
    padding: 80px 24px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-card {
    padding: 24px;
  }

  .phone-mockup-container {
    width: 360px;
    height: 468px;
  }

  .phone-mockup {
    grid-column: span 2;
    order: 3;
  }

  .products-section {
    padding: 80px 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .app-cta-container {
    padding: 48px 24px 0;
  }

  .app-cta-image img {
    width: 320px;
  }

  .app-cta-title-line {
    font-size: 30px;
  }

  .app-cta-subtitle {
    font-size: 24px;
  }

  .app-cta-desc {
    font-size: 18px;
  }

  .app-cta-buttons {
    gap: 16px;
  }

  .app-cta-btn {
    width: 180px;
    height: 54px;
  }

  .trust-section {
    padding: 96px 24px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card.green {
    grid-column: span 2;
  }

  .stat-card {
    height: 280px;
  }

  .stat-card-value {
    font-size: 40px;
  }

  .stat-card-label {
    font-size: 16px;
  }

  .video-card {
    height: 280px;
  }

  .testimonial-card.yellow {
    grid-column: span 2;
    height: 280px;
  }

  .sports-section {
    padding: 60px 24px 40px;
  }

  .sports-number-wrapper {
    align-items: flex-start;
  }

  .sports-number {
    font-size: 120px;
    letter-spacing: -6px;
  }

  .sports-arrow {
    display: flex;
    position: static;
    margin-top: 8px;
  }

  .sports-title {
    font-size: 28px;
  }

  .sports-desc {
    font-size: 16px;
    max-width: 450px;
  }

  .sports-tags-wrapper {
    padding: 40px 24px 60px;
  }

  .sports-tags {
    gap: 16px;
  }

  .sport-tag {
    padding: 12px 20px;
    font-size: 15px;
    gap: 10px;
  }

  .sport-tag img {
    width: 22px;
    height: 22px;
  }

  .footer {
    border-radius: 60px 60px 0 0;
    margin-top: 60px;
  }

  .footer-container {
    padding: 64px 24px 40px;
  }

  .footer-brand {
    gap: 16px;
    margin-bottom: 40px;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand img {
    height: 40px;
  }

  .footer-copyright {
    font-size: 16px;
  }

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

  .footer-column {
    gap: 24px;
  }

  .footer-link span {
    font-size: 14px;
  }

  .footer-link svg {
    width: 16px;
    height: 16px;
  }

  .footer-social {
    margin-top: 0;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .header {
    height: 96px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .hero {
    padding: 0px 60px 24px;
  }

  .hero-container {
    flex-direction: row;
    gap: 48px;
  }

  .hero-content {
    gap: 32px;
    max-width: 591px;
    text-align: left;
  }

  .hero-heading {
    font-size: 60px;
    line-height: 64px;
  }

  .app-buttons {
    justify-content: flex-start;
  }

  .app-store-btn {
    width: 202px;
    height: 60px;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-image {
    max-width: none;
  }

  .trusted-brands {
    padding: 16px 136px 24px;
  }

  .trusted-brands-header {
    justify-content: flex-start;
  }

  .brands-list {
    justify-content: space-between;
    min-width: 0;
  }

  .brands-list img {
    height: 64px;
  }

  .features-section {
    border-radius: 80px;
    margin-top: 100px;
    padding: 80px 64px;
    margin-left: 0;
    margin-right: 0;
  }

  .features-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
  }

  .features-title-group {
    max-width: 676px;
    text-align: left;
  }

  .features-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .features-subtitle {
    font-size: 18px;
  }

  .features-toggle {
    align-self: auto;
  }

  .features-toggle-btn {
    width: 180px;
    height: 48px;
    font-size: 16px;
  }

  .features-toggle-btn svg {
    width: 24px;
    height: 24px;
  }

  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .feature-cards.hidden {
    display: none;
  }

  .feature-card {
    border-radius: 28px;
  }

  .feature-card-content {
    padding: 32px 28px 24px;
  }

  .feature-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .feature-card-desc {
    font-size: 15px;
  }

  .feature-card-image {
    justify-content: center;
  }

  .feature-card-image img {
    width: 90%;
    max-width: 300px;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .how-it-works {
    padding: 120px 136px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .how-it-works-column:first-child {
    order: 1;
  }

  .phone-mockup {
    order: 2;
    grid-column: auto;
  }

  .how-it-works-column:last-child {
    order: 3;
  }

  .step-card {
    width: 340px;
  }

  .how-it-works-column:last-child .step-card {
    margin-left: auto;
  }

  .phone-mockup-container {
    width: 440px;
    height: 576px;
  }

  .products-section {
    padding: 120px 32px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .app-cta-section {
    height: 657px;
  }

  .app-cta-container {
    flex-direction: row;
    align-items: center;
    padding: 0 32px;
    height: 100%;
  }

  .app-cta-image {
    order: 1;
    flex: 1;
    position: relative;
    height: 100%;
    margin-top: 0;
  }

  .app-cta-image img {
    position: absolute;
    bottom: 0;
    left: 100px;
    width: 550px;
  }

  .app-cta-content {
    order: 2;
    flex: 1;
    max-width: 600px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .app-cta-heading {
    gap: 16px;
    margin-bottom: 48px;
  }

  .app-cta-title-line {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1px;
  }

  .app-cta-subtitle {
    font-size: 32px;
    line-height: 60px;
  }

  .app-cta-desc {
    font-size: 24px;
  }

  .app-cta-buttons {
    justify-content: flex-start;
  }

  .app-cta-btn {
    width: 202px;
    height: 60px;
  }

  .trust-section {
    padding: 140px 136px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-card.green {
    grid-column: 1;
    grid-row: span 2;
    height: 680px;
  }

  .stat-card {
    height: 300px;
  }

  .video-card {
    height: 300px;
  }

  .stat-card.tall {
    height: 356px;
  }

  .testimonial-card.yellow {
    grid-column: span 2;
    height: 356px;
  }

  .testimonial-card.yellow .testimonial-text {
    font-size: 24px;
  }

  .sports-section {
    padding: 80px 136px 48px;
  }

  .sports-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .sports-number-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .sports-number {
    font-size: 180px;
    letter-spacing: -8px;
  }

  .sports-arrow {
    position: static;
    margin-left: 16px;
    margin-top: 40px;
  }

  .sports-arrow svg {
    width: 108px;
    height: 116px;
  }

  .sports-label {
    font-size: 20px;
  }

  .sports-content {
    max-width: 400px;
    margin-left: auto;
    text-align: left;
  }

  .sports-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .sports-desc {
    font-size: 18px;
    max-width: 100%;
    margin: 0;
  }

  .sports-tags-wrapper {
    padding: 48px 136px 80px;
  }

  .sports-tags {
    gap: 24px;
    justify-content: flex-start;
  }

  .sport-tag {
    padding: 14px 24px;
    font-size: 16px;
    gap: 12px;
  }

  .sport-tag img {
    width: 24px;
    height: 24px;
  }

  .footer {
    border-radius: 80px 80px 0 0;
  }

  .footer-bg-image {
    display: block;
  }

  .footer-container {
    padding: 75px 80px 40px;
  }

  .footer-brand {
    margin-bottom: 60px;
  }

  .footer-links {
    gap: 88px;
  }
}

/* ========================================
   DARK THEME STYLES
   ======================================== */

/* Header dark theme */
[data-theme="dark"] .header {
  background-color: transparent;
}

[data-theme="dark"] .nav-link {
  color: var(--white);
}

[data-theme="dark"] .download-btn {
  background-color: var(--tertiary);
  color: var(--brand-bg);
}

[data-theme="dark"] .download-btn svg path {
  fill: var(--brand-bg);
}

[data-theme="dark"] .mobile-menu-btn svg {
  stroke: var(--white);
}

[data-theme="dark"] .mobile-menu {
  background-color: var(--body-bg);
}

[data-theme="dark"] .mobile-menu-header {
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .mobile-menu-close svg {
  stroke: var(--white);
}

/* Hero Section dark theme */
[data-theme="dark"] .hero-heading {
  color: var(--white);
}

[data-theme="dark"] .hero-description {
  color: var(--subtext);
}

[data-theme="dark"] .stat-text p:first-child {
  color: var(--white);
}

[data-theme="dark"] .stat-text p:last-child {
  color: var(--subtext);
}

[data-theme="dark"] .stat-divider div {
  background-color: var(--border-color);
}

[data-theme="dark"] .rating-text p:first-child {
  color: var(--white);
}

[data-theme="dark"] .rating-stars span {
  color: var(--subtext);
}

/* Trusted Brands dark theme */
[data-theme="dark"] .trusted-brands-header span {
  color: var(--subtext);
}

[data-theme="dark"] .brands-container {
  border-color: var(--brands-border);
  background-color: transparent;
}

[data-theme="dark"] .brands-list img {
  filter: grayscale(100%) brightness(1.5);
}

[data-theme="dark"] .brands-list img:hover {
  filter: grayscale(0%) brightness(1);
}

/* How It Works Section dark theme */
[data-theme="dark"] .section-title {
  color: var(--white);
}

[data-theme="dark"] .section-subtitle {
  color: var(--subtext);
}

[data-theme="dark"] .step-card {
  backdrop-filter: blur(5px);
}

[data-theme="dark"] .step-card.blue {
  background: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  border-color: #565660;
}

[data-theme="dark"] .step-card.red {
  background: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  border-color: #565660;
}

[data-theme="dark"] .step-card.green {
  background: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  border-color: #565660;
}

[data-theme="dark"] .step-card.yellow {
  background: linear-gradient(180deg, rgba(55, 55, 61, 0.02) 0%, rgba(48, 48, 53, 0.40) 100%);
  border-color: #565660;
}

[data-theme="dark"] .step-card-title {
  color: var(--white);
}

[data-theme="dark"] .step-card-desc {
  color: var(--subtext);
}

/* Products Section dark theme */
[data-theme="dark"] .products-section {
  background-color: var(--body-bg);
}

[data-theme="dark"] .products-section .section-title {
  color: var(--white);
}

[data-theme="dark"] .products-section .section-subtitle {
  color: var(--subtext);
}

[data-theme="dark"] .product-card-image {
  background-color: var(--card-bg);
}

[data-theme="dark"] .product-card-title {
  color: var(--white);
}

[data-theme="dark"] .product-card-desc {
  color: var(--subtext);
}

/* Trust Section - Stat cards dark theme */
[data-theme="dark"] .stat-card {
  background-color: #131721;
  border-color: #2A2A2A;
}

[data-theme="dark"] .stat-card-value {
  color: var(--white);
}

[data-theme="dark"] .stat-card-label {
  color: var(--subtext);
}

[data-theme="dark"] .stat-card svg path {
  stroke: var(--white);
}

/* Video card dark theme */
[data-theme="dark"] .video-card {
  background-color: #131721;
}

/* Sports Section dark theme - Mobile first */
[data-theme="dark"] .sports-number {
  color: var(--white);
}

[data-theme="dark"] .sports-title {
  color: var(--accent-blue);
}

[data-theme="dark"] .sports-desc {
  color: var(--subtext);
}

[data-theme="dark"] .sports-label {
  color: var(--accent-red);
}

/* Sports arrow color */
.sports-arrow-svg {
  color: #161B2D;
}

[data-theme="dark"] .sports-arrow-svg {
  color: #333333;
}

/* Sports tags dark theme */
[data-theme="dark"] .sports-tags-wrapper {
  padding-left: 16px;
  padding-right: 16px;
}

[data-theme="dark"] .sports-tags {
  gap: 12px;
  justify-content: center;
}

[data-theme="dark"] .sport-tag {
  background-color: #131721;
  color: var(--white);
  padding: 10px 16px;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

[data-theme="dark"] .sport-tag img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Dark theme tablet styles (768px+) */
@media (min-width: 768px) {
  [data-theme="dark"] .sports-tags {
    gap: 16px;
  }

  [data-theme="dark"] .sport-tag {
    padding: 12px 20px;
    font-size: 15px;
  }

  [data-theme="dark"] .sport-tag img {
    width: 22px;
    height: 22px;
  }
}

/* Dark theme desktop styles (1024px+) */
@media (min-width: 1024px) {
  [data-theme="dark"] .sports-tags-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  [data-theme="dark"] .sports-tags {
    gap: 24px;
  }

  [data-theme="dark"] .sport-tag {
    padding: 12px 24px;
    gap: 12px;
    font-size: 16px;
  }

  [data-theme="dark"] .sport-tag img {
    width: 24px;
    height: 24px;
  }
}

/* Theme toggle button */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

/* Hide mobile theme toggle on desktop, show desktop theme toggle */
#theme-toggle-mobile {
  display: flex;
}

#theme-toggle {
  display: flex;
}

@media (min-width: 1024px) {
  #theme-toggle-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  #theme-toggle {
    display: none;
  }
}

.theme-toggle:hover {
  background-color: rgba(128, 128, 128, 0.1);
}

.theme-icon {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

/* In dark mode, make the icon white */
[data-theme="dark"] .theme-toggle .theme-icon {
  filter: invert(1) brightness(2);
}

/* App store buttons border for dark theme */
[data-theme="dark"] .app-store-btn {
  /* border: 1px solid var(--accent-cyan); */
  border-radius: 10px;
}

/* Dark mode glowing orbs container */
.dark-mode-glow {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

[data-theme="dark"] .dark-mode-glow {
  display: block;
}

.glow-orb {
  position: absolute;
  border-radius: 9999px;
  background: #2CA5FF;
  opacity: 0.6;
  filter: blur(400px);
}

.glow-orb-top-left {
  width: 500px;
  height: 385px;
  top: -96px;
  left: -117px;
}

.glow-orb-hero-right {
  width: 500px;
  height: 385px;
  top: 400px;
  right: -200px;
}

.glow-orb-middle {
  width: 667px;
  height: 247px;
  top: 2800px;
  right: -100px;
}

/* Dark theme image swaps */
[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

/* Hero image theme switching */
.hero-img-dark {
  display: none;
}

.hero-img-light {
  display: block;
}

[data-theme="dark"] .hero-img-light {
  display: none;
}

[data-theme="dark"] .hero-img-dark {
  display: block;
}

/* Dark theme icon colors */
[data-theme="dark"] .theme-toggle .sun-icon,
[data-theme="dark"] .theme-toggle .moon-icon {
  stroke: var(--white);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  stroke: var(--heading);
}

/* Step card icon colors for dark theme */
[data-theme="dark"] .step-card.blue svg path {
  stroke: #5ab9ff;
}

[data-theme="dark"] .step-card.green svg path {
  stroke: #34c759;
}

[data-theme="dark"] .step-card.yellow svg path {
  stroke: #d0ac30;
}

[data-theme="dark"] .step-card.red svg path {
  stroke: #ea6666;
}

/* Trust section dark theme */
[data-theme="dark"] .trust-section .section-title {
  color: var(--white);
}

[data-theme="dark"] .trust-section .section-subtitle {
  color: var(--subtext);
}

/* Testimonial cards - KEEP light backgrounds AND dark text in dark mode per reference */
/* Green and yellow cards maintain their original colors and text colors */

[data-theme="dark"] .testimonial-card.green .testimonial-title,
[data-theme="dark"] .testimonial-card.yellow .testimonial-title,
[data-theme="dark"] .testimonial-card.green .testimonial-text,
[data-theme="dark"] .testimonial-card.yellow .testimonial-text {
  color: #161B2D;
}

[data-theme="dark"] .testimonial-card.green .testimonial-author-info p:first-child,
[data-theme="dark"] .testimonial-card.yellow .testimonial-author-info p:first-child {
  color: #161B2D;
}

[data-theme="dark"] .testimonial-card.green .testimonial-author-info p:last-child,
[data-theme="dark"] .testimonial-card.yellow .testimonial-author-info p:last-child {
  color: #666666;
}

/* Mobile menu dark theme - additional styles */
[data-theme="dark"] .mobile-menu .nav-link {
  color: var(--white);
}

/* Mobile theme toggle in menu */
[data-theme="dark"] .mobile-menu .theme-toggle .theme-icon {
  filter: invert(1) brightness(2);
}

/* Mobile download button in menu */
[data-theme="dark"] .mobile-menu .download-btn {
  background-color: var(--tertiary);
  color: var(--brand-bg);
}

[data-theme="dark"] .mobile-menu .download-btn svg path {
  fill: var(--brand-bg);
}

/* Features section already dark - ensure consistency */
[data-theme="dark"] .features-section {
  background-color: #161b2d;
}

/* Feature cards keep white background and dark text in dark mode */
[data-theme="dark"] .feature-card {
  background-color: #ffffff;
}

[data-theme="dark"] .feature-card-title {
  color: #161B2D;
}

[data-theme="dark"] .feature-card-desc {
  color: #666666;
}

/* App CTA section already dark */
[data-theme="dark"] .app-cta-section {
  background-color: #131721;
}

/* Footer already dark */
[data-theme="dark"] .footer {
  background-color: var(--brand-bg);
}

/* Title switching for theme */
.title-light {
  display: inline;
}

.title-dark {
  display: none;
}

[data-theme="dark"] .title-light {
  display: none;
}

[data-theme="dark"] .title-dark {
  display: inline;
}

/* Venues label styling */
.venues-label {
  font-size: 16px;
  color: #383a47;
  opacity: 0.6;
  line-height: 24px;
}

[data-theme="dark"] .venues-label {
  color: var(--subtext);
}