.install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.93);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  z-index: 200;
  flex-wrap: wrap;
}

.install-native-btn {
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.install-native-btn:hover {
  background: rgba(255,255,255,0.15);
}

.install-dismiss {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.install-banner #install-msg {
  flex: 1;
  min-width: 200px;
}

:root {
  --bg-overlay: rgba(10, 20, 40, 0.35);
  --panel: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --button: #1d4ed8;
  --button-hover: #1e40af;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: url("shared/Background/MainImage.png") center / cover no-repeat;
  background-attachment: scroll;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

body {
  min-height: 100vh;
  padding: 0;
  position: relative;
}

body::before {
  content: none;
}

.top-bar {
  position: fixed;
  top: 10%;
  right: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 100;
}

.primary-btn,
.game-link {
  border: 0;
  border-radius: 12px;
  background: var(--button);
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
}

.primary-btn {
  padding: 1.6rem 2rem;
  font-size: 2.2rem;
  border-radius: 20px;
}

.primary-btn:hover,
.game-link:hover,
.primary-btn:focus-visible,
.game-link:focus-visible {
  background: var(--button-hover);
  outline: none;
}

.games-panel {
  margin-top: 0.5rem;
  background: var(--panel);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 200px;
}

.hidden {
  display: none;
}

.games-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.games-list li {
  display: flex;
}

.game-link {
  width: 100%;
  text-align: center;
}


