/* VoltNova cookie banner — compact corner card */
#vn-cookie-banner[hidden]{display:none!important}

#vn-cookie-banner{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:2147482000;
  width:min(360px,calc(100vw - 32px));
  box-sizing:border-box;
  font-family:inherit;
  pointer-events:none;
}

#vn-cookie-banner .vn-cookie-card{
  box-sizing:border-box;
  width:100%;
  margin:0;
  padding:12px 14px;
  background:#17212b;
  color:#f5f7fa;
  border:1px solid rgba(32,201,195,.28);
  border-radius:12px;
  box-shadow:0 10px 32px rgba(0,0,0,.34);
  display:block;
  pointer-events:auto;
}

#vn-cookie-banner .vn-cookie-text{
  margin:0;
  font-size:13px;
  line-height:1.38;
  color:#d8e0e6;
}

#vn-cookie-banner .vn-cookie-text a{
  color:#9ce8e4;
  text-decoration:none;
  white-space:nowrap;
}

#vn-cookie-banner .vn-cookie-text a:hover,
#vn-cookie-banner .vn-cookie-text a:focus-visible{
  text-decoration:underline;
}

#vn-cookie-banner .vn-cookie-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
}

#vn-cookie-banner button{
  min-height:38px;
  border-radius:8px;
  padding:8px 12px;
  font:inherit;
  font-size:12px;
  font-weight:800;
  line-height:1.15;
  cursor:pointer;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,transform .18s ease;
}

#vn-cookie-banner button:active{transform:translateY(1px)}

#vn-cookie-accept{
  border:1px solid #20c9c3;
  background:#20c9c3;
  color:#0d171b;
}

#vn-cookie-accept:hover,
#vn-cookie-accept:focus-visible{
  background:#35d5cf;
  border-color:#35d5cf;
}

#vn-cookie-essential{
  border:1px solid rgba(255,255,255,.20);
  background:transparent;
  color:#f5f7fa;
}

#vn-cookie-essential:hover,
#vn-cookie-essential:focus-visible{
  border-color:rgba(32,201,195,.60);
  background:rgba(32,201,195,.08);
}

@media(max-width:700px){
  #vn-cookie-banner{
    left:8px;
    right:8px;
    bottom:calc(8px + env(safe-area-inset-bottom,0px));
    width:auto;
  }

  #vn-cookie-banner .vn-cookie-card{
    padding:10px 11px;
    border-radius:10px;
  }

  #vn-cookie-banner .vn-cookie-text{
    font-size:12px;
    line-height:1.32;
  }

  #vn-cookie-banner .vn-cookie-actions{
    gap:7px;
    margin-top:8px;
  }

  #vn-cookie-banner button{
    flex:1 1 0;
    min-height:36px;
    padding:7px 8px;
    font-size:11px;
  }
}

@media(max-width:360px){
  #vn-cookie-banner .vn-cookie-actions{flex-wrap:wrap}
  #vn-cookie-banner button{flex:1 1 100%}
}
