html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #d4af37;
  background: #111;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  /*z-index: -1;*/
  object-fit: cover;
  /*opacity: 0.7;*/
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: auto;
  padding: 16px 8px 0 8px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 8px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.action-btn {
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  cursor: pointer;
  letter-spacing: 1px;
}

nav {
  display: flex;
  justify-content: space-around;
  margin: 18px 0 0 0;
  background: rgba(0,0,0,0.7);
  opacity: 0.9;
  border-radius: 10px;
  padding: 8px 0;
}

nav a {
  position: static;
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 1;
  transition: background 0.2s;
}

nav a.active, nav a:hover {
  background: #d4af37;
  color: #111;
}

.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.game-card {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.game-photo {
  width: 80px;
  height: 80px;
  background: #fff;
  color: #bfa14a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.game-title {
  color: #d4af37;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 18px 0 10px 0;
  text-align: center;
}

.scroll-indicator {
  text-align: center;
  margin-top: 18px;
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: bold;
}

.arrow {
  font-size: 2.2rem;
  color: #fff;
  margin-top: 2px;
}

.card, .support-card, .wallet-card, .agency-card {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  margin: 12px 0;
  padding: 18px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-gold {
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: bold;
  font-size: 1rem;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 480px) {
  .container {
    padding: 8px 2px 0 2px;
  }
  .game-photo {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  .game-title {
    font-size: 1rem;
  }
} 