@import url('theme-bright.css');

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 16px 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.header-landing { padding: 10px 16px 0; }
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--cream-nav);
  border: 1.5px solid var(--gold-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.header-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--red-deep);
  border: 1.5px solid var(--gold);
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #fffef8, #fff3d0);
}
.header-logo:hover {
  color: var(--red-hot);
  border-color: var(--gold-bright);
}
.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
}
.header-cta-play {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid #e68a00;
  background: var(--grad-cta);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: filter 0.2s, transform 0.2s;
}
.header-cta-play:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  background: #fffef8;
  color: var(--red);
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.1);
  transition: transform 0.2s, background 0.2s;
}
.header-icon:hover {
  transform: translateY(-1px);
  background: #fff3d0;
  color: var(--red-hot);
}

.menu-item {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-right: 1px solid rgba(212, 175, 55, 0.35);
}
.menu-item:last-child,
.menu-community { border-right: none; }
.menu-item::after { display: none; }
.menu-item:hover { color: var(--red-hot); }

.menu-community { position: relative; display: flex; align-items: center; gap: 7px; }
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--gold-deep);
}

.community-drop {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  min-width: 220px;
  background: var(--surface-solid);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.menu-community:hover .community-drop { display: block; }
.community-drop a {
  display: block;
  padding: 11px 14px;
  color: var(--text);
}
.community-drop a:hover {
  background: rgba(255, 193, 7, 0.18);
  color: var(--red);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    min-height: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 18px;
  }
  .header-nav { order: 3; width: 100%; justify-content: center; }
  .header-icons { display: none; }
}
@media (max-width: 520px) {
  .header-logo { display: none; }
  .header-cta-play { padding: 8px 14px; font-size: 11px; }
  .menu-item { font-size: 12px; padding: 6px 10px; }
}
