body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  padding-top: 70px; /* Account for fixed navbar height */
}

.navbar {
  display: flex;
  /* justify-content: center; */
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  background-color: #000;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  /* border-bottom: 2px solid #f00; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  align-items: center;
  
}

.navbar .logo img {
  width: 180px;
  margin-right: 10px;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
}

.navbar .nav-links li {
  margin: 0 30px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
}

.navbar .nav-links a:hover {
  color: #00cc99;
}

.navbar .nav-links a.active {
  color: #00cc99;
  font-weight: bold;
  /* border-bottom: 2px solid #00cc99; */
}

.navbar .buttons a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.navbar .buttons a.button {
  background-color: #ff0;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
}

#dynamic-content {
  padding: 20px;
  text-align: center;
}

#dynamic-content img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#dynamic-content img.loaded {
  opacity: 1;
}

.img-placeholder {
  background: #222;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #222 0%, #333 50%, #222 100%);
  background-size: 200% 100%;
  animation: placeholderShimmer 1.5s infinite linear;
}

@keyframes placeholderShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.img-error {
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .navbar .nav-links {
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 20px 0;
    display: none;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .navbar .nav-links li {
    margin: 10px 0;
  }
}
