@media (max-width: 1000px) {
  body {
    padding-top: 110px;
  }

  .site-header {
    height: auto;
    min-height: 50px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 0;
  }

  .sport-nav {
    flex: 0 0 100%;
    order: 3;
    padding: 0 0 0.15rem;
    margin-top: -1.5rem;
  }

  .sport-nav-list {
    justify-content: center;
  }

  .sport-nav-link {
    padding: 0.15rem 0.35rem;
    gap: 0;
    font-size: 0.75rem;
  }

  .sport-nav-link svg {
    width: 44px;
    height: 44px;
  }
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem 2.5rem;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  line-height: 1.55;
}

.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.site-footer-disclaimer {
  margin: 0 0 0.75rem;
}

.site-footer-disclaimer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.site-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer-links a:hover {
  text-decoration: underline;
}

.site-footer-links span {
  margin: 0 0.4rem;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 1.75rem 1rem 2rem;
  }

  .site-footer-inner {
    text-align: left;
  }

  .site-footer-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .site-footer-links span {
    display: none;
  }

  .site-footer-disclaimer {
    margin-bottom: 1rem;
  }
}

/* Shared flash and native layout styles */
.native-app-body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.flash-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  margin: 0 1rem;
  max-width: 540px;
  width: calc(100% - 2rem);
  background-color: #38a169;
  border: 1px solid #2f855a;
  border-radius: 9999px;
  color: #f0fff4;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6.5rem;
  z-index: 5;
}

.flash-notice--native {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 1rem);
}

.flash-notice__text {
  flex: 1;
}

.flash-notice__close {
  background: transparent;
  border: none;
  color: #f0fff4;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.1rem;
  line-height: 1;
}

.flash-alert {
  padding: 1rem;
  margin: 1rem;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 0.25rem;
  color: #721c24;
}

