body {
  font-family: 'Inter', sans-serif;
  background-color: #050507;
  color: #f8f9fa; /* brighter base text */
}

.text-gradient {
  background: linear-gradient(90deg, #b266ff, #ff66e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Make muted text readable */
.text-muted, .text-secondary {
  color: #d0d0e0 !important;
}

.btn-gradient {
  background: linear-gradient(90deg, #9b5cff, #ff69f8);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 102, 230, 0.4);
}

/* Navbar */
.glassy-navbar {
  background: rgba(25, 20, 40, 0.8);
  backdrop-filter: blur(15px);
}

.nav-link:hover {
  color: #ff8af5 !important;
}

/* Cards */
.glassy-card {
  background: rgba(60, 40, 90, 0.6);
  border: 1px solid rgba(200, 100, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glassy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(180, 90, 255, 0.5);
}

/* Backgrounds */
.bg-dark-2 {
  background-color: #111018;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1b0f2f, #050507);
  color: #fff;
}

/* Footer */
footer {
  color: #bfbaff;
}
footer .text-muted {
  color: #cfc3ff !important;
}

/* Ensure demo login box is centered properly and visible */
.login-section {
  min-height: 100vh;              /* fill full screen */
  padding-top: 80px;              /* adjust if navbar is taller */
  background: radial-gradient(circle at top, #1b0f2f, #0a0a0f);
}

/* Navbar brand alignment */
.navbar-brand {
  display: flex;
  align-items: center;       /* centers logo and text vertically */
  gap: 10px;                 /* space between logo and text */
}

/* Logo style */
.navbar-logo {
  height: 64px;              /* large, consistent height */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Brand text style */
.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: monospace;
  line-height: 1;
  color: #e78cff;
  display: flex;
  align-items: center;
  /* transform: translateY(2px); */
}

.link-gradient {
  background: linear-gradient(90deg, #b266ff, #ff66e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-gradient:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Purple border for images */
.border-purple {
  border: 2px solid rgba(200, 100, 255, 0.5);
}

/* Selection buttons */
.btn-select {
  background: rgba(50, 30, 75, 0.6);
  border: 1px solid rgba(180, 90, 255, 0.4);
  color: #e6d6ff;
  padding: 6px 18px;
  transition: 0.2s;
}

.btn-select:hover, .btn-select:active {
  background: linear-gradient(90deg, #b266ff, #ff66e6);
  color: #fff !important;
  box-shadow: 0 0 15px rgba(255, 100, 240, 0.5);
}

/* Right-side option panel */
.options-panel {
  background: rgba(60, 40, 90, 0.4);
  border: 1px solid rgba(200, 100, 255, 0.25);
  padding: 10px 14px;
  border-radius: 12px;
}

.options-panel label {
  cursor: pointer;
  color: #e7ddff;
}

.options-panel input[type="radio"] {
  accent-color: #cc66ff;
}