.motherD{

    display: block;
  position: relative;
  align-items: flex-start;
  gap: 20px;

}

.secondMenuBar {

  position: absolute;
  top: 50px;
  left: calc(50% - 650px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(206, 132, 57, 0.865);
  border-radius: 12px;
  box-shadow:
      4px 0 0 0 rgb(255, 255, 255),
      -4px 0 0 0 rgb(255, 255, 255),
      0 4px 0 0 rgb(255, 255, 255),
      0 -4px 0 0 rgb(255, 255, 255);
  z-index: 10;

}

/* ===== Extras bar (homepage-only shortcuts) ===== */
.secondMenuBar .ExtrasBar{
  flex-direction: column;
  max-width: none;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
.ExtrasBar{
        display: flex;
    justify-content: center;
    gap: 25px;
background-color:  rgba(206, 132, 57, 0.865);
 max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 0;
    box-shadow:
        4px 0 0 0 rgb(255, 255, 255),
        -4px 0 0 0 rgb(255, 255, 255),
        0 4px 0 0 rgb(255, 255, 255),
        0 -4px 0 0 rgb(255, 255, 255);
}

.ExtrasBar a{
    border: none;
    background-color: rgba(206, 132, 57, 0.865);
    box-shadow:
        4px 0 0 0 black,
        -4px 0 0 0 black,
        0 4px 0 0 black,
        0 -4px 0 0 black;
    font-family: "Pixelify Sans", sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: #000000;
    padding: 16px 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ExtrasBar a:hover{
    background-color: #bb2800;
    color: white;
}