.gbcs-comments,
.gbcs-comments * {
  box-sizing: border-box;
}

.gbcs-comments {
  width: min(100%, 980px);
  margin: 30px auto 0;
  padding: clamp(18px, 3vw, 28px);
  direction: rtl;
  color: #fff;
  border: 1px solid rgba(31, 148, 255, .32);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 87, 24, .13), transparent 32%),
    radial-gradient(circle at top left, rgba(31, 148, 255, .10), transparent 35%),
    linear-gradient(135deg, rgba(16, 7, 5, .96), rgba(4, 3, 3, .98));
  box-shadow:
    0 0 0 1px rgba(31, 148, 255, .08),
    0 0 24px rgba(31, 148, 255, .12),
    0 22px 60px rgba(0, 0, 0, .35);
  font-family: inherit;
}

.gbcs-comments-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.gbcs-comments h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.7;
  font-weight: 900;
}

.gbcs-comments-count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 13px;
  color: #ffe1bf;
  border: 1px solid rgba(255, 106, 0, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  font-weight: 800;
}

.gbcs-comments-count b {
  color: #ff6b2a;
  font-size: 15px;
}

.gbcs-comments-form {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.gbcs-comment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gbcs-comments label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #ffd5b8;
  font-size: 12px;
  font-weight: 800;
}

.gbcs-comments input,
.gbcs-comments textarea {
  width: 100%;
  border: 1px solid rgba(255, 106, 0, .18);
  border-radius: 13px;
  background: rgba(0, 0, 0, .34);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.gbcs-comments input::placeholder,
.gbcs-comments textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.gbcs-comments input:focus,
.gbcs-comments textarea:focus {
  border-color: rgba(255, 106, 0, .78);
  background: rgba(0, 0, 0, .48);
  box-shadow: 0 0 0 3px rgba(255, 73, 24, .15), 0 0 18px rgba(255, 73, 24, .12);
}

.gbcs-hidden-website {
  display: none !important;
}

.gbcs-comment-textarea {
  margin-top: 12px;
}

.gbcs-comments textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.9;
}

.gbcs-comment-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 13px;
}

.gbcs-comment-submit,
.gbcs-comment-cancel-reply,
.gbcs-comment-reply {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.gbcs-comment-submit {
  min-width: 148px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff861f, #ff2a17 58%, #9b1008);
  box-shadow: 0 11px 24px rgba(255, 42, 23, .24), inset 0 1px 0 rgba(255,255,255,.18);
}

.gbcs-comment-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff9b32, #ff351b 58%, #b7160b);
  box-shadow: 0 14px 28px rgba(255, 42, 23, .30), inset 0 1px 0 rgba(255,255,255,.22);
}

.gbcs-comment-status,
.gbcs-logged-in-note {
  color: #ffd4aa;
  font-size: 12px;
  line-height: 1.8;
}

.gbcs-logged-in-note,
.gbcs-comments-closed {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, .22);
  background: rgba(255, 72, 22, .08);
  color: #ffe0c0;
  font-weight: 800;
}

.gbcs-comment-reply-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  color: #ffe0c0;
  border: 1px solid rgba(255, 106, 0, .22);
  border-radius: 14px;
  background: rgba(255, 72, 22, .08);
  font-size: 12px;
  font-weight: 800;
}

.gbcs-comment-reply-note[hidden] {
  display: none !important;
}

.gbcs-comment-cancel-reply {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
}

.gbcs-comments-list-wrap {
  margin-top: 20px;
}

.gbcs-comments-empty {
  padding: 16px;
  border-radius: 16px;
  color: #ffd7bc;
  text-align: center;
  background: rgba(255,255,255,.045);
  border: 1px dashed rgba(255, 106, 0, .24);
}

.gbcs-comments-list {
  display: grid;
  gap: 14px;
}

.gbcs-comment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.gbcs-comment-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #ff9b31, #ff2a17 58%, #330601 100%);
  box-shadow: 0 0 22px rgba(255, 67, 23, .28);
  font-size: 18px;
  font-weight: 900;
}

