.navbar, .navbar * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 16px;
  padding-top: 70px;
}

.navbar {
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  width: 100%;
  max-width: 1350px;
  margin: 16px auto;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-family: 'Play', sans-serif;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.data-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.Logo {
  width: 50px;
  height: auto;
  filter: invert(100%) brightness(200%);
}

.navbar a,
.menu-data a {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin: 0 6px;
  font-weight: 600;
}

.navbar a:hover,
.menu-data a:hover,
.navbar a:focus,
.menu-data a:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #00102A;
}

.brand:hover,
.brand:focus {
  background-color: transparent;
  color: #fff;
}

.menu-data {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 761px) {
  .navbar {
    max-width: 100%;
    margin: 0;
    left: 0;
    transform: none;
    border-radius: 0;
  }

  .menu-data {
    position: absolute;
    right: 0;
    top: 60px;
    height: auto;
    min-height: calc(100vh - 60px);
    width: 100%;
    max-width: 260px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
    z-index: 1001;
  }

  .menu-data.open {
    transform: translateX(0);
    opacity: 1;
  }

  #Menu-bar,
  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu-data a {
    padding: 12px 10px;
    margin: 6px 0;
    text-align: left;
  }
}

.size-icon {
  font-size: 26px;
}

#Menu-bar,
.menu-close {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}
