body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f2f2f2;
}

/* HEADER BASE */
.header {
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-left img {
  width: 28px;
  height: 28px;
}
.header-left .title {
  font-size: 18px;
  font-weight: bold;
}
.header-left .title .x { color: white; }
.header-left .title .pen { color: #1a73e8; }
.header-left .title .id { color: #00c853; }
.header-left .tagline {
  font-size: 11px;
  color: #bbb;
  margin-left: 5px;
}
/* ICONS RIGHT */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-icons button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.menu-dropdown {
  display: none;
  position: absolute;
  right: 20px;
  top: 50px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 1000;
  min-width: 180px;
}
.menu-dropdown a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #333;
}
.menu-dropdown a:hover {
  background: #333;
}
/* SEARCH DROPDOWN */
.mobile-search {
  display: none;
  padding: 10px 20px;
  background: #111;
}
.mobile-search input {
  width: 94%;
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  outline: none;
  
}
@media screen and (max-width: 768px) {
  .header-left .tagline {
    display: none;
  }

  .header-left .title {
    font-size: 14px;
  }
}