.nexus-menu-wrapper {
  width: 100%;
  padding: 15px 20px;
}

.nexus-menu {
  display: flex;
  justify-content: center;
}

.nexus-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nexus-menu ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}

.align-left .nexus-menu {
  justify-content: flex-start;
}

.align-center .nexus-menu {
  justify-content: center;
}

.align-right .nexus-menu {
  justify-content: flex-end;
}

/* Shared Lightbox Button Base */
.nexus-lightbox-btn,
.nexus-btn-read,
.nexus-btn-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  padding: 15px 60px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
  min-height: 45px;
  border: none;
}

/* READ Button Style */
.nexus-btn-read {
  background-color: #6A1B9A;
  color: #FFFFFF;
}

.nexus-btn-read:hover {
  background-color: #4A0E6C;
}

/* WATCH Button Style */
.nexus-btn-watch {
  background-color: #F8BB32;
  color: #6A1B9A;
}

.nexus-btn-watch:hover {
  background-color: #dba125;
}
