html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y manipulation;
}

.compact-title {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.compact-title .eyebrow {
  margin-bottom: 0;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
}

.worldcup-tabs {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.worldcup-tabs a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
}

.worldcup-tabs a.active {
  background: #f8fafc;
  color: #0f172a;
}

.search-box select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.search-box select:focus {
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.14);
}

.search-box select option {
  color: #0f172a;
  background: #f8fafc;
}

.timezone-card {
  margin-top: 22px;
  margin-bottom: 0;
}

@media all and (display-mode: standalone) {
  .site-header {
    display: none;
  }

  .app-shell {
    padding-top: max(12px, env(safe-area-inset-top));
  }
}

.standalone-app .site-header {
  display: none;
}

.standalone-app .app-shell {
  padding-top: max(12px, env(safe-area-inset-top));
}

@media (max-width: 680px) {
  .site-header {
    margin-bottom: 18px;
  }

  .compact-title {
    margin-bottom: 12px;
  }

  .worldcup-tabs {
    width: 100%;
  }

  .worldcup-tabs a {
    flex: 1;
    text-align: center;
  }

  .timezone-card {
    margin-top: 18px;
  }
}
