.yc-header{
  width:100%;
  background:#050505;
  padding:0;
  z-index:50;
}

.yc-header-inner{
  width:min(1280px,94%);
  margin:0 auto;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.yc-logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:-1px;
  color:#fff;
  line-height:1;
}

.yc-logo span{
  color:#F0DF00;
}

.yc-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.yc-nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  opacity:.9;
}

.yc-nav a:hover{
  color:#F0DF00;
}

.yc-header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.yc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.yc-btn-yellow{
  background:#F0DF00;
  color:#000;
}

.yc-btn-outline{
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
}

@media(max-width:900px){
  .yc-nav,
  .yc-header-actions{
    display:none;
  }

  .yc-header-inner{
    height:64px;
  }
}