/* /ludo-king-game-developer — AISHTMLNEWDESIGN-420
   Page-owned styles. EVERY selector is scoped to #page-ludo-king-game-developer or a
   lkgd- prefixed class: this sheet must never style body, a bare
   element, #ais-header or #ais-footer. The document reset
   (html,body{margin:0}) is owned by the shared layout sheet.
   Font is Inter; no body/UI text below 16px.

   VISUAL DIRECTION — "FOUR HOMES"
   The ludo board is four coloured home bases meeting on a cross. That is the whole
   system here: a four-square quadrant rule opens every section, section bands
   alternate parchment / ivory / plum, and every card is cut as an "arrow square" —
   two square corners on one diagonal, two rounded on the other — with a top rail
   that cycles red / green / yellow / blue down the grid. Warm and mass-market,
   never neon; the reader is a business commissioning a build, not a player. */

#page-ludo-king-game-developer{
  --paper:#fff6e9;          /* parchment — the board's ground */
  --paper-2:#fffdf8;        /* ivory card face */
  --ink:#1c1533;            /* deep plum ink */
  --ink-2:#2f2652;
  --body:#3a325c;           /* body copy — well above the slate-grey floor */
  --line:#ead9c0;
  --line-2:#f2e6d4;
  --red:#d94236;
  --green:#12855e;
  --yellow:#e09b06;
  --blue:#2a5fd0;
  --gold:#f2b705;
  font-family:"Inter",system-ui,sans-serif;
  color:var(--body);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}

/* The shared layout sheet does not set a global box model, so the page sets its
   own — scoped, never on the bare universal selector. Without it every
   width:100% + horizontal-padding wrapper overflows a 390px viewport by 48px. */
#page-ludo-king-game-developer,
#page-ludo-king-game-developer *,
#page-ludo-king-game-developer *::before,
#page-ludo-king-game-developer *::after{box-sizing:border-box;}

#page-ludo-king-game-developer .lkgd-wrap{
  width:100%;max-width:1180px;margin:0 auto;padding:0 24px;
}
#page-ludo-king-game-developer .lkgd-wrap--tight{max-width:880px;}

/* ══ the motif — a four-square quadrant rule, one per section ═══════════════ */
#page-ludo-king-game-developer .lkgd-quad{
  display:grid;grid-template-columns:12px 12px;grid-template-rows:12px 12px;
  gap:3px;margin-bottom:20px;
}
#page-ludo-king-game-developer .lkgd-quad i{display:block;border-radius:3px 0 3px 0;}
#page-ludo-king-game-developer .lkgd-quad i:nth-child(1){background:var(--red);}
#page-ludo-king-game-developer .lkgd-quad i:nth-child(2){background:var(--green);}
#page-ludo-king-game-developer .lkgd-quad i:nth-child(3){background:var(--blue);}
#page-ludo-king-game-developer .lkgd-quad i:nth-child(4){background:var(--yellow);}

