.k88cc {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10070;
  max-width: 420px;
  width: calc(100vw - 40px);
  display: none;
}
.k88cc.is-visible {
  display: block;
}
.k88cc__card {
  position: relative;
  padding: 22px 24px;
  border-radius: 14px;
  border-left: 4px solid var(--mainColor, #e65c3a);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  font-family: var(--fontBody, "Inter", system-ui, sans-serif);
  animation: k88ccIn 320ms cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes k88ccIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.k88cc__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--text-secondary, #8e8e8e);
  cursor: pointer;
}
.k88cc__close:hover,
.k88cc__close:focus-visible {
  color: var(--mainColor, #e65c3a);
  outline: none;
}
.k88cc__badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fbe9e2;
  color: var(--mainColor, #e65c3a);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.k88cc__title {
  margin: 0 0 10px;
  font-family: var(--fontHeading, "Noto Sans JP", system-ui, sans-serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text, #171412);
  padding-right: 20px;
}
.k88cc__desc {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary, #6b655f);
}
.k88cc__links {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary, #6b655f);
}
.k88cc__links a {
  color: var(--mainColor, #e65c3a);
  font-weight: 700;
  text-decoration: none;
}
.k88cc__links a:hover {
  text-decoration: underline;
}
.k88cc__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.k88cc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.k88cc__btn--decline {
  border: 1px solid var(--border, #e0d8cc);
  background: #fff;
  color: var(--text, #171412);
}
.k88cc__btn--decline:hover,
.k88cc__btn--decline:focus-visible {
  border-color: var(--mainColor, #e65c3a);
  color: var(--mainColor, #e65c3a);
  outline: none;
}
.k88cc__btn--accept {
  background: var(--mainColor, #e65c3a);
  color: #fff;
}
.k88cc__btn--accept:hover,
.k88cc__btn--accept:focus-visible {
  opacity: .92;
  outline: none;
}

@media (max-width: 567px) {
  .k88cc {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
  }
  .k88cc__card {
    padding: 20px 18px;
  }
  .k88cc__actions {
    flex-direction: column-reverse;
  }
  .k88cc__btn {
    width: 100%;
  }
}

