/* Header Styles */
.header {
  background-color: #c11111;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

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

.logo-icon {
  border: 3px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 34px;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}

.logo-text {
  font-size: 36px;
  letter-spacing: 8px;
  font-weight: bold;
}

.ad-banner img {
  height: 80px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-bar {
  background-color: #000;
  padding: 10px 0;
}

.nav-bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-bar li {
  color: white;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

/* Vertical divider */
.nav-bar li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #444;
}

.nav-bar li:hover {
  color: #c11111;
}

.nav-bar .active {
  color: #c11111;
  font-weight: bold;
}

.nav-square {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  transition: background-color 0.3s;
}

.nav-bar li:last-child:hover .nav-square {
  background-color: rgba(255, 255, 255, 0.1);
}