/* ══ headings ══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-h2{
  margin:0 0 14px;font-size:clamp(28px,3.4vw,40px);line-height:1.16;
  font-weight:900;letter-spacing:-.022em;color:var(--ink);max-width:22ch;
}
#page-ludo-king-game-developer .lkgd-h3{
  margin:0 0 12px;font-size:26px;line-height:1.25;font-weight:800;
  letter-spacing:-.015em;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-h4{
  margin:0 0 10px;font-size:19px;line-height:1.3;font-weight:800;color:var(--ink);
}

/* ══ buttons ═══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-btn{
  display:inline-block;border:0;cursor:pointer;font-family:inherit;
  font-size:17px;font-weight:800;letter-spacing:-.01em;line-height:1;
  padding:18px 30px;border-radius:14px 4px 14px 4px;
  transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-btn--gold{
  background:var(--gold);color:#221a06;box-shadow:0 8px 0 0 #b98905;
}
#page-ludo-king-game-developer .lkgd-btn--gold:hover{background:#ffc61f;}
#page-ludo-king-game-developer .lkgd-btn--ink{
  background:var(--ink);color:#fff;box-shadow:0 8px 0 0 #0d0920;
}
#page-ludo-king-game-developer .lkgd-btn--ink:hover{background:var(--ink-2);}
#page-ludo-king-game-developer .lkgd-btn--red{
  background:var(--red);color:#fff;box-shadow:0 8px 0 0 #96271d;
}
#page-ludo-king-game-developer .lkgd-btn--red:hover{background:#e6503f;}
#page-ludo-king-game-developer .lkgd-btn:hover{transform:translateY(2px);}
#page-ludo-king-game-developer .lkgd-btn:active{transform:translateY(6px);box-shadow:0 2px 0 0 rgba(0,0,0,.35);}
#page-ludo-king-game-developer .lkgd-btn:focus-visible{
  outline:3px solid var(--blue);outline-offset:3px;
}
#page-ludo-king-game-developer .lkgd-textlink{
  font-size:17px;font-weight:700;color:#ffe9ae;
  border-bottom:2px solid rgba(255,233,174,.45);padding-bottom:2px;
  transition:color .16s ease,border-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-textlink:hover{color:#fff;border-color:#fff;}
#page-ludo-king-game-developer .lkgd-inline{
  color:var(--blue);font-weight:700;border-bottom:1px solid rgba(42,95,208,.4);
  transition:color .16s ease,border-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-inline:hover{color:var(--red);border-color:var(--red);}

/* ══ hero — rule 24: full-bleed static gradient, no media, centred column ═══ */
#page-ludo-king-game-developer .lkgd-hero{
  background:
    radial-gradient(120% 100% at 12% 0%,rgba(217,66,54,.30) 0%,rgba(217,66,54,0) 58%),
    radial-gradient(110% 100% at 92% 12%,rgba(42,95,208,.34) 0%,rgba(42,95,208,0) 60%),
    linear-gradient(152deg,#241a44 0%,#1c1533 46%,#150f28 100%);
  padding:96px 0 104px;
}
#page-ludo-king-game-developer .lkgd-hero__in{
  width:100%;max-width:900px;margin:0 auto;padding:0 24px;
  display:flex;flex-direction:column;align-items:flex-start;
}
#page-ludo-king-game-developer .lkgd-hero__h{
  margin:0 0 22px;color:#fff;font-weight:900;letter-spacing:-.028em;
  font-size:clamp(34px,5vw,58px);line-height:1.06;
}
#page-ludo-king-game-developer .lkgd-hero__p{
  margin:0 0 34px;color:#e2dcf2;font-size:18px;line-height:1.72;max-width:66ch;
}

