/* KORA CLEAN UNIFIED NAV */
.kora-clean-nav{
  position:sticky;
  top:0;
  z-index:9999;
  background:#06111c;
  border-bottom:1px solid rgba(255,255,255,.08);
  direction:rtl;
  font-family:Tahoma,Arial,sans-serif;
}
.kora-clean-nav-inner{
  width:min(100% - 28px,1200px);
  margin:auto;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.kora-clean-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  font-size:29px;
  font-weight:900;
  white-space:nowrap;
}
.kora-clean-logo{
  width:46px;
  height:46px;
  border-radius:15px;
  background:#34d399;
  color:#03110d;
  display:grid;
  place-items:center;
  font-size:27px;
  box-shadow:0 12px 30px rgba(52,211,153,.18);
}
.kora-clean-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.kora-clean-links a{
  color:#eefdf6;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.065);
  text-decoration:none;
  padding:10px 15px;
  border-radius:999px;
  font-weight:900;
  font-size:15px;
}
.kora-clean-links a:hover{
  background:rgba(52,211,153,.16);
  border-color:rgba(52,211,153,.35);
}
.kora-clean-links a.active{
  background:#e11d48;
  color:#fff;
  border-color:#e11d48;
}
@media(max-width:760px){
  .kora-clean-nav-inner{
    min-height:auto;
    padding:12px 0;
    display:block;
    text-align:center;
  }
  .kora-clean-brand{
    justify-content:center;
    font-size:25px;
    margin-bottom:10px;
  }
  .kora-clean-logo{
    width:40px;
    height:40px;
    font-size:23px;
  }
  .kora-clean-links{
    justify-content:center;
    gap:6px;
  }
  .kora-clean-links a{
    font-size:13px;
    padding:8px 10px;
  }
}
