.aviator-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 15px;
}

.aviator-history-bar {
  display: flex;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 12px;
  gap: 8px;
  white-space: nowrap;
}
.aviator-history-bar::-webkit-scrollbar { display: none; }

.aviator-history-bubble {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.aviator-game-area {
  position: relative;
  height: 250px;
  background: linear-gradient(180deg, #111424 0%, #1a1e38 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aviator-multiplier {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.aviator-plane {
  position: absolute;
  left: 10%;
  bottom: 20%;
  font-size: 3rem;
  z-index: 15;
  transition: none; /* Controlled by JS strictly */
  filter: drop-shadow(0 10px 10px rgba(255, 0, 0, 0.4));
}

.aviator-plane.flying {
  filter: drop-shadow(0 15px 15px rgba(255, 100, 0, 0.6));
}

.aviator-status-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.aviator-controls {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}

.aviator-bet-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 5px;
  flex: 1;
}

.aviator-bet-display {
  text-align: center;
  flex: 1;
}

.aviator-action-btn {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.aviator-live-bets {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
  overflow-y: auto;
}
