/* CLIPHORIUM_SITE_INJECT_CSS_V1 (nav + burger + mobile drawer + footer box) */

:root{
  --ch-gold: #D4AF37;
  --ch-bg: rgba(10,10,14,.62);
  --ch-border: rgba(255,255,255,.12);
  --ch-text: rgba(245,245,245,.92);
  --ch-muted: rgba(245,245,245,.72);
  --ch-shadow: 0 18px 45px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}

/* NAV container */
.ch-nav{
  position: sticky;
  top: 14px;
  z-index: 99999;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 16px auto 18px auto;
  background: var(--ch-bg);
  border: 1px solid var(--ch-border);
  border-radius: 22px;
  box-shadow: var(--ch-shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* bar layout */
.ch-nav-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
}

/* subtle laser */
.ch-nav-bar::after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.55), transparent);
  opacity: .9;
  pointer-events:none;
}

.ch-nav-logo img{
  height: 26px;
  width: auto;
  display:block;
  opacity: .95;
}

/* desktop links */
.ch-nav-links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.ch-nav-link{
  color: var(--ch-text);
  text-decoration:none;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(18,18,22,.35);
}
.ch-nav-link[aria-current="page"]{
  border-color: rgba(212,175,55,.55);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.20);
}

/* burger */
.ch-nav-burger{
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.40);
  background: rgba(212,175,55,.10);
  display:none;
  align-items:center;
  justify-content:center;
  gap: 5px;
}
.ch-nav-burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(212,175,55,.92);
  border-radius: 2px;
}

/* mobile drawer */
.ch-mobile{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px 14px 12px;
}
.ch-mobile-link{
  display:block;
  color: var(--ch-text);
  text-decoration:none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(18,18,22,.35);
  margin-top: 10px;
}

/* responsive behavior */
@media (max-width: 920px){
  .ch-nav-links{ display:none; }
  .ch-nav-burger{ display:flex; }
}

/* FOOTER */
.ch-footer{
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 26px auto 22px auto;
}
.ch-footer-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--ch-bg);
  border: 1px solid var(--ch-border);
  border-radius: 22px;
  box-shadow: var(--ch-shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  position: relative;
  overflow: hidden;
}
.ch-footer-bar::after{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.35), transparent);
  pointer-events:none;
}
.ch-footer-logo{ height: 24px; width:auto; display:block; opacity:.92; }
.ch-footer-links{ display:flex; gap: 12px; flex-wrap: wrap; }
.ch-footer-links a{ color: var(--ch-muted); text-decoration:none; font-size: 13px; }
.ch-footer-copy{ color: var(--ch-muted); font-size: 13px; }
