body {
  background: #111;
  color: #fff;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  margin: 0;
}

/* Marquee */
.marquee {
  background: #ffcc00;
  color: #000;
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ----------------- Top Bar ----------------- */
.bg-dark {
  background-color: #000 !important;
  /* ensure black background */
}

.bg-dark a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.bg-dark a:hover {
  color: #ffcc00;
  /* hover color */
}

/* ----------------- Logo + Links Bar ----------------- */
.text-light.py-1 {
  background-color: #000;
  /* black background */
  border-bottom: 1px solid #333;
}

/* Links styling */
.text-light .nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}

/* Box animation from bottom */
.text-light .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border: 2px solid #ffcc00;
  border-top: none;
  border-left: none;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.text-light .nav-link:hover::before {
  transform: scaleY(1);
}

.text-light .nav-link:hover {
  color: #ffcc00;
}

/* Optional: Adjust spacing for links and logo */
.container.d-flex.justify-content-between.align-items-center {
  gap: 1rem;
}

/* Make responsive: stack links under logo on small screens */
@media (max-width: 576px) {
  .container.d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .d-flex.gap-3 {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}
