:root {
  --jr-bg: #fffafa;
  --jr-bg-soft: #fff4f2;
  --jr-bg-warm: #fffbf8;
  --jr-surface: #ffffff;
  --jr-surface-muted: #fff7f5;
  --jr-ink: #3b2024;
  --jr-heading: #241014;
  --jr-muted: #705257;
  --jr-red: #d20d24;
  --jr-red-2: #c5162e;
  --jr-red-deep: #561019;
  --jr-red-dark: #8d0716;
  --jr-red-soft: #fff0f1;
  --jr-cream: #fff8f3;
  --jr-border: #f0c9c7;
  --jr-border-strong: #e7a9a8;
  --jr-shadow: 0 18px 42px rgba(86, 16, 25, 0.08);
  --jr-shadow-soft: 0 10px 24px rgba(86, 16, 25, 0.06);
  --jr-radius: 12px;
  --jr-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--jr-bg-warm);
  color: var(--jr-ink);
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar .jr-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: currentColor;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text,
.jr-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jr-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--jr-red-deep);
  color: #fff;
  font-weight: 800;
}

.jr-header {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 78px;
  border-top: 5px solid var(--jr-red);
  border-bottom: 1px solid rgba(240, 201, 199, 0.95);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.jr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 73px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 0 28px;
}

.jr-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--jr-heading);
  font-weight: 900;
}

.jr-brand__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--jr-red), var(--jr-red-dark));
  color: #fff;
  box-shadow: 0 10px 20px rgba(210, 13, 36, 0.14);
  font-size: 13px;
  letter-spacing: 0;
}

.jr-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-brand__name {
  overflow: hidden;
  max-width: 190px;
  font-size: 19px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jr-nav__list,
.jr-mobile-nav__list,
.jr-footer__links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.jr-nav__list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.jr-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 8px;
  color: #4b2a2f;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.jr-nav a:hover,
.jr-nav .current-menu-item > a {
  background: var(--jr-red-soft);
  color: var(--jr-red);
}

.jr-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.jr-lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--jr-border-strong);
  border-radius: 999px;
  background: #fff;
}

.jr-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  color: var(--jr-red-dark);
  font-size: 12px;
  font-weight: 900;
}

.jr-lang a.is-active {
  background: var(--jr-red-soft);
}

.jr-button,
.jr-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jr-red);
  border-radius: 10px;
  background: var(--jr-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(210, 13, 36, 0.16);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.jr-button:hover,
.jr-hero-button:hover {
  transform: translateY(-1px);
  background: var(--jr-red-2);
  border-color: var(--jr-red-2);
  box-shadow: 0 14px 28px rgba(210, 13, 36, 0.2);
}

.jr-button:focus-visible,
.jr-hero-button:focus-visible,
.jr-menu-toggle:focus-visible,
.jr-nav a:focus-visible,
.jr-mobile-nav a:focus-visible {
  outline: 3px solid rgba(210, 13, 36, 0.24);
  outline-offset: 3px;
}

.jr-button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.jr-button--small {
  min-height: 42px;
  padding: 0 16px;
  border-color: #efb3b5;
  border-radius: 10px;
  background: #fff8f8;
  color: var(--jr-red-dark);
  box-shadow: none;
  font-size: 13px;
  white-space: nowrap;
}

.jr-button--small:hover {
  background: #fff0f1;
  color: var(--jr-red);
}

.jr-button--disabled,
.jr-button--disabled:hover {
  cursor: not-allowed;
  transform: none;
  border-color: #efb3b5;
  background: #fff8f8;
  color: var(--jr-red-dark);
  box-shadow: none;
}

.jr-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--jr-border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--jr-heading);
  cursor: pointer;
}

.jr-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.jr-mobile-nav {
  border-top: 1px solid var(--jr-border);
  background: #fff;
  box-shadow: var(--jr-shadow);
}

.jr-mobile-nav .jr-nav__list,
.jr-mobile-nav__list {
  display: grid;
  gap: 4px;
  padding: 12px 16px 16px;
}

.jr-mobile-nav a {
  display: flex;
  padding: 12px;
  border-radius: 8px;
  color: #4b2a2f;
  font-weight: 800;
}

.jr-mobile-nav a:hover {
  background: var(--jr-red-soft);
  color: var(--jr-red);
}

