html {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  padding: 0;
  background: #b3afaf;
  /* Thêm bg nhẹ nếu có */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #3d2101;
  overflow-x: hidden;
  position: relative;
}

.topbar {
  background: #444;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

.container {
  margin: 10px auto 0 auto;
  background: #ffe2c5;
  border-radius: 10px 10px 8px 8px;
  box-shadow: 0 6px 30px #0001;
  padding-bottom: 12px;
  border: 1.5px solid #c48337;
}

.logo-bar {
  text-align: center;
  padding: 14px 0 10px 0;
}

.logo-bar img {
  max-height: 60px;
  filter: drop-shadow(1px 3px 4px #8e572e40);
}

nav {
  display: flex;
  background: #cf883b;
  border-radius: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 16px 12px 16px;
  box-shadow: 0 1px 4px #f6c08a30;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

nav a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: #fff8f0;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: 0.18s;
  border-right: 1px solid #e6b17666;
  background: none;
  white-space: nowrap;
  min-width: 0;
}

nav a:last-child {
  border-right: none;
}

nav a.active,
nav a:hover {
  background: #d4a25f;
  color: #6b3400;
  text-shadow: 0 1px 0 #fff7;
}

.footer {
  color: #664900;
  text-align: center;
  padding: 0px 16px 3px 16px;
  font-size: 14px;
  margin-top: 6px;
}

@media (max-width: 660px) {
  .container {
    border-radius: 0;
    box-shadow: none;
  }

  nav {
    margin: 0 8px 12px 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  nav a {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    padding: 10px 4px;
    white-space: nowrap;
    border-right: 1px solid #e6b17666;
    border-bottom: none;
  }

  nav a:last-child {
    border-right: none;
  }
}

@media (max-width: 480px) {
  nav a {
    font-size: 13px;
    padding: 10px 3px;
  }
}