#genjiko-guardian-root{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  font-family:"Libre Baskerville", serif;
}

.genjiko-guardian-button{
  width:72px;
  height:72px;
  border-radius:50%;
  border:1px solid rgba(198,167,107,.45);
  background:#111;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  cursor:pointer;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, box-shadow .2s ease;
}

.genjiko-guardian-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.45);
}

.genjiko-guardian-button img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.genjiko-guardian-panel{
  position:absolute;
  right:0;
  bottom:88px;
  width:360px;
  max-width:calc(100vw - 24px);
  background:#111;
  color:#e9e3d6;
  border:1px solid rgba(198,167,107,.25);
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  border-radius:16px;
  overflow:hidden;
  display:none;
}

.genjiko-guardian-panel.open{
  display:block;
}

.genjiko-guardian-header{
  display:flex;
  gap:12px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(198,167,107,.15);
  background:rgba(255,255,255,.02);
}

.genjiko-guardian-header img{
  width:46px;
  height:46px;
  border-radius:50%;
  object-fit:cover;
}

.genjiko-guardian-title{
  font-size:15px;
  color:#e9e3d6;
  margin:0;
}

.genjiko-guardian-subtitle{
  font-size:12px;
  color:#b6ac95;
  margin:3px 0 0;
}

.genjiko-guardian-messages{
  max-height:380px;
  overflow:auto;
  padding:14px;
  background:#0f0f0f;
}

.genjiko-msg{
  margin-bottom:12px;
  padding:12px 13px;
  border-radius:12px;
  line-height:1.55;
  font-size:14px;
}

.genjiko-msg.user{
  background:#1b1b1b;
  color:#f0eadf;
}

.genjiko-msg.guardian{
  background:#151515;
  border:1px solid rgba(198,167,107,.12);
  color:#e9e3d6;
}

.genjiko-system-note{
  margin:10px 14px;
  padding:8px 10px;
  border-left:1px solid rgba(198,167,107,.35);
  color:#b6ac95;
  font-size:12px;
  background:rgba(255,255,255,.02);
}

.genjiko-cta-wrap{
  padding:0 14px 14px;
}

.genjiko-cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-decoration:none;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(198,167,107,.2);
  background:rgba(255,255,255,.03);
  color:#e9e3d6;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.genjiko-cta-card:hover{
  transform:translateY(-1px);
  border-color:rgba(198,167,107,.45);
  background:rgba(255,255,255,.05);
}

.genjiko-cta-label{
  font-size:14px;
  line-height:1.4;
}

.genjiko-cta-arrow{
  color:#c6a76b;
  font-size:16px;
}

.genjiko-guardian-form{
  display:flex;
  gap:8px;
  padding:12px;
  border-top:1px solid rgba(198,167,107,.15);
  background:#111;
}

.genjiko-guardian-input{
  flex:1;
  min-height:44px;
  max-height:110px;
  resize:vertical;
  border-radius:10px;
  border:1px solid rgba(198,167,107,.2);
  background:#171717;
  color:#e9e3d6;
  padding:10px 12px;
  font-family:inherit;
  font-size:14px;
}

.genjiko-guardian-send{
  border:1px solid rgba(198,167,107,.45);
  background:#171717;
  color:#e9e3d6;
  border-radius:10px;
  padding:0 14px;
  cursor:pointer;
  font-family:inherit;
}

.genjiko-guardian-send:hover{
  background:#1d1d1d;
}

@media(max-width:640px){
  #genjiko-guardian-root{
    right:12px;
    bottom:12px;
  }

  .genjiko-guardian-panel{
    width:min(360px, calc(100vw - 24px));
  }

  .genjiko-guardian-button{
    width:64px;
    height:64px;
  }
}