/* ══ breadcrumb ════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-crumb{
  background:var(--paper-2);border-bottom:1px solid var(--line);
}
#page-ludo-king-game-developer .lkgd-crumb__in{
  display:flex;align-items:center;gap:10px;padding-top:16px;padding-bottom:16px;
  font-size:16px;flex-wrap:wrap;
}
#page-ludo-king-game-developer .lkgd-crumb__back{
  display:inline-flex;width:32px;height:32px;border-radius:10px 3px 10px 3px;
  align-items:center;justify-content:center;background:var(--paper);
  border:1px solid var(--line);transition:background-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-crumb__back:hover{background:var(--line-2);}
#page-ludo-king-game-developer .lkgd-crumb__link{font-weight:700;color:var(--blue);}
#page-ludo-king-game-developer .lkgd-crumb__link:hover{color:var(--red);}
#page-ludo-king-game-developer .lkgd-crumb__now{font-weight:600;color:var(--body);}

/* ══ intro ═════════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-intro{background:var(--paper-2);padding:72px 0;}
#page-ludo-king-game-developer .lkgd-intro__grid{
  display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:52px;align-items:center;
}
#page-ludo-king-game-developer .lkgd-intro__copy p{
  margin:0 0 20px;font-size:17px;line-height:1.8;
}
#page-ludo-king-game-developer .lkgd-intro__copy p:last-child{margin-bottom:0;}
#page-ludo-king-game-developer .lkgd-intro__shot{
  margin:0;border-radius:26px 6px 26px 6px;overflow:hidden;
  border:1px solid var(--line);background:var(--paper);
}
#page-ludo-king-game-developer .lkgd-intro__shot img{display:block;width:100%;height:auto;}

/* ══ shared card shell — the "arrow square" ════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-mode,
#page-ludo-king-game-developer .lkgd-pip,
#page-ludo-king-game-developer .lkgd-why__card,
#page-ludo-king-game-developer .lkgd-admin__card,
#page-ludo-king-game-developer .lkgd-plat__card,
#page-ludo-king-game-developer .lkgd-edge__card,
#page-ludo-king-game-developer .lkgd-proc__step,
#page-ludo-king-game-developer .lkgd-serve__card,
#page-ludo-king-game-developer .lkgd-track__box{
  background:var(--paper-2);border:1px solid var(--line);
  border-radius:22px 4px 22px 4px;padding:28px 26px;
  border-top:4px solid var(--red);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
#page-ludo-king-game-developer .lkgd-mode:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-pip:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-why__card:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-admin__card:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-plat__card:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-edge__card:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-proc__step:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-serve__card:nth-child(4n+2),
#page-ludo-king-game-developer .lkgd-track__box:nth-child(4n+2){border-top-color:var(--green);}
#page-ludo-king-game-developer .lkgd-mode:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-pip:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-why__card:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-admin__card:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-plat__card:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-edge__card:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-proc__step:nth-child(4n+3),
#page-ludo-king-game-developer .lkgd-serve__card:nth-child(4n+3){border-top-color:var(--yellow);}
#page-ludo-king-game-developer .lkgd-mode:nth-child(4n),
#page-ludo-king-game-developer .lkgd-pip:nth-child(4n),
#page-ludo-king-game-developer .lkgd-why__card:nth-child(4n),
#page-ludo-king-game-developer .lkgd-admin__card:nth-child(4n),
#page-ludo-king-game-developer .lkgd-plat__card:nth-child(4n),
#page-ludo-king-game-developer .lkgd-edge__card:nth-child(4n),
#page-ludo-king-game-developer .lkgd-proc__step:nth-child(4n),
#page-ludo-king-game-developer .lkgd-serve__card:nth-child(4n){border-top-color:var(--blue);}

#page-ludo-king-game-developer .lkgd-mode:hover,
#page-ludo-king-game-developer .lkgd-pip:hover,
#page-ludo-king-game-developer .lkgd-why__card:hover,
#page-ludo-king-game-developer .lkgd-admin__card:hover,
#page-ludo-king-game-developer .lkgd-plat__card:hover,
#page-ludo-king-game-developer .lkgd-edge__card:hover,
#page-ludo-king-game-developer .lkgd-proc__step:hover,
#page-ludo-king-game-developer .lkgd-serve__card:hover{
  transform:translateY(-4px);box-shadow:0 16px 34px rgba(28,21,51,.10);
}

/* ══ 4 modes ═══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-modes{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-modes__grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-mode__token{
  display:block;width:26px;height:26px;margin-bottom:16px;border-radius:50%;
  background:currentColor;color:var(--red);
  box-shadow:inset 0 0 0 5px var(--paper-2),0 3px 8px rgba(28,21,51,.22);
}
#page-ludo-king-game-developer .lkgd-mode:nth-child(2) .lkgd-mode__token{color:var(--green);}
#page-ludo-king-game-developer .lkgd-mode:nth-child(3) .lkgd-mode__token{color:var(--yellow);}
#page-ludo-king-game-developer .lkgd-mode:nth-child(4) .lkgd-mode__token{color:var(--blue);}
#page-ludo-king-game-developer .lkgd-mode__h{
  margin:0 0 12px;font-size:21px;line-height:1.28;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-mode__p{margin:0;font-size:17px;line-height:1.72;}

/* ══ CTA bands ═════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-band{
  background:linear-gradient(115deg,#1c1533 0%,#2b1f4d 58%,#3a1f45 100%);
  padding:66px 0;
}
#page-ludo-king-game-developer .lkgd-band__in{
  display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  gap:44px;align-items:center;
}
#page-ludo-king-game-developer .lkgd-band__h{
  margin:0 0 14px;color:#fff;font-weight:900;letter-spacing:-.02em;
  font-size:clamp(26px,3vw,36px);line-height:1.18;
}
#page-ludo-king-game-developer .lkgd-band__p{
  margin:0 0 28px;color:#ded7f2;font-size:18px;line-height:1.7;
}
#page-ludo-king-game-developer .lkgd-band__acts{
  display:flex;align-items:center;gap:26px;flex-wrap:wrap;
}
#page-ludo-king-game-developer .lkgd-band__art{
  margin:0;border-radius:24px 6px 24px 6px;overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
}
#page-ludo-king-game-developer .lkgd-band__art img{display:block;width:100%;height:auto;}

/* ══ features ══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-feat{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-feat__grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-pip{background:var(--paper);padding:24px 22px;}
#page-ludo-king-game-developer .lkgd-pip__h{
  margin:0 0 10px;font-size:18px;line-height:1.32;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-pip__p{margin:0;font-size:16px;line-height:1.68;}

/* ══ variants ══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-vars{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-vars__grid{
  list-style:none;margin:36px 0 0;padding:0;
  display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px;
}
/* The variant marks are 668x375 webp and 214x120 svg -- both 16:9 to within
   0.2%. `max-height:74px` in a 118px-tall cell painted them at 132x74, 20% of
   the art: the "too small" the reviewer reported. The cell now carries the
   art's own ratio and the mark fills it, contained (never `cover` on a mark).
   15 items tile 5 columns exactly -- no orphan cell -- and each mark lands at
   ~180px, inside the 165-190px band proven on the sibling pages. */
