/* Auranda App Base Styles
 * Shared across all MODE views (ChordMode, ProgressionMode, SongMode, etc.)
 */

/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Dark stage backdrop */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 20%, #1a1a1f 0%, #0c0c10 55%, #050507 100%);
  color: #f5f5f5;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* MainView stage - fixed to 1920x950 for FullHD target */
.main-view {
  width: 1920px;
  height: 950px;
  background: #e6e6e6 url('../Assets/AuarandaOzadjeOpera.png') center/cover no-repeat;
  border: 1px solid #9b1b1b;
  border-radius: 10px;
  backdrop-filter: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}