.jr-main {
  min-height: 60vh;
}

.jr-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--jr-border);
  background:
    linear-gradient(180deg, #fff 0%, #fff 64%, #fff7f5 100%),
    url("../images/jungle-red-card-suit-texture.png") center top / 760px auto repeat;
}

.jr-hero::before {
  position: absolute;
  inset: 78px 0 auto;
  height: 1px;
  background: rgba(210, 13, 36, 0.12);
  content: "";
}

.jr-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 20px;
  min-height: 690px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 126px 28px 74px;
}

.jr-hero__media {
  position: absolute;
  z-index: 0;
  top: 118px;
  right: max(28px, calc((100vw - var(--jr-max)) / 2));
  width: min(39vw, 500px);
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(141, 7, 22, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(86, 16, 25, 0.02), rgba(86, 16, 25, 0.06)),
    url("../images/jungle-red-hero-rummy-app-visual-v3b.png") center / cover no-repeat;
  box-shadow: 0 24px 48px rgba(86, 16, 25, 0.16);
}

.jr-hero__media::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 7px;
  background: rgba(141, 7, 22, 0.88);
  color: #fff7f5;
  content: "Rummy app cues with restrained game accents";
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.jr-hero__copy {
  position: relative;
  max-width: 650px;
  padding: 42px 34px 30px;
  border: 1px solid var(--jr-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(86, 16, 25, 0.08);
}

.jr-hero__copy::before {
  display: block;
  width: 58px;
  height: 8px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: var(--jr-red);
  content: "";
}

.jr-hero__copy::after {
  position: absolute;
  top: 28px;
  right: 54px;
  color: rgba(210, 13, 36, 0.3);
  content: "A K\A ♥";
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  white-space: pre;
}

.jr-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--jr-heading);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.jr-hero__copy > p {
  max-width: 610px;
  margin: 14px 0 0;
  color: #54393e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.jr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.jr-hero-button {
  min-height: 70px;
  padding: 0 28px;
  gap: 13px;
  border-radius: 9px;
}

.jr-hero-button.jr-button--disabled,
.jr-hero-button.jr-button--disabled:hover {
  cursor: not-allowed;
  transform: none;
  border-color: var(--jr-red);
  background: var(--jr-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(210, 13, 36, 0.16);
}

.jr-hero-button__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.jr-hero-button__icon svg {
  width: 100%;
  height: 100%;
}

.jr-hero-button strong,
.jr-hero-button small {
  display: block;
  text-align: left;
}

.jr-hero-button strong {
  font-size: 21px;
  line-height: 1.1;
}

.jr-hero-button small {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.9;
}

.jr-hero__note {
  max-width: 560px;
  margin-top: 20px;
  color: #5c4247;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.jr-trust {
  border-top: 1px solid var(--jr-border);
  border-bottom: 1px solid var(--jr-border);
  background: #fff;
}

.jr-trust__inner,
.jr-stats__inner {
  display: grid;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 20px 28px;
  gap: 16px;
}

.jr-trust__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jr-trust__cell {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: var(--jr-surface);
}

.jr-trust__cell::before,
.jr-stat::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--jr-red);
  content: "";
}

.jr-trust__cell::after {
  position: absolute;
  top: 15px;
  right: 18px;
  color: rgba(210, 13, 36, 0.11);
  content: "A";
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.jr-trust__cell:nth-child(2)::after {
  content: "K";
}

.jr-trust__cell:nth-child(3)::after {
  content: "Q";
}

.jr-trust__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--jr-red-soft);
  color: var(--jr-red);
}

.jr-trust__icon svg {
  width: 22px;
  height: 22px;
}

.jr-trust__cell strong {
  display: block;
  color: var(--jr-heading);
  font-size: 16px;
  font-weight: 900;
}

