.aurora-subtle {
  position: relative;

  overflow: hidden;
  color: white;

  /* muted colors */
  background: linear-gradient(
    120deg,
    #1e293b,
    /* Slate */ #0f766e,
    /* Teal */ #0e7490,
    /* Dark Cyan - NEW */ #1e3a8a,
    /* Blue */ #312e81,
    /* Indigo */ #4c1d95 /* Deep Violet - NEW */
  );

  background-size: 300% 300%;
  animation: auroraSoft 24s ease-in-out infinite;
}

/* slow, calm movement */
@keyframes auroraSoft {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.aurora-subtle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .aurora-subtle {
    animation: none;
  }
}

/* --- COMPONENT STYLES --- */

.mmda-glass-badge {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 1000;

  /* Layout */
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 35px;

  /* Glassmorphism Effect */
  background: rgba(
    255,
    255,
    255,
    0.15
  ); /* Slightly more opaque to make black text readable */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px; /* Slightly more squared for a professional badge look */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

  /* Animation */
  animation: float 6s ease-in-out infinite;
  transition: all 0.4s ease;
}

.mmda-glass-badge img {
  width: 80px; /* Big and bold */
  height: auto;
}

/* Stacks Title and Subtitle */
.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 3rem; /* Massive scale */
  color: #8b0000; /* Dark Red */
  line-height: 0.8;
  margin: 0;
}

.subtitle {
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  color: #000000; /* Black as requested */
  text-transform: uppercase;
  letter-spacing: 4px; /* Spaced out for a clean look */
  font-weight: 700;
  margin-top: 5px;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 1600px) {
  .mmda-glass-badge {
    top: 20px;
    left: 20px;
    padding: 15px 25px;
    gap: 15px;
  }
  .mmda-glass-badge img {
    width: 60px;
  }
  .title {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 1200px) {
  .mmda-glass-badge {
    top: 10px;
    left: 10px;
    padding: 10px 10px;
    gap: 0px;
  }
  .mmda-glass-badge img {
    width: 50px;
  }
  .title {
    font-size: 1.8rem;
    display: none;
  }
  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: none;
  }
}

/* Float Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Subtle Hover */
.mmda-glass-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}
