/* Inline Key Bypasser tool */
.bypasser-tool {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f0f23 100%);
  color: #fff;
  padding: 48px 20px 56px;
  margin: 32px 0 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.bypasser-tool::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(88, 101, 242, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(105, 219, 124, 0.10) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.bypasser-tool__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.bypasser-tool__form,
.bypasser-tool__input,
.bypasser-tool__btn,
.bypasser-tool__copy {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.bypasser-tool__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(105, 219, 124, 0.15);
  border: 1px solid rgba(105, 219, 124, 0.35);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #69db7c;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.bypasser-tool__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #fff;
}

.bypasser-tool__sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
}

.bypasser-tool__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* common.css hides all <input> at >=1024px via a global selector. Force ours back. */
input.bypasser-tool__input,
.bypasser-tool .bypasser-tool__input {
  display: block;
}

.bypasser-tool__input {
  flex: 1 1 320px;
  min-width: 0;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

.bypasser-tool__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.bypasser-tool__input:focus {
  border-color: #69db7c;
  background: rgba(255, 255, 255, 0.09);
}

.bypasser-tool__btn {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #0f0f23;
  background: #69db7c;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter .15s ease, transform .05s ease;
}

.bypasser-tool__btn:hover:not(:disabled) {
  filter: brightness(1.05);
}

.bypasser-tool__btn:active:not(:disabled) {
  transform: translateY(1px);
}

.bypasser-tool__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bypasser-tool__btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(15, 15, 35, 0.25);
  border-top-color: #0f0f23;
  border-radius: 50%;
  animation: bypasser-spin 0.7s linear infinite;
}

@keyframes bypasser-spin {
  to { transform: rotate(360deg); }
}

.bypasser-tool__status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: left;
}

.bypasser-tool__status[data-kind="loading"] {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
}

.bypasser-tool__status[data-kind="error"] {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.bypasser-tool__status[data-kind="success"] {
  background: rgba(105, 219, 124, 0.12);
  color: #b6f0c4;
  border: 1px solid rgba(105, 219, 124, 0.3);
}

.bypasser-tool [hidden] { display: none !important; }

.bypasser-tool__result {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(105, 219, 124, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(105, 219, 124, 0.35);
  border-radius: 12px;
  padding: 16px 16px 14px;
  text-align: left;
  animation: bypasser-pop .25s ease-out;
}

@keyframes bypasser-pop {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bypasser-tool__result-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bypasser-tool__result-check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #69db7c;
  color: #0f0f23;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bypasser-tool__result-check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.bypasser-tool__result-label {
  font-size: 12px;
  color: #69db7c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.bypasser-tool__result-value-wrap {
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 10px 12px;
  max-height: 96px;
  overflow: auto;
}

.bypasser-tool__result-value {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.5;
  color: #e7ffe9;
  word-break: break-all;
  background: transparent;
  user-select: all;
}

.bypasser-tool__result-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bypasser-tool__result-open,
.bypasser-tool__copy {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, filter .15s ease, transform .05s ease;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
}

.bypasser-tool__result-open {
  color: #0f0f23;
  background: #69db7c;
  border-color: rgba(0, 0, 0, 0.15);
}

.bypasser-tool__result-open:hover { filter: brightness(1.05); }
.bypasser-tool__result-open:active { transform: translateY(1px); }

.bypasser-tool__copy {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.bypasser-tool__copy:hover { background: rgba(255, 255, 255, 0.14); }
.bypasser-tool__copy.is-copied {
  color: #69db7c;
  border-color: rgba(105, 219, 124, 0.5);
  background: rgba(105, 219, 124, 0.12);
}

.bypasser-tool__result-actions svg {
  width: 14px;
  height: 14px;
  display: block;
}

.bypasser-tool__hint {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Supported executors / key systems — light card to blend with the article */
.supported-tools {
  margin: 56px 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.supported-tools__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 4px;
}

.supported-tools__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: inherit;
}

.supported-tools__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
  margin: 0 0 28px;
}

.supported-tools__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.supported-tools__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  text-align: left;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.supported-tools__item:hover {
  border-color: rgba(34, 167, 78, 0.35);
}

.supported-tools__check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 167, 78, 0.12);
  color: #22a74e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.supported-tools__check svg {
  width: 14px;
  height: 14px;
  display: block;
}

.supported-tools__name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
}

@media (max-width: 480px) {
  .supported-tools { margin: 40px 0; }
  .supported-tools__heading { font-size: 22px; }
  .supported-tools__sub { margin-bottom: 22px; }
  .supported-tools__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .supported-tools__item { padding: 14px 14px; gap: 10px; }
  .supported-tools__check { width: 24px; height: 24px; }
}