.gbcs-comment-body {
  min-width: 0;
}

.gbcs-comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-bottom: 7px;
}

.gbcs-comment-meta strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.gbcs-comment-meta time {
  color: rgba(255, 224, 202, .68);
  font-size: 11px;
}

.gbcs-comment-content {
  color: #f4ece6;
  font-size: 13px;
  line-height: 2;
}

.gbcs-comment-reply {
  margin-top: 9px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #ffb06f;
  background: rgba(255, 106, 0, .08);
  font-size: 12px;
  font-weight: 800;
}

.gbcs-comment-reply:hover {
  color: #fff;
  background: rgba(255, 42, 23, .2);
}

.gbcs-comment-children {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-right: 16px;
  border-right: 2px solid rgba(255, 106, 0, .20);
}

.gbcs-comment-children:empty {
  display: none;
}

.gbcs-comment-children .gbcs-comment {
  padding: 12px;
  background: rgba(0, 0, 0, .22);
}

.gbcs-error {
  color: #ffd7bc;
}

@media (max-width: 700px) {
  .gbcs-comments {
    padding: 16px;
    border-radius: 18px;
  }
  .gbcs-comments-head,
  .gbcs-comment-form-foot {
    align-items: stretch;
    flex-direction: column;
  }
  .gbcs-comments-count {
    width: max-content;
  }
  .gbcs-comment-grid {
    grid-template-columns: 1fr;
  }
  .gbcs-comment {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 12px;
  }
  .gbcs-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .gbcs-comment-children {
    padding-right: 10px;
  }
}

/* v1.0.1: Gamebato black/red skin + AJAX form polish */
.gbcs-comments.gbcs-skin-gamebato {
  border-color: rgba(255, 28, 28, .38) !important;
  background:
    linear-gradient(135deg, rgba(255, 0, 0, .10) 0%, rgba(0, 0, 0, 0) 27%),
    radial-gradient(circle at 8% 0%, rgba(255, 0, 0, .22), transparent 31%),
    radial-gradient(circle at 95% 7%, rgba(255, 35, 35, .14), transparent 28%),
    linear-gradient(135deg, #030303 0%, #0b0505 45%, #020202 100%) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .035),
    0 0 26px rgba(255, 0, 0, .14),
    0 22px 62px rgba(0, 0, 0, .55) !important;
}

.gbcs-comments h3 {
  color: #ffffff !important;
  text-shadow: 0 2px 0 rgba(0,0,0,.35), 0 0 18px rgba(255,0,0,.18);
}

.gbcs-comments-count {
  color: #ffffff !important;
  border-color: rgba(255, 42, 23, .46) !important;
  background: linear-gradient(135deg, rgba(255, 42, 23, .20), rgba(0,0,0,.34)) !important;
}

.gbcs-comments-count b {
  color: #ff2a17 !important;
}

.gbcs-comments-form {
  border-color: rgba(255, 42, 23, .18) !important;
  background:
    radial-gradient(circle at 0 0, rgba(255, 42, 23, .10), transparent 30%),
    rgba(255,255,255,.035) !important;
}

.gbcs-comments label {
  color: #ffffff !important;
}

.gbcs-comments input,
.gbcs-comments textarea,
.gbcs-comments input[type="text"],
.gbcs-comments input[type="email"],
.gbcs-comments input[type="url"],
.gbcs-comments textarea[name="comment"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ff2a17 !important;
  border-color: rgba(255, 42, 23, .30) !important;
  background: rgba(0, 0, 0, .55) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.gbcs-comments input:-webkit-autofill,
.gbcs-comments input:-webkit-autofill:hover,
.gbcs-comments input:-webkit-autofill:focus,
.gbcs-comments textarea:-webkit-autofill,
.gbcs-comments textarea:-webkit-autofill:hover,
.gbcs-comments textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0 1000px #080303 inset !important;
  border-color: rgba(255, 42, 23, .54) !important;
  caret-color: #ff2a17 !important;
}

.gbcs-comments input::placeholder,
.gbcs-comments textarea::placeholder {
  color: rgba(255, 255, 255, .48) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .48) !important;
}

