.gcard {
  position: relative;
  background: radial-gradient(120% 85% at 50% 22%, #F1FAFB 0%, #FAFCFE 55%, #FFFFFF 100%);
  border: 1px solid #E7EAEE;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ghead {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 0;
  gap: 10px;
}

.gtitle {
  font-size: 26px;
  font-weight: 600;
  color: #0E1320;
  line-height: 1.3;
  max-width: 100%;
}

.gexp {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475467;
  font-size: 16px;
  flex: none;
  cursor: pointer;
}

.gstage {
  position: relative;
  flex: 1;
  min-height: 300px;
  margin-top: 6px;
}

.gglow {
  position: absolute;
  left: 50%;
  top: 68%;
  width: 96%;
  height: 96%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 160, 139, 0.1) 0%, rgba(128, 121, 219, 0.07) 45%, transparent 70%);
  pointer-events: none;
}

.gstage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.gchip {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid #EAECEF;
  border-radius: 12px;
  padding: 7px 11px;
  box-shadow: 0 10px 24px rgba(14, 19, 32, 0.1);
  opacity: 0;
  white-space: nowrap;
  font-size: 12px;
}

.gface {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: #F1F2F4;
}

.gface svg {
  width: 17px;
  height: 17px;
}

.gc-cmt {
  font-size: 12px;
  font-weight: 500;
  color: #1C2230;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes gcyc {
  0% {
    opacity: 0;
    transform: translateY(9px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(9px);
  }
}