#page-ludo-king-game-developer .lkgd-var{
  display:flex;align-items:center;justify-content:center;
  background:var(--paper-2);border:1px solid var(--line);
  border-radius:18px 4px 18px 4px;padding:16px;
  transition:border-color .18s ease,transform .18s ease;
}
#page-ludo-king-game-developer .lkgd-var:hover{border-color:var(--yellow);transform:translateY(-3px);}
#page-ludo-king-game-developer .lkgd-var img{
  display:block;width:100%;height:auto;aspect-ratio:668/375;object-fit:contain;
}
#page-ludo-king-game-developer .lkgd-vars__act{margin-top:34px;}

/* ══ why choose our developers ═════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-why{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-why__grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-why__card{background:var(--paper);}
#page-ludo-king-game-developer .lkgd-why__ico{display:block;width:56px;height:56px;margin-bottom:18px;}
#page-ludo-king-game-developer .lkgd-why__h{
  margin:0 0 12px;font-size:20px;line-height:1.3;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-why__p{margin:0;font-size:17px;line-height:1.72;}

/* ══ gameplay track ════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-track{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-track__list{
  list-style:none;margin:36px 0 0;padding:0;
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 30px;
}
#page-ludo-king-game-developer .lkgd-track__item{
  display:flex;gap:14px;align-items:flex-start;
  background:var(--paper-2);border:1px solid var(--line-2);
  border-left:4px solid var(--line);
  border-radius:0 16px 0 16px;padding:18px 20px;
  font-size:17px;line-height:1.7;
}
#page-ludo-king-game-developer .lkgd-track__item:nth-child(4n+1){border-left-color:var(--red);}
#page-ludo-king-game-developer .lkgd-track__item:nth-child(4n+2){border-left-color:var(--green);}
#page-ludo-king-game-developer .lkgd-track__item:nth-child(4n+3){border-left-color:var(--yellow);}
#page-ludo-king-game-developer .lkgd-track__item:nth-child(4n){border-left-color:var(--blue);}
#page-ludo-king-game-developer .lkgd-track__tick{
  flex:0 0 auto;width:20px;height:20px;margin-top:4px;
}
#page-ludo-king-game-developer .lkgd-track__cust{
  margin-top:52px;padding:38px 34px;
  background:var(--paper-2);border:1px solid var(--line);
  border-radius:28px 6px 28px 6px;
}
#page-ludo-king-game-developer .lkgd-track__lead{
  margin:0 0 28px;font-size:17px;line-height:1.78;
}
#page-ludo-king-game-developer .lkgd-track__pair{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;
}
#page-ludo-king-game-developer .lkgd-track__box{background:var(--paper);}
#page-ludo-king-game-developer .lkgd-track__box p{margin:0;font-size:16px;line-height:1.72;}

/* ══ boost your business ═══════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-offers{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-offers__grid{
  display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:44px;align-items:start;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-offers__art{
  margin:0;border-radius:24px 6px 24px 6px;overflow:hidden;
  border:1px solid var(--line);background:var(--paper);
}
#page-ludo-king-game-developer .lkgd-offers__art img{display:block;width:100%;height:auto;}
#page-ludo-king-game-developer .lkgd-offers__list{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;
}
#page-ludo-king-game-developer .lkgd-offer{
  display:block;padding:13px 16px;font-size:16px;font-weight:600;line-height:1.5;
  color:var(--ink);background:var(--paper);
  border:1px solid var(--line);border-radius:12px 3px 12px 3px;
  transition:background-color .16s ease,color .16s ease,border-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-offer:hover{
  background:var(--ink);color:#fff;border-color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-offers__act{margin-top:34px;}

/* ══ admin panel ═══════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-admin{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-admin__grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-admin__h{
  margin:0 0 10px;font-size:18px;line-height:1.32;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-admin__p{margin:0;font-size:16px;line-height:1.7;}

/* ══ platforms ═════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-plat{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-plat__grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-plat__card{background:var(--paper);}
#page-ludo-king-game-developer .lkgd-plat__dot{display:block;width:28px;height:28px;margin-bottom:16px;}
#page-ludo-king-game-developer .lkgd-plat__h{
  margin:0 0 12px;font-size:21px;line-height:1.28;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-plat__p{margin:0;font-size:17px;line-height:1.72;}

/* ══ process ═══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-proc{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-proc__grid{
  list-style:none;margin:36px 0 0;padding:0;counter-reset:lkgdstep;
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;
}
#page-ludo-king-game-developer .lkgd-proc__step{position:relative;counter-increment:lkgdstep;}
#page-ludo-king-game-developer .lkgd-proc__step::after{
  content:counter(lkgdstep,decimal-leading-zero);
  position:absolute;top:20px;right:22px;
  font-size:30px;font-weight:900;color:var(--line);letter-spacing:-.03em;
}
#page-ludo-king-game-developer .lkgd-proc__ico{display:block;width:48px;height:48px;margin-bottom:16px;}
#page-ludo-king-game-developer .lkgd-proc__h{
  margin:0 0 14px;font-size:20px;line-height:1.28;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-proc__pts{
  list-style:none;margin:0;padding:0;display:grid;gap:10px;
}
#page-ludo-king-game-developer .lkgd-proc__pts li{
  position:relative;padding-left:22px;font-size:16px;line-height:1.65;
}
#page-ludo-king-game-developer .lkgd-proc__pts li::before{
  content:"";position:absolute;left:0;top:8px;width:10px;height:10px;
  border-radius:3px 0 3px 0;background:var(--yellow);
}

/* ══ technology stack ══════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-stack{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-stack__table{
  width:100%;margin-top:32px;border-collapse:separate;border-spacing:0 10px;
}
#page-ludo-king-game-developer .lkgd-stack__table th,
#page-ludo-king-game-developer .lkgd-stack__table td{
  text-align:left;padding:18px 22px;font-size:17px;line-height:1.6;
  background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
#page-ludo-king-game-developer .lkgd-stack__table th{
  font-weight:800;color:var(--ink);width:38%;
  border-left:4px solid var(--blue);border-radius:14px 0 0 14px;
}
#page-ludo-king-game-developer .lkgd-stack__table td{
  border-right:1px solid var(--line);border-radius:0 4px 0 14px;
}
#page-ludo-king-game-developer .lkgd-stack__table tr:nth-child(1) th{border-left-color:var(--red);}
#page-ludo-king-game-developer .lkgd-stack__table tr:nth-child(2) th{border-left-color:var(--green);}
#page-ludo-king-game-developer .lkgd-stack__table tr:nth-child(3) th{border-left-color:var(--yellow);}

/* ══ cutting-edge features ═════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-edge{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-edge__grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-edge__tick{display:block;width:22px;height:22px;margin-bottom:14px;}
#page-ludo-king-game-developer .lkgd-edge__h{
  margin:0 0 10px;font-size:19px;line-height:1.3;font-weight:800;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-edge__p{margin:0;font-size:16px;line-height:1.7;}

/* ══ engine ════════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-engine{background:var(--paper-2);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-engine__grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-engine__p{
  margin:0;padding:26px 24px;font-size:17px;line-height:1.72;
  background:var(--paper);border:1px solid var(--line-2);
  border-radius:4px 20px 4px 20px;
}

/* ══ company ═══════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-co{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-co__p{margin:0 0 20px;font-size:17px;line-height:1.82;}
#page-ludo-king-game-developer .lkgd-co__p:last-child{margin-bottom:0;}

/* ══ other offerings ═══════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-other{background:var(--ink);padding:80px 0;}
#page-ludo-king-game-developer .lkgd-other .lkgd-h2{color:#fff;}
#page-ludo-king-game-developer .lkgd-other__list{
  list-style:none;margin:36px 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:10px;
}
#page-ludo-king-game-developer .lkgd-chip{
  display:inline-block;padding:11px 18px;font-size:16px;font-weight:600;line-height:1.4;
  color:#e8e2fb;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);border-radius:11px 3px 11px 3px;
  transition:background-color .16s ease,color .16s ease,border-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-chip:hover{
  background:var(--gold);color:#221a06;border-color:var(--gold);
}

/* ══ FAQ ═══════════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-faq{padding:80px 0;}
#page-ludo-king-game-developer .lkgd-faq__list{margin-top:34px;display:grid;gap:10px;}
#page-ludo-king-game-developer .lkgd-faq__item{
  background:var(--paper-2);border:1px solid var(--line);
  border-radius:16px 4px 16px 4px;overflow:hidden;
}
#page-ludo-king-game-developer .lkgd-faq__item[open]{border-color:var(--blue);}
#page-ludo-king-game-developer .lkgd-faq__q{
  list-style:none;cursor:pointer;display:flex;gap:16px;align-items:flex-start;
  padding:20px 22px;font-size:17px;font-weight:700;line-height:1.5;color:var(--ink);
  transition:background-color .16s ease;
}
#page-ludo-king-game-developer .lkgd-faq__q::-webkit-details-marker{display:none;}
#page-ludo-king-game-developer .lkgd-faq__q::after{
  content:"";flex:0 0 auto;width:12px;height:12px;margin-top:7px;margin-left:auto;
  border-right:2.5px solid var(--blue);border-bottom:2.5px solid var(--blue);
  transform:rotate(45deg);transition:transform .18s ease;
}
#page-ludo-king-game-developer .lkgd-faq__item[open] .lkgd-faq__q::after{transform:rotate(-135deg);}
#page-ludo-king-game-developer .lkgd-faq__q:hover{background:var(--paper);}
#page-ludo-king-game-developer .lkgd-faq__q:focus-visible{outline:3px solid var(--blue);outline-offset:-3px;}
#page-ludo-king-game-developer .lkgd-faq__a{
  padding:0 22px 22px;font-size:17px;line-height:1.76;
}

/* ══ area we serve ═════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-serve{background:var(--paper-2);padding:80px 0 92px;}
#page-ludo-king-game-developer .lkgd-serve__grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin-top:36px;
}
#page-ludo-king-game-developer .lkgd-serve__card{background:var(--paper);}
#page-ludo-king-game-developer .lkgd-serve__pin{display:block;width:20px;height:20px;margin-bottom:14px;}
#page-ludo-king-game-developer .lkgd-serve__h{
  margin:0 0 12px;font-size:16px;font-weight:800;letter-spacing:.1em;color:var(--ink);
}
#page-ludo-king-game-developer .lkgd-serve__tel{
  display:inline-block;margin-bottom:10px;font-size:18px;font-weight:800;color:var(--blue);
  transition:color .16s ease;
}
#page-ludo-king-game-developer .lkgd-serve__tel:hover{color:var(--red);}
#page-ludo-king-game-developer .lkgd-serve__addr{margin:0;font-size:16px;line-height:1.65;}

/* ══ CTA modal ═════════════════════════════════════════════════════════════ */
#page-ludo-king-game-developer .lkgd-modal{
  display:none;position:fixed;inset:0;z-index:9999;
  background:rgba(20,14,38,.74);padding: 100px 20px 20px 20px;overflow-y:auto;
}
#page-ludo-king-game-developer .lkgd-modal.is-open{display:flex;align-items:flex-start;justify-content:center;}
#page-ludo-king-game-developer .lkgd-modal__box{
  position:relative;width:100%;max-width:640px;margin:auto;
  background:var(--paper-2);border-radius:22px 6px 22px 6px;overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.45);
}
#page-ludo-king-game-developer .lkgd-modal__x{
  position:absolute;top:14px;right:14px;z-index:2;
  width:38px;height:38px;border-radius:50%;border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  background:var(--line-2);color:var(--ink);
  transition:background-color .18s ease,color .18s ease;
}
#page-ludo-king-game-developer .lkgd-modal__x:hover{background:var(--red);color:#fff;}
/* rule 20 — the GHL widget is a TWO-SLIDE survey whose slides differ in height and
   which never posts its own height, so no fixed height is correct. GHL's own
   form_embed.js (loaded lazily on FIRST modal open, never at page load) starts the
   iFrameResizer and sets an inline height per slide; the -5px cancels the resizer's
   known 5px overshoot and .lkgd-modal__box's overflow:hidden clips it. Before the
   resizer initialises the iframe keeps a floor tall enough for the WORST slide and
   no negative margin, so a blocked script degrades to "roomy", never to a clipped
   SUBMIT bar. Measured on /blackjack-software-script, AISHTMLNEWDESIGN-326. */
