
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header Section */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d8d7d7;
}

.header-main .logo h1 {
  margin: 1;
  font-size: 24px;
  font-weight: bold;
}

.header-main .logo span {
  color: #f7b500;
}

/* Main Navbar */
.main-navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-navbar li {
  position: relative;
  margin-right: 20px;
}

.main-navbar a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 10px;
  display: block;
}

.main-navbar .dropdown:hover .dropdown-content {
  display: block;
}

/* Tags */
.tag-new,
.tag-hot {
  background-color: #66bb6a;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.tag-hot {
  background-color: #f9a825;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #b1aeae;
}

/* Icons */
.header-main .icons a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-size: 18px;
}

.header-main .icons i {
  font-size: 20px;
}

.header-main .icons span {
  margin-left: 5px;
  font-size: 14px;
}