
/* site header */
.site-header{
  background:linear-gradient(135deg,#0756A0 0%,#2d2d5e 100%);
  padding:0 1.5rem;
  position:sticky;top:0;z-index:500;
  box-shadow:0 4px 20px rgba(0,0,0,.35);
  width:100%;
  margin-bottom: 40px;
}
.site-header-inner{
  max-width:900px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.site-back-btn{
  color:white;text-decoration:none;
  display:flex;align-items:center;gap:8px;
  font-weight:700;font-size:1rem;
  padding:8px 16px;
  background:rgba(255,255,255,.1);
  border-radius:20px;transition:.25s;
  font-family:'Baloo Bhaijaan 2',cursive;
}
.site-back-btn:hover{background:rgba(255,255,255,.2);}
.site-logo{
  display:flex;align-items:center;gap:10px;text-decoration:none;
}
.site-logo-icon{
  width:40px;height:40px;
  background:linear-gradient(135deg,#FF6B35,#FFD23F);
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
}
.site-logo-text{
  font-family:'Baloo Bhaijaan 2',cursive;
  font-size:1.4rem;font-weight:800;color:white;
}
.site-logo-text span{color:#FFD23F;}
.site-game-title{
  color:white;font-weight:800;font-size:1.1rem;
  font-family:'Baloo Bhaijaan 2',cursive;
}
@media(max-width:480px){
  .site-game-title{display:none;}
  .site-logo-text{font-size:1rem;}
}