.gbcs-comments input:focus,
.gbcs-comments textarea:focus {
  border-color: rgba(255, 42, 23, .86) !important;
  background: rgba(0, 0, 0, .70) !important;
  box-shadow:
    0 0 0 3px rgba(255, 42, 23, .14),
    0 0 20px rgba(255, 0, 0, .18),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.gbcs-comment-submit {
  border: 1px solid rgba(255, 255, 255, .10) !important;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, #050505 0%, #1b0505 34%, #e01111 100%) !important;
  box-shadow:
    0 12px 25px rgba(0,0,0,.36),
    0 0 18px rgba(255, 0, 0, .22),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
}

.gbcs-comment-submit:hover,
.gbcs-comment-submit:focus-visible {
  background:
    linear-gradient(135deg, #090909 0%, #270505 34%, #ff1717 100%) !important;
  box-shadow:
    0 15px 30px rgba(0,0,0,.44),
    0 0 24px rgba(255, 0, 0, .34),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.gbcs-comment-submit:disabled,
.gbcs-comments-form.is-submitting .gbcs-comment-submit {
  cursor: wait !important;
  opacity: .72 !important;
  transform: none !important;
}

.gbcs-comment-status {
  min-height: 22px;
  color: #ffffff !important;
  font-weight: 800;
}

.gbcs-comment-status.is-success {
  color: #ffffff !important;
  padding: 6px 11px;
  border: 1px solid rgba(255, 42, 23, .30);
  border-radius: 999px;
  background: rgba(255, 42, 23, .14);
  box-shadow: 0 0 14px rgba(255,0,0,.12);
}

.gbcs-comment-status.is-error {
  color: #ffd7d7 !important;
}

.gbcs-comment-status.is-loading {
  color: #ffb0a8 !important;
}

.gbcs-comments-empty,
.gbcs-comment,
.gbcs-comment-children .gbcs-comment {
  border-color: rgba(255, 42, 23, .15) !important;
  background: rgba(255, 255, 255, .035) !important;
}

.gbcs-comment-avatar {
  background: radial-gradient(circle at 30% 25%, #ff3b2f, #d60000 58%, #220000 100%) !important;
  box-shadow: 0 0 22px rgba(255, 0, 0, .25) !important;
}

.gbcs-comment-reply,
.gbcs-comment-cancel-reply {
  color: #ffffff !important;
  border: 1px solid rgba(255, 42, 23, .24) !important;
  background: rgba(255, 42, 23, .12) !important;
}

.gbcs-comment-reply:hover,
.gbcs-comment-cancel-reply:hover {
  background: rgba(255, 42, 23, .24) !important;
}

/* v1.0.2: deeper Gamebato black/red skin + fixed field text colors */
.gbcs-comments.gbcs-skin-gamebato {
  color: #ffffff !important;
  border-color: rgba(255, 35, 24, .30) !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 35, 24, .08), transparent 24%),
    radial-gradient(circle at 6% 100%, rgba(255, 35, 24, .055), transparent 30%),
    linear-gradient(135deg, #020202 0%, #070707 48%, #0b0303 78%, #040404 100%) !important;
  box-shadow:
    0 0 0 1px rgba(255, 35, 24, .08),
    0 0 18px rgba(255, 35, 24, .08),
    0 22px 58px rgba(0, 0, 0, .55) !important;
}

.gbcs-comments .gbcs-comments-form,
.gbcs-comments .gbcs-comment,
.gbcs-comments .gbcs-comments-empty {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    #070707 !important;
  border-color: rgba(255, 255, 255, .075) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 12px 28px rgba(0,0,0,.25) !important;
}

.gbcs-comments h3,
.gbcs-comments .gbcs-comment-meta strong {
  color: #ffffff !important;
}

.gbcs-comments label {
  color: rgba(255,255,255,.86) !important;
}

.gbcs-comments input,
.gbcs-comments textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ff2a17 !important;
  background: #050505 !important;
  border-color: rgba(255, 255, 255, .13) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.gbcs-comments input:-webkit-autofill,
.gbcs-comments textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0 1000px #050505 inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

.gbcs-comments input::placeholder,
.gbcs-comments textarea::placeholder {
  color: rgba(255,255,255,.42) !important;
  -webkit-text-fill-color: rgba(255,255,255,.42) !important;
}

.gbcs-comments input:focus,
.gbcs-comments textarea:focus {
  background: #080808 !important;
  border-color: rgba(255, 35, 24, .55) !important;
  box-shadow: 0 0 0 3px rgba(255, 35, 24, .10), 0 0 16px rgba(255, 35, 24, .10) !important;
}

.gbcs-comments-count,
.gbcs-logged-in-note,
.gbcs-comments-closed,
.gbcs-comment-reply-note {
  color: #ffffff !important;
  border-color: rgba(255, 35, 24, .22) !important;
  background: rgba(255, 35, 24, .055) !important;
}

.gbcs-comments-count b {
  color: #ff2a17 !important;
}

.gbcs-comment-submit {
  color: #ffffff !important;
  background: linear-gradient(135deg, #050505 0%, #120303 48%, #b5160c 100%) !important;
  border: 1px solid rgba(255, 35, 24, .45) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.34), 0 0 12px rgba(255, 35, 24, .12), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.gbcs-comment-submit:hover,
.gbcs-comment-submit:focus-visible {
  background: linear-gradient(135deg, #070707 0%, #170403 48%, #e12517 100%) !important;
  border-color: rgba(255, 55, 35, .62) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.42), 0 0 16px rgba(255, 35, 24, .16), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.gbcs-comment-avatar {
  background: radial-gradient(circle at 35% 25%, #ff4a2c 0%, #c31910 44%, #080101 100%) !important;
  box-shadow: 0 0 16px rgba(255, 35, 24, .18) !important;
}

.gbcs-comment-reply,
.gbcs-comment-cancel-reply {
  color: #ffffff !important;
  background: rgba(255, 35, 24, .08) !important;
  border: 1px solid rgba(255, 35, 24, .20) !important;
}

.gbcs-comment-status.is-success {
  color: #ffffff !important;
}

.gbcs-comment-status.is-error {
  color: #ff6b5d !important;
}


/* v1.0.3: remove nested vertical lines + main red shadow only */
.gbcs-comments.gbcs-skin-gamebato {
  border-color: transparent !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 35, 24, .055), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(255, 35, 24, .035), transparent 28%),
    linear-gradient(135deg, #030303 0%, #050505 58%, #090202 100%) !important;
  box-shadow:
    0px 0px 10px 1px rgba(255, 35, 24, .50),
    0 24px 58px rgba(0, 0, 0, .55) !important;
}

.gbcs-comments .gbcs-comment-children,
.gbcs-comments .children,
.gbcs-comments ol.children,
.gbcs-comments ul.children {
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-right: 0 !important;
}

.gbcs-comments .gbcs-comment-children::before,
.gbcs-comments .gbcs-comment-children::after,
.gbcs-comments .children::before,
.gbcs-comments .children::after {
  display: none !important;
  content: none !important;
}

.gbcs-comments .gbcs-comment,
.gbcs-comments .gbcs-comment-children .gbcs-comment,
.gbcs-comments .gbcs-comments-empty {
  border: 0 !important;
  outline: 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012)),
    #070707 !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.gbcs-comments .gbcs-comments-form {
  border-color: rgba(255, 255, 255, .065) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 35, 24, .045), transparent 24%),
    #070707 !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.gbcs-comments .gbcs-comment-avatar {
  background: radial-gradient(circle at 35% 25%, #ff3b24 0%, #b90d08 48%, #070101 100%) !important;
  box-shadow: 0 0 14px rgba(255, 35, 24, .20) !important;
}

.gbcs-comments .gbcs-comment-reply,
.gbcs-comments .gbcs-comment-cancel-reply {
  background: rgba(255, 35, 24, .075) !important;
  border-color: rgba(255, 35, 24, .22) !important;
}

@media (max-width: 700px) {
  .gbcs-comments .gbcs-comment-children {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}


/* v1.0.4: bigger typography + fixed nested replies on mobile */
.gbcs-comments.gbcs-skin-gamebato {
  font-size: 15px !important;
}

.gbcs-comments.gbcs-skin-gamebato h3 {
  font-size: clamp(21px, 2.45vw, 29px) !important;
  line-height: 1.65 !important;
  font-weight: 950 !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comments-count,
.gbcs-comments.gbcs-skin-gamebato label,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-status,
.gbcs-comments.gbcs-skin-gamebato .gbcs-logged-in-note,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comments-closed,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-reply-note {
  font-size: 13px !important;
}

.gbcs-comments.gbcs-skin-gamebato input,
.gbcs-comments.gbcs-skin-gamebato textarea {
  font-size: 15px !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-meta strong {
  font-size: 15.5px !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-meta time {
  font-size: 12.5px !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-content {
  font-size: 14.5px !important;
  line-height: 2.05 !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-reply,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-cancel-reply,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-submit {
  font-size: 13.5px !important;
}

.gbcs-comments.gbcs-skin-gamebato .gbcs-comments-form,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment,
.gbcs-comments.gbcs-skin-gamebato .gbcs-comments-empty {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

@media (max-width: 700px) {
  .gbcs-comments.gbcs-skin-gamebato {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    margin-top: 18px !important;
    border-radius: 18px !important;
    font-size: 14.5px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato h3 {
    font-size: 21px !important;
    line-height: 1.75 !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comments-head {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comments-form {
    padding: 13px !important;
    border-radius: 16px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comments-list {
    gap: 12px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment,
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment,
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment-children .gbcs-comment {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 11px !important;
    border-radius: 16px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-body {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-avatar {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 13px !important;
    font-size: 16px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-meta {
    gap: 5px 9px !important;
    margin-bottom: 6px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-meta strong {
    font-size: 14.5px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-meta time {
    font-size: 11.5px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-content {
    font-size: 14px !important;
    line-height: 2 !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children,
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment-children,
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment-children .gbcs-comment-children {
    display: grid !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 11px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  /* On deeply nested replies, stop the avatar column from squeezing text into a vertical line. */
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment-children .gbcs-comment {
    grid-template-columns: 1fr !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment-children .gbcs-comment .gbcs-comment-avatar {
    display: none !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-reply {
    margin-top: 8px !important;
    padding: 6px 10px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 390px) {
  .gbcs-comments.gbcs-skin-gamebato {
    padding: 12px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment,
  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-children .gbcs-comment {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-avatar {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 15px !important;
  }

  .gbcs-comments.gbcs-skin-gamebato .gbcs-comment-content {
    font-size: 13.5px !important;
  }
}


/* v1.0.5: Elementor skin controls */
.gbcs-elementor-style .gbcs-comments {
  background: var(--gbcs-bg, #050505) !important;
  color: var(--gbcs-text, #fff) !important;
  border-color: var(--gbcs-border, rgba(255,42,23,.25)) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comments-form,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comment,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comment-children .gbcs-comment {
  background: #ffffff !important;
  color: #222 !important;
  border-color: #e6e6e6 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments h3,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-meta strong,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-content,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments label {
  color: #222 !important;
}

.gbcs-elementor-style .gbcs-comments h3 {
  font-size: var(--gbcs-title, 25px) !important;
}

.gbcs-elementor-style .gbcs-comment-submit {
  background: linear-gradient(135deg, var(--gbcs-accent, #ff2a17), #111) !important;
}

.gbcs-elementor-style .gbcs-comments input,
.gbcs-elementor-style .gbcs-comments textarea {
  background: var(--gbcs-card, #0b0b0b) !important;
  color: var(--gbcs-text, #fff) !important;
}


/* v1.0.6: rating stars and white theme customization */
.gbcs-rating-field { margin: 0 0 14px; }
.gbcs-rating-field label { margin-bottom: 8px; }
.gbcs-stars { display:flex; flex-direction:row-reverse; justify-content:flex-start; gap:4px; direction:ltr; }
.gbcs-star { border:0; background:transparent; color:rgba(255,255,255,.28); cursor:pointer; font-size:28px; line-height:1; padding:0; transition:.15s; }
.gbcs-star:hover,
.gbcs-star.is-active { color:#ffd21f; text-shadow:0 0 12px rgba(255,210,31,.35); }

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments h3,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-meta strong,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-content,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments label { color:var(--gbcs-light-text,#222) !important; }
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-submit { background:linear-gradient(135deg,var(--gbcs-light-accent,#e11d22),#111) !important; }
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-reply { color:var(--gbcs-light-accent,#e11d22) !important; }


/* v1.0.7: outlined rating stars, visible aggregate rating and comment ratings */
.gbcs-stars {
  align-items: center;
}

.gbcs-star,
.gbcs-star:hover,
.gbcs-star:focus {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, .92);
  text-shadow: none !important;
  transform: translateY(0);
  outline: none;
}

.gbcs-star.is-active,
.gbcs-star.is-preview {
  color: #ffd21f !important;
  -webkit-text-fill-color: #ffd21f !important;
  -webkit-text-stroke: 1px #ffd21f;
  text-shadow: 0 0 12px rgba(255, 210, 31, .38) !important;
}

.gbcs-star:hover,
.gbcs-star:focus-visible {
  transform: translateY(-1px) scale(1.08);
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-star,
.gbcs-elementor-style.gbcs-skin-light .gbcs-star:hover,
.gbcs-elementor-style.gbcs-skin-light .gbcs-star:focus {
  -webkit-text-stroke-color: rgba(35, 35, 35, .62);
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-star.is-active,
.gbcs-elementor-style.gbcs-skin-light .gbcs-star.is-preview {
  -webkit-text-stroke-color: #e7ad00;
}

.gbcs-rating-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: -2px 0 18px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 31, .12);
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.gbcs-rating-summary strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.gbcs-rating-summary-stars {
  position: relative;
  display: inline-block;
  direction: ltr;
  color: rgba(255, 255, 255, .34);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}

.gbcs-rating-summary-stars::after {
  content: '★★★★★';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--gbcs-rating-fill, 0%);
  overflow: hidden;
  color: #ffd21f;
  text-shadow: 0 0 10px rgba(255, 210, 31, .28);
  white-space: nowrap;
}

.gbcs-comment-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0 8px;
  direction: ltr;
  width: fit-content;
}

.gbcs-comment-rating span {
  color: #ffd21f;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}

.gbcs-comment-rating small {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 800;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-summary {
  color: rgba(34, 34, 34, .70);
  background: rgba(0, 0, 0, .025);
  box-shadow: inset 0 0 0 1px rgba(190, 140, 0, .18);
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-summary strong,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-rating small {
  color: var(--gbcs-light-text, #222) !important;
}

@media (max-width: 600px) {
  .gbcs-rating-summary {
    gap: 7px 10px;
  }
  .gbcs-rating-summary > span:last-child {
    flex-basis: 100%;
  }
}

/* v1.0.8: inline rating row, editable spacing and complete White Light fixes */
.gbcs-rating-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin: var(--gbcs-rating-top, 18px) 0 14px;
}

.gbcs-rating-field .gbcs-rating-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.gbcs-rating-field .gbcs-stars {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  direction: rtl;
  gap: 4px;
}

/* Dark: white outline, selected: yellow fill. */
.gbcs-rating-field .gbcs-star,
.gbcs-rating-field .gbcs-star:hover,
.gbcs-rating-field .gbcs-star:focus {
  -webkit-text-stroke-color: rgba(255, 255, 255, .92);
}

/* White theme needs a visible outline before selection. */
.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-star,
.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-star:hover,
.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-star:focus {
  -webkit-text-stroke-color: #c09500 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-star.is-active,
.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-star.is-preview {
  color: #ffd21f !important;
  -webkit-text-fill-color: #ffd21f !important;
  -webkit-text-stroke-color: #d4a400 !important;
}

/* Complete White Light skin override. Scoped so the dark skin remains untouched. */
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments {
  color: var(--gbcs-light-text, #222) !important;
  background: #fff !important;
  border-color: #ececec !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .025), 0 18px 48px rgba(0, 0, 0, .10) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments h3 {
  color: var(--gbcs-light-text, #222) !important;
  text-shadow: none !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments-count {
  color: #444 !important;
  border-color: color-mix(in srgb, var(--gbcs-light-accent, #e11d22) 24%, #fff) !important;
  background: color-mix(in srgb, var(--gbcs-light-accent, #e11d22) 6%, #fff) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments-count b {
  color: var(--gbcs-light-accent, #e11d22) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comments-form {
  background: #fff !important;
  border-color: #e7e7e7 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments label,
.gbcs-elementor-style.gbcs-skin-light .gbcs-rating-field .gbcs-rating-label {
  color: var(--gbcs-light-text, #222) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input[type="text"],
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input[type="email"],
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input[type="url"],
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea[name="comment"] {
  color: #222 !important;
  -webkit-text-fill-color: #222 !important;
  caret-color: var(--gbcs-light-accent, #e11d22) !important;
  border-color: #d9d9d9 !important;
  background: #fff !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .035) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input::placeholder,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea::placeholder {
  color: #8a8a8a !important;
  -webkit-text-fill-color: #8a8a8a !important;
  opacity: 1 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input:focus,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea:focus {
  color: #222 !important;
  -webkit-text-fill-color: #222 !important;
  border-color: var(--gbcs-light-accent, #e11d22) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gbcs-light-accent, #e11d22) 12%, transparent) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input:-webkit-autofill,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input:-webkit-autofill:hover,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments input:-webkit-autofill:focus,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea:-webkit-autofill,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea:-webkit-autofill:hover,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #222 !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  border-color: #d9d9d9 !important;
  caret-color: var(--gbcs-light-accent, #e11d22) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-logged-in-note,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments-closed,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-reply-note {
  color: #3f3f46 !important;
  border-color: #e5e7eb !important;
  background: #f7f7f8 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-cancel-reply {
  color: #333 !important;
  background: #e9e9eb !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-status,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-meta time {
  color: #666 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-status.is-success {
  color: #16803c !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-status.is-error {
  color: #c81e1e !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comment,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comment-children .gbcs-comment {
  color: #222 !important;
  background: #fff !important;
  border-color: #ededed !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .055) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments .gbcs-comment-children .gbcs-comment {
  background: #fafafa !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-meta strong,
.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-content {
  color: #222 !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comment-reply {
  color: var(--gbcs-light-accent, #e11d22) !important;
  background: color-mix(in srgb, var(--gbcs-light-accent, #e11d22) 8%, #fff) !important;
}

.gbcs-elementor-style.gbcs-skin-light .gbcs-comments-empty {
  color: #444 !important;
  border-color: #e3e3e3 !important;
  background: #f7f7f8 !important;
  box-shadow: none !important;
}

@media (max-width: 600px) {
  .gbcs-rating-field {
    gap: 7px 10px;
  }

  .gbcs-rating-field .gbcs-rating-label {
    font-size: 12.5px;
  }

  .gbcs-rating-field .gbcs-star {
    font-size: 26px;
  }
}
