//* ✅ Global Styles */
body {
  background-image: url('./background.png'); /* Adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

/* ✅ Header Styling */
header {
  padding: 2rem;
  background-color: #222;
  border-bottom: 2px solid #ff00ff;
}

/* ✅ Navigation Buttons */
nav button {
  margin: 0.3rem;
  padding: 0.5rem 1rem;
  background-color: #ff00ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* ✅ Tab Visibility */
.tab {
  display: none;
  padding: 2rem;
}

.tab.active {
  display: block;
}

/* ✅ Slot Canvas */
#slotCanvas {
  background-color: #222;
  border: 2px solid #ffcc00;
  margin: 1rem auto;
  display: block;
}

/* ✅ Button Font */
button {
  font-family: 'Orbitron', sans-serif;
}

/* ✅ Optional Background Div (if used) */
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('./background.png'); /* Same image, optional div */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

/* 🔥 Neon Glow on Hover */
nav button:hover {
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  transform: scale(1.05);
}

/* 🌀 Animated Background Overlay */
#background::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,0,255,0.2) 0%, transparent 70%);
  animation: pulse 5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ✅ Discord Profile Styling */
#loginStatus {
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
}

.profile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.profile img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}