.jr-trust__cell p {
  margin: 4px 0 0;
  color: var(--jr-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.jr-stats {
  border-bottom: 1px solid var(--jr-border);
  background: #fffaf8;
}

.jr-stats__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jr-stat {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 20px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  text-align: center;
}

.jr-stat::after {
  position: absolute;
  top: 14px;
  right: 28px;
  color: rgba(210, 13, 36, 0.16);
  content: "J";
  font-size: 22px;
  font-weight: 900;
}

.jr-stat strong {
  display: block;
  color: var(--jr-red-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.jr-stat span {
  display: block;
  margin-top: 7px;
  color: var(--jr-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jr-section {
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 68px 28px;
}

.jr-section__heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.jr-section__heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.jr-section h2,
.jr-page-hero h1,
.jr-card h3,
.jr-step h3,
.jr-brand-panel h2,
.jr-news-detail h1 {
  margin: 0;
  color: var(--jr-heading);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.jr-section h2 {
  font-size: 36px;
}

.jr-section__heading p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 650;
}

.jr-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

.jr-step {
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow-soft);
}

.jr-step__label,
.jr-kicker,
.jr-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: var(--jr-red);
  background: var(--jr-red-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-step__label {
  min-height: 28px;
  padding: 0 12px;
}

.jr-step h3 {
  margin-top: 16px;
  font-size: 24px;
}

.jr-step p {
  margin: 9px 0 0;
  color: var(--jr-muted);
  font-weight: 650;
  line-height: 1.65;
}

.jr-step__arrow {
  display: grid;
  place-items: center;
  color: var(--jr-red);
  opacity: 0.58;
}

.jr-step__arrow svg {
  width: 46px;
  height: 46px;
}

.jr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.jr-card {
  overflow: hidden;
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jr-card:hover {
  border-color: var(--jr-border-strong);
  box-shadow: 0 14px 30px rgba(86, 16, 25, 0.1);
  transform: translateY(-2px);
}

.jr-card__media {
  display: block;
  height: 184px;
  margin: -20px -20px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 24%, rgba(210, 13, 36, 0.13), transparent 34%),
    linear-gradient(135deg, #fff0f1, #fffaf8);
}

.jr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.jr-card:hover .jr-card__media img {
  transform: scale(1.03);
}

.jr-card__media--placeholder {
  position: relative;
}

.jr-card__media--placeholder::after {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 76px;
  height: 104px;
  border: 1px solid #efb3b5;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 30%, var(--jr-red) 0 8px, transparent 9px),
    linear-gradient(145deg, #fff, #fff0f1);
  box-shadow: -38px 14px 0 -12px rgba(255, 255, 255, 0.82), -70px 24px 0 -18px rgba(255, 240, 241, 0.95);
  content: "";
  transform: rotate(6deg);
}

.jr-card__tag,
.jr-kicker {
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 10px;
}

.jr-card h3 {
  margin-top: 0;
  font-size: 21px;
}

.jr-card h3 a:hover {
  color: var(--jr-red);
}

.jr-card p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.7;
}

.jr-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--jr-red);
  font-size: 13px;
  font-weight: 850;
}

.jr-card__link::after {
  margin-left: 7px;
  content: "->";
}

.jr-faq {
  max-width: 980px;
}

.jr-faq__list {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow-soft);
}

.jr-faq details {
  padding: 20px 24px;
  border-bottom: 1px solid var(--jr-border);
}

.jr-faq details:last-child {
  border-bottom: 0;
}

.jr-faq summary {
  cursor: pointer;
  color: var(--jr-heading);
  font-size: 17px;
  font-weight: 850;
}

.jr-faq summary::marker {
  color: var(--jr-red);
}

.jr-faq p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.75;
}

.jr-brand-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background:
    linear-gradient(135deg, #fff, #fff4f2);
  box-shadow: var(--jr-shadow-soft);
}

.jr-brand-panel h2 {
  max-width: 760px;
  font-size: 34px;
}

.jr-brand-panel p {
  max-width: 860px;
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.7;
}

.jr-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(86, 16, 25, 0.96), rgba(31, 6, 10, 0.98)),
    url("../images/jungle-red-card-suit-texture.png") center / 860px auto repeat;
  color: #fff4f2;
}

.jr-footer .jr-brand {
  color: #fff;
}

.jr-footer .jr-brand__mark {
  border-color: rgba(255, 255, 255, 0.22);
}

.jr-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr;
  gap: 52px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 52px 28px;
}

.jr-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.jr-footer p,
.jr-footer a {
  color: rgba(255, 244, 242, 0.86);
  font-weight: 700;
}

.jr-footer p {
  max-width: 470px;
  margin: 18px 0 0;
  line-height: 1.75;
}

.jr-footer__links {
  display: grid;
  gap: 9px;
}