/* Why Players Use This Tool — benefit grid */
.why-tool {
  margin: 56px 0;
  padding: 0;
}

.why-tool__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 4px;
}

.why-tool__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: inherit;
}

.why-tool__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
  margin: 0 0 28px;
}

.why-tool__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.why-tool__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.why-tool__item:hover {
  border-color: rgba(105, 137, 242, 0.35);
}

.why-tool__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(105, 219, 124, 0.18) 0%, rgba(88, 101, 242, 0.18) 100%);
  color: #22a74e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-tool__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.why-tool__name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .why-tool { margin: 40px 0; }
  .why-tool__heading { font-size: 22px; }
  .why-tool__sub { margin-bottom: 22px; }
  .why-tool__grid { grid-template-columns: 1fr; gap: 12px; }
  .why-tool__item { padding: 14px 14px; }
}

.script__about__screenshot {
  display: block;
  margin: 22px auto;
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
  .bypasser-tool { padding: 36px 16px 44px; }
  .bypasser-tool__heading { font-size: 22px; }
  .bypasser-tool__sub { font-size: 14px; }
  .bypasser-tool__btn { width: 100%; justify-content: center; }
  .bypasser-tool__input { flex-basis: 100%; }
}

/* ==========================================================================
   Unified article polish (this page only — bypasser.css is page-scoped)
   Aligns the legacy blog.css article sections with the new tool sections so
   widths, headings, paragraphs, and lists feel like one coherent page.
   ========================================================================== */

/* Same content rail across every article section */
.script__about,
.usage,
.faqs,
.supported-tools__container,
.why-tool__container {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
@media screen and (min-width: 1024px) {
  .script__about,
  .usage,
  .faqs,
  .supported-tools__container,
  .why-tool__container { max-width: 760px; }
}
@media screen and (min-width: 1200px) {
  .script__about,
  .usage,
  .faqs,
  .supported-tools__container,
  .why-tool__container { max-width: 820px; }
}

/* Modernize the gradient-text headings to a clean dark heading. */
.usage__heading,
.faqs__heading {
  background-image: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #1a1a2e;
  font-size: 26px;
  line-height: 1.3;
  margin: 0 0 14px;
}
@media screen and (min-width: 1200px) {
  .usage__heading,
  .faqs__heading { font-size: 30px; }
}

/* Body paragraphs: a touch larger and with comfortable rhythm. */
main .text,
main .script__about__list__item,
main .faqs__list__item > p {
  color: #2d3748;
  font-size: 15.5px;
  line-height: 1.7;
}
@media screen and (min-width: 1200px) {
  main .text,
  main .script__about__list__item,
  main .faqs__list__item > p { font-size: 17px; line-height: 1.75; }
}

/* Section vertical rhythm */
main > .script__about,
main > .usage,
main > .faqs,
main > .supported-tools,
main > .why-tool {
  margin-top: 48px;
  margin-bottom: 48px;
}
main > .bypasser-tool { margin-bottom: 40px; }

/* About bullets refresh */
.script__about__list { gap: 14px; }
.script__about__list__item {
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.script__about__list__item > img { padding-top: 6px; }
.script__about__list__item p { margin: 0; }

/* Numbered step cards (.usage > .script__info__list) */
.script__info__list { gap: 14px !important; }
.script__info__list__item {
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid #69db7c;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15.5px;
  line-height: 1.65;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.script__info__list__item:hover {
  border-left-color: #22a74e;
}
.script__info__list__item p { margin: 0; }
/* Replace the inline circled <b>1</b>. with a proper number badge */
.script__info__list__item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #69db7c 0%, #22a74e 100%);
  color: #0f0f23;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  margin-right: 8px;
  vertical-align: -6px;
}
/* The trailing ". " after <b>N</b> becomes redundant after the badge — hide it */
.script__info__list__item b + ::before { content: ''; }

/* Center any inline screenshot images inside the step cards */
.script__info__list__item .script__about__screenshot {
  margin-top: 14px;
}

/* FAQ cards */
.faqs__list { gap: 12px !important; }
.faqs__list__item {
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0;
  gap: 8px !important;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.faqs__list__item:hover {
  border-color: rgba(105, 219, 124, 0.35);
}
.faqs__list__item h3 {
  background-image: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #1a1a2e;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}
.faqs__list__item > p { margin: 0; }

/* Tighten supported-tools / why-tool to align with article rail */
.supported-tools,
.why-tool { padding: 0; }
.supported-tools__container,
.why-tool__container { padding: 0 18px; }
