.tinka-guide {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  justify-content: center;
  margin: 18px auto 22px;
  max-width: 980px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 45, 82, 0.45);
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.32);
}
.tinka-guide[data-theme="soft"]{
  background: rgba(246, 248, 246, 0.70);
  border: 2px solid rgba(32, 50, 61, 0.92);
}
.tinka-sprite {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: pointer;
  filter:
    drop-shadow(0 12px 22px rgba(0,0,0,0.38))
    drop-shadow(0 0 12px rgba(125, 211, 252, 0.18));
  transition: transform 0.12s ease-out, filter 0.12s ease-out;
}
.tinka-sprite:hover{
  transform: translateY(-2px) scale(1.04);
  filter:
    drop-shadow(0 14px 26px rgba(0,0,0,0.45))
    drop-shadow(0 0 18px rgba(125, 211, 252, 0.28));
}
.tinka-bubble {
  position: relative;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(3, 10, 20, 0.55);
  border: 1px solid rgba(125, 211, 252, 0.20);
  color: #e2e8f0;
  font-family: inherit;
  line-height: 1.55;
  max-width: 780px;
}
.tinka-guide[data-theme="soft"] .tinka-bubble{
  background: rgba(246, 248, 246, 0.92);
  border: 2px solid rgba(32, 50, 61, 0.92);
  color: #20323d;
}
.tinka-bubble::before{
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(3, 10, 20, 0.55);
}
.tinka-guide[data-theme="soft"] .tinka-bubble::before{
  border-right-color: rgba(246, 248, 246, 0.92);
}
.tinka-bubble strong{
  color: #7dd3fc;
}
.tinka-guide[data-theme="soft"] .tinka-bubble strong{
  color: #2f5564;
}
.tinka-title{
  font-size: 14px;
  margin: 0 0 6px;
  font-weight: 700;
}
.tinka-text{
  margin: 0;
  font-size: 13px;
  color: inherit;
  opacity: 0.95;
}

@keyframes tinka-shake {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4px, 1px); }
  20% { transform: translate(4px, -2px); }
  30% { transform: translate(-3px, 2px); }
  40% { transform: translate(3px, 0px); }
  50% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  70% { transform: translate(-2px, 1px); }
  80% { transform: translate(2px, -1px); }
  90% { transform: translate(-1px, 0px); }
}
.tinka-guide.tinka-smack .tinka-bubble{
  animation: tinka-shake 0.45s ease-out;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18), 0 18px 32px rgba(0,0,0,0.38);
}
.tinka-guide.tinka-smack .tinka-text{
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media (max-width: 640px){
  .tinka-guide{ flex-direction: column; align-items: center; text-align: center; }
  .tinka-bubble{ text-align: left; }
  .tinka-bubble::before{ display:none; }
}