.jr-footer a:hover {
  color: #fff;
}

.jr-footer__email {
  display: inline-flex;
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.jr-footer__legal {
  padding: 24px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.jr-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.jr-compliance__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 244, 242, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff4f2;
  font-size: 13px;
  font-weight: 900;
}

.jr-compliance__badge--age {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(210, 13, 36, 0.3);
  color: #fff;
}

.jr-footer__legal p {
  max-width: 900px;
  margin: 8px auto 0;
  color: rgba(255, 244, 242, 0.86);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.jr-page-hero {
  padding: 144px 28px 62px;
  border-bottom: 1px solid var(--jr-border);
  background:
    linear-gradient(180deg, #fff 0%, #fff8f5 100%);
}

.jr-page-hero__inner,
.jr-article,
.jr-news-detail {
  max-width: 860px;
  margin: 0 auto;
}

.jr-page-hero h1 {
  font-size: 46px;
}

.jr-page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--jr-muted);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.7;
}

.jr-article {
  padding: 56px 28px;
  color: #452a2f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.jr-article > *:first-child,
.jr-news-body > *:first-child {
  margin-top: 0;
}

.jr-article p,
.jr-news-body p {
  margin: 0 0 20px;
}

.jr-article h2,
.jr-article h3,
.jr-article h4,
.jr-news-body h2,
.jr-news-body h3,
.jr-news-body h4 {
  margin: 34px 0 12px;
  color: var(--jr-heading);
  line-height: 1.24;
}

.jr-article h2,
.jr-news-body h2 {
  font-size: 30px;
}

.jr-article h3,
.jr-news-body h3 {
  font-size: 24px;
}

.jr-article a,
.jr-news-body a {
  color: var(--jr-red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.jr-article ul,
.jr-article ol,
.jr-news-body ul,
.jr-news-body ol {
  padding-left: 24px;
  margin: 0 0 22px;
}

.jr-article li,
.jr-news-body li {
  margin-bottom: 8px;
}

.jr-article blockquote,
.jr-news-body blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--jr-red);
  border-radius: 0 10px 10px 0;
  background: var(--jr-red-soft);
  color: #46272c;
  font-weight: 650;
}

.jr-article figure,
.jr-news-body figure {
  margin: 28px 0;
}

.jr-article img,
.jr-news-body img {
  height: auto;
  border-radius: 12px;
}

.jr-article table,
.jr-news-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--jr-border);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
}

.jr-article th,
.jr-news-body th {
  background: var(--jr-red-soft);
  color: var(--jr-heading);
  text-align: left;
}

.jr-article th,
.jr-article td,
.jr-news-body th,
.jr-news-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--jr-border);
  vertical-align: top;
}

.jr-news-detail {
  padding: 122px 24px 66px;
}

.jr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--jr-muted);
  font-size: 13px;
  font-weight: 800;
}

.jr-breadcrumb a:hover {
  color: var(--jr-red);
}

.jr-news-shell {
  overflow: hidden;
  border: 1px solid var(--jr-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--jr-shadow-soft);
}

.jr-news-media {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--jr-border);
}

.jr-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-news-hero,
.jr-news-body {
  padding: 32px 38px;
}

.jr-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--jr-red-soft);
  color: var(--jr-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-news-detail h1 {
  margin-top: 16px;
  font-size: 42px;
}

.jr-news-lede {
  margin: 14px 0 0;
  color: var(--jr-muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.jr-news-body {
  padding-top: 0;
  color: #452a2f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.wp-block-query {
  margin-top: 28px;
}

.wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.wp-block-post-template > li {
  padding: 20px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow-soft);
}

.wp-block-post-title a {
  color: var(--jr-heading);
}

.wp-block-post-title a:hover {
  color: var(--jr-red);
}

.wp-block-post-excerpt {
  color: var(--jr-muted);
}

.nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--jr-border);
  border-radius: 8px;
  color: var(--jr-muted);
  font-weight: 800;
}

.nav-links .current,
.nav-links a:hover {
  border-color: var(--jr-border-strong);
  color: var(--jr-red);
}