#page-ludo-king-game-developer .lkgd-modal iframe{
  display:block;width:100%;border:0;margin-bottom:-5px;
}
#page-ludo-king-game-developer .lkgd-modal iframe:not([data-iframe-resizer-initialized]){
  min-height:1290px;margin-bottom:0;
}

/* ══ responsive ════════════════════════════════════════════════════════════ */
@media(max-width:1080px){
  #page-ludo-king-game-developer .lkgd-feat__grid,
  #page-ludo-king-game-developer .lkgd-admin__grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  #page-ludo-king-game-developer .lkgd-vars__grid{grid-template-columns:repeat(4,minmax(0,1fr));}
  #page-ludo-king-game-developer .lkgd-serve__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:900px){
  #page-ludo-king-game-developer .lkgd-hero{padding:72px 0 78px;}
  #page-ludo-king-game-developer .lkgd-intro__grid,
  #page-ludo-king-game-developer .lkgd-band__in,
  #page-ludo-king-game-developer .lkgd-offers__grid{grid-template-columns:minmax(0,1fr);gap:32px;}
  #page-ludo-king-game-developer .lkgd-why__grid,
  #page-ludo-king-game-developer .lkgd-plat__grid,
  #page-ludo-king-game-developer .lkgd-proc__grid,
  #page-ludo-king-game-developer .lkgd-edge__grid,
  #page-ludo-king-game-developer .lkgd-engine__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  #page-ludo-king-game-developer .lkgd-track__list{grid-template-columns:minmax(0,1fr);}
  #page-ludo-king-game-developer .lkgd-h2{max-width:none;}
}
@media(max-width:680px){
  #page-ludo-king-game-developer .lkgd-modes__grid,
  #page-ludo-king-game-developer .lkgd-feat__grid,
  #page-ludo-king-game-developer .lkgd-admin__grid,
  #page-ludo-king-game-developer .lkgd-why__grid,
  #page-ludo-king-game-developer .lkgd-plat__grid,
  #page-ludo-king-game-developer .lkgd-proc__grid,
  #page-ludo-king-game-developer .lkgd-edge__grid,
  #page-ludo-king-game-developer .lkgd-engine__grid,
  #page-ludo-king-game-developer .lkgd-offers__list,
  #page-ludo-king-game-developer .lkgd-track__pair,
  #page-ludo-king-game-developer .lkgd-serve__grid{grid-template-columns:minmax(0,1fr);}
  #page-ludo-king-game-developer .lkgd-vars__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  #page-ludo-king-game-developer .lkgd-btn{width:100%;text-align:center;}
  #page-ludo-king-game-developer .lkgd-band__acts{align-items:stretch;flex-direction:column;gap:18px;}
  #page-ludo-king-game-developer .lkgd-textlink{text-align:center;}
  #page-ludo-king-game-developer .lkgd-track__cust{padding:28px 22px;}
  #page-ludo-king-game-developer .lkgd-stack__table th,
  #page-ludo-king-game-developer .lkgd-stack__table td{display:block;width:auto;border-radius:0;}
  #page-ludo-king-game-developer .lkgd-stack__table th{border-bottom:0;border-radius:14px 0 0 0;}
  #page-ludo-king-game-developer .lkgd-stack__table td{border-top:0;border-left:1px solid var(--line);border-radius:0 0 0 14px;}
}

/* Users who ask the OS for less motion get none. Every transition above is already
   user-initiated and finite; this simply removes the travel. */
@media(prefers-reduced-motion:reduce){
  #page-ludo-king-game-developer *{transition:none !important;}
  #page-ludo-king-game-developer .lkgd-btn:hover,
  #page-ludo-king-game-developer .lkgd-var:hover,
  #page-ludo-king-game-developer .lkgd-mode:hover,
  #page-ludo-king-game-developer .lkgd-pip:hover,
  #page-ludo-king-game-developer .lkgd-why__card:hover,
  #page-ludo-king-game-developer .lkgd-admin__card:hover,
  #page-ludo-king-game-developer .lkgd-plat__card:hover,
  #page-ludo-king-game-developer .lkgd-edge__card:hover,
  #page-ludo-king-game-developer .lkgd-proc__step:hover,
  #page-ludo-king-game-developer .lkgd-serve__card:hover{transform:none;}
}
