.our-presence {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;              /* tighter spacing */
  padding: 0;
  margin: 28px auto 0;
  max-width: 1050px;
}

.our-presence li {
  padding: 8px 16px;      /* slightly smaller */
  background: linear-gradient(145deg, #141414, #080808);
  color: #ffffff;
  border-radius: 32px;
  font-size: 11.5px;      /* reduced text */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 4px 12px rgba(0,0,0,0.55);

  transition: all 0.25s ease;
}

.our-presence li:hover {
  transform: translateY(-1.5px);   /* very subtle */
  box-shadow:
    0 8px 22px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(255,215,140,0.25);
}
.twamevcon{
    padding: 80px 20px 80px 20px!important;
}
@media (max-width: 768px) {
  .our-presence li {
    font-size: 10.8px;
    padding: 7px 14px;
  }
}

.coming-soon {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9a24d, #b08a2e);
  color: #111;
  padding: 3px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: super;
  box-shadow: 0 0 8px rgba(201, 162, 77, 0.6);
}