.jr-muted {
  color: var(--jr-muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1000px) {
  .jr-nav {
    display: none;
  }

  .jr-menu-toggle {
    display: block;
  }

  .jr-hero__content {
    grid-template-columns: 1fr;
  }

  .jr-hero__media {
    top: 120px;
    right: 28px;
    left: 28px;
    width: auto;
    height: 220px;
    opacity: 1;
  }

  .jr-hero__copy {
    margin-top: 170px;
  }

  .jr-trust__inner,
  .jr-stats__inner,
  .jr-card-grid,
  .jr-footer__inner,
  .wp-block-post-template {
    grid-template-columns: 1fr;
  }

  .jr-steps {
    grid-template-columns: 1fr;
  }

  .jr-step {
    min-height: auto;
  }

  .jr-step__arrow {
    display: none;
  }

  .jr-brand-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  body.admin-bar .jr-header {
    top: 46px;
  }

  .jr-header {
    height: 72px;
    border-top-width: 4px;
  }

  .jr-header__inner {
    height: 68px;
    padding: 0 14px;
    gap: 8px;
  }

  .jr-brand {
    gap: 8px;
    flex: 1 1 auto;
  }

  .jr-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 12px;
  }

  .jr-brand__name {
    max-width: 150px;
    font-size: 16px;
  }

  .jr-lang {
    display: none;
  }

  .jr-button--small {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .jr-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .jr-hero {
    background: #fff;
  }

  .jr-hero__content {
    min-height: 650px;
    padding: 104px 16px 36px;
  }

  .jr-hero__media {
    top: 104px;
    right: 16px;
    left: 16px;
    height: 150px;
    border-radius: 12px;
    background-position: center;
  }

  .jr-hero__media::after {
    right: auto;
    top: 32px;
    bottom: auto;
    left: 22px;
    min-height: auto;
    padding: 0;
    background: transparent;
    color: #fff;
    content: "Official APK guide";
    font-size: 18px;
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  }

  .jr-hero__copy {
    width: 100%;
    margin-top: 100px;
    padding: 26px 22px 24px;
    border-radius: 14px;
  }

  .jr-hero__copy::before {
    width: 68px;
    height: 7px;
    margin-bottom: 28px;
  }

  .jr-hero__copy::after {
    top: 28px;
    right: 34px;
    content: "A\A♥";
  }

  .jr-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .jr-hero__copy > p {
    font-size: 18px;
    line-height: 1.45;
  }

  .jr-hero-button {
    width: 100%;
    min-height: 66px;
    padding: 0 16px;
  }

  .jr-hero-button strong {
    font-size: 18px;
  }

  .jr-hero-button small {
    font-size: 12px;
  }

  .jr-hero__note {
    font-size: 16px;
  }

  .jr-trust__inner,
  .jr-stats__inner {
    padding: 16px;
  }

  .jr-section {
    padding: 52px 16px;
  }

  .jr-section h2 {
    font-size: 30px;
  }

  .jr-card {
    min-height: auto;
  }

  .jr-faq details {
    padding: 18px;
  }

  .jr-faq summary {
    font-size: 16px;
  }

  .jr-brand-panel {
    padding: 22px;
  }

  .jr-brand-panel h2 {
    font-size: 28px;
  }

  .jr-brand-panel .jr-button {
    width: 100%;
  }

  .jr-footer__inner {
    padding: 42px 18px;
    gap: 30px;
  }

  .jr-footer__legal {
    text-align: left;
  }

  .jr-compliance {
    justify-content: flex-start;
  }

  .jr-page-hero {
    padding: 112px 18px 48px;
  }

  .jr-page-hero h1 {
    font-size: 36px;
  }

  .jr-article,
  .jr-news-detail {
    padding-right: 18px;
    padding-left: 18px;
  }

  .jr-news-detail {
    padding-top: 104px;
  }

  .jr-news-media {
    height: 220px;
  }

  .jr-news-hero,
  .jr-news-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .jr-news-detail h1 {
    font-size: 32px;
  }
}

@media (max-width: 430px) {
  .jr-header__inner {
    padding: 0 10px;
  }

  .jr-brand__name {
    max-width: 122px;
    font-size: 15px;
  }

  .jr-header__actions {
    gap: 6px;
  }

  .jr-button--small {
    max-width: 116px;
    padding: 0 9px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 370px) {
  .jr-brand__name {
    max-width: 112px;
    font-size: 14px;
  }

  .jr-button--small {
    max-width: 108px;
  }
}
