/* Universal button styles for the project */
:root {
  --gold: #bfa43a;
  --gold-dim: #bfa43a33;
}

/* Intentionally no .menu-btn here to avoid overriding index.css */

/* Primary action/order button used across the site */
.order-btn {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(0,0,0,0.6);
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 0.375rem; /* rounded-md */
  transition: color 0.25s, background 0.25s, border-color 0.5s, box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.2s ease;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.order-btn:hover, .order-btn:focus {
  color: #fff;
  background: rgba(191,164,58,0.10);
  border-color: var(--gold);
  box-shadow: 0 0 16px 2px rgba(191,164,58,0.20), 0 0 28px 8px rgba(191,164,58,0.10);
  transform: translateY(-1px);
}
.order-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 8px 1px rgba(191,164,58,0.18);
}

/* Arcade menu active state */
.menu-btn.active {
  color: #111 !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Selected ROM button */
.order-btn.selected {
  background: var(--gold) !important;
  color: #111 !important;
}

/* Mobile dropdown toggle buttons - more compact */
.mobile-dropdown-toggle {
  width: 100%;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(0,0,0,0.8);
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.375rem;
  transition: all 0.25s ease;
  margin: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
}

.mobile-dropdown-toggle:hover {
  color: #fff;
  background: rgba(191,164,58,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 12px 1px rgba(191,164,58,0.25);
}

.mobile-dropdown-toggle span {
  transition: transform 0.2s ease;
}

/* Mobile dropdown content - more compact */
.mobile-dropdown-content {
  max-height: 150px; /* Even shorter menu */
  overflow-y: auto;
  background: rgba(0,0,0,0.95);
  border: 1px solid var(--gold);
  border-radius: 0.375rem;
  margin: 0.2rem 0 0.3rem 0;
  padding: 0.3rem;
  display: none;
  position: relative;
  z-index: 95;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.mobile-dropdown-content.show {
  display: block !important;
}

/* Mobile game/music buttons use order-btn style - shortened for mobile */
.mobile-dropdown-content .order-btn {
  margin: 0.1rem 0;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  min-height: 28px;
  line-height: 1.2;
  width: 100%;
  text-align: left;
}

/* Mobile fullscreen button */
.mobile-fullscreen-btn {
  margin-top: 0.5rem;
  font-weight: bold;
}
