/* ══════════════════════════════════════════════════════════════════════════
   /casino-game-development-company — page-isolated stylesheet
   AISHTMLNEWDESIGN-391

   Visual direction: "CHIP RAIL".

   This page does not sell a night on the floor — it sells the WORKSHOP that
   certifies and ships the games: RNG certification, cross-platform builds,
   payment integration, rent / buy / rent-to-buy. So the register is a
   fabrication bench, not a casino: cool porcelain stock, a cold graphite
   tray, and one warm amber that is the only colour allowed to carry an action.

     · PORCELAIN — a COOL light grey-blue (#eef1f5) as the page's ground.
                   Deliberately cool: /card-game-development already owns the
                   warm card-stock linen, and the two must be distinguishable
                   at a glance rather than on inspection.
     · GRAPHITE  — #0d1216, the tray. Used for four bands as punctuation
                   (hero, catalogue, demo, stories) — never as the ground.
     · AMBER     — #e0940f, the one signal. It is the only accent that carries
                   an action. No second action hue, no gradient family, no glow.

   Composition motif: the DENOMINATION PLATE (a two-digit number set in a small
   squared plate) threaded on a RAIL (a 2px vertical line running down the left
   of the numbered blocks), plus a TICK RULE — a static repeating-linear-gradient
   hairline that reads as the milled edge of a chip stack. It is a border, never
   an animation.

   Section shapes are deliberately all different, so nothing repeats:
     hero (centred column) · split call band · asymmetric prose+plate spread ·
     denomination rail · icon catalogue on graphite · split talent band ·
     numbered ledger · wide statement · dense three-column feature set ·
     three credential cards · full-width model rows · seven solution rows with
     an outcome strip · closing statement · accordion · video facades · regions.
   There is no three-up "icon + heading + paragraph + button" card grid anywhere.

   Every rule is scoped to #page-casino-game-development-company, so this file
   can never touch the shared header/footer, which is owned by
   /assets/css/ais-*.css + /assets/js/ais-header.js / ais-footer.js.
   The UA body-margin reset is NOT restated here — /assets/css/ais-layout.css
   owns it (skill section 33).

   Design contract (.claude/skills/frontend-design/SKILL.md):
     · rule  1 — Inter is the primary family
     · rule  2 — nothing below 16px, anywhere, including labels and captions
     · rule 23 — no slate-gray body copy on light surfaces (#1e2831 floor)
     · rule 24 — image-free full-bleed hero, static gradient, centred column
     · rule 25 — one CTA per section, every label unique page-wide
     · rule 26 — no running animation: zero @keyframes, zero 'infinite',
                 transitions only, each a finite response to hover/focus/click
   ══════════════════════════════════════════════════════════════════════════ */

#page-casino-game-development-company{
  /* ── palette ─────────────────────────────────────────────────────────── */
  --porcelain:#eef1f5;      /* cool bench stock — the page's ground   */
  --porcelain-2:#e3e8ef;    /* deeper stock                           */
  --paper:#ffffff;
  --line:#d5dce5;           /* hairline on stock                      */
  --line-strong:#b9c4d1;
  --graphite:#0d1216;       /* the tray — punctuation only            */
  --graphite-2:#151d24;
  --graphite-3:#28343f;
  --body:#1e2831;           /* AA on porcelain and paper              */
  --body-dark:#ccd7e2;      /* AA on graphite                         */
  --strong:#0b1015;
  --amber:#e0940f;          /* the one signal                         */
  --amber-deep:#8a5600;     /* the signal hue that passes AA on light */
  --amber-soft:#ffcf7a;      /* the signal on graphite                 */
  --amber-tint:#fdf2dd;

  --wrap:1240px;
  --gut:clamp(20px,4vw,40px);
  --r:12px;

  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--body);
  background:var(--porcelain);
  -webkit-font-smoothing:antialiased;
  font-size:17px;
  line-height:1.72;
}

#page-casino-game-development-company *,
#page-casino-game-development-company *::before,
#page-casino-game-development-company *::after{box-sizing:border-box;}

#page-casino-game-development-company p{margin:0 0 18px;font-size:17px;line-height:1.78;}
#page-casino-game-development-company p:last-child{margin-bottom:0;}
#page-casino-game-development-company ul,
#page-casino-game-development-company ol,
#page-casino-game-development-company dl{margin:0;padding:0;list-style:none;}
#page-casino-game-development-company img{max-width:100%;height:auto;display:block;}
#page-casino-game-development-company h1,
#page-casino-game-development-company h2,
#page-casino-game-development-company h3,
#page-casino-game-development-company h4,
#page-casino-game-development-company h5{
  margin:0;color:var(--strong);font-weight:800;letter-spacing:-.015em;line-height:1.2;
}

#page-casino-game-development-company .cgdc-wrap{
  max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gut);width:100%;
}
#page-casino-game-development-company .cgdc-wrap--narrow{max-width:900px;}

/* ── the tick rule ───────────────────────────────────────────────────────
   A STATIC repeating-linear-gradient hairline — the milled edge of a chip
   stack. It is a painted border, not motion (rule 26). */
#page-casino-game-development-company .cgdc-tick,
#page-casino-game-development-company .cgdc-hero::after{
  background-image:repeating-linear-gradient(90deg,
      currentColor 0 2px, transparent 2px 10px);
}

/* ── inline text links ───────────────────────────────────────────────────
   Not CTAs (rule 25 counts .btn/.cta and modal openers), so they must read as
   links: underlined, in the signal hue that passes AA on porcelain. */
#page-casino-game-development-company .cgdc-link{
  color:var(--amber-deep);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
  font-weight:600;
  transition:color .18s ease,text-decoration-thickness .18s ease;
}
#page-casino-game-development-company .cgdc-link:hover,
#page-casino-game-development-company .cgdc-link:focus-visible{
  color:#6d4300;text-decoration-thickness:2px;
}
#page-casino-game-development-company .cgdc-link--light{color:var(--amber-soft);}
#page-casino-game-development-company .cgdc-link--light:hover,
#page-casino-game-development-company .cgdc-link--light:focus-visible{color:#ffe0ab;}

/* ── focus ring, everywhere ──────────────────────────────────────────────── */
#page-casino-game-development-company a:focus-visible,
#page-casino-game-development-company button:focus-visible,
#page-casino-game-development-company summary:focus-visible{
  outline:3px solid var(--amber);
  outline-offset:3px;
  border-radius:4px;
}

/* ── buttons ─────────────────────────────────────────────────────────────
   Two skins, one shape. Motion is a finite transition on hover/press only. */
#page-casino-game-development-company .cgdc-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;padding:14px 30px;
  font-size:17px;font-weight:700;letter-spacing:.005em;
  border:2px solid transparent;border-radius:var(--r);
  cursor:pointer;text-align:center;
  transition:background-color .18s ease,color .18s ease,
             border-color .18s ease,transform .12s ease,box-shadow .18s ease;
}
#page-casino-game-development-company .cgdc-btn:active{transform:translateY(1px);}

#page-casino-game-development-company .cgdc-btn--amber{
  background:var(--amber);color:#1a1204;border-color:var(--amber);
  box-shadow:0 2px 0 0 #a86d09;
}
#page-casino-game-development-company .cgdc-btn--amber:hover,
#page-casino-game-development-company .cgdc-btn--amber:focus-visible{
  background:#f2a71f;border-color:#f2a71f;box-shadow:0 4px 0 0 #a86d09;
}

#page-casino-game-development-company .cgdc-btn--ink{
  background:var(--graphite);color:#f4f7fa;border-color:var(--graphite);
}
#page-casino-game-development-company .cgdc-btn--ink:hover,
#page-casino-game-development-company .cgdc-btn--ink:focus-visible{
  background:var(--graphite-3);border-color:var(--graphite-3);
}

#page-casino-game-development-company .cgdc-cta-row{
  margin-top:clamp(32px,4vw,48px);display:flex;justify-content:center;
}

/* ── denomination plate ──────────────────────────────────────────────────
   The page's index mark. Never a surface, never above 20px. */
#page-casino-game-development-company .cgdc-den{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:38px;height:30px;padding:0 8px;
  border:1.5px solid var(--line-strong);border-radius:6px;
  font-size:16px;font-weight:800;font-variant-numeric:tabular-nums;
  letter-spacing:.02em;color:var(--amber-deep);background:var(--paper);
  flex:none;
}
#page-casino-game-development-company .cgdc-den--amber{
  background:var(--amber-tint);border-color:#e8c98a;
}

/* ── shared section frame ────────────────────────────────────────────────── */
#page-casino-game-development-company .cgdc-sec{
  padding-block:clamp(56px,7vw,96px);
}
#page-casino-game-development-company .cgdc-sec--paper{background:var(--paper);}
#page-casino-game-development-company .cgdc-sec--porcelain{background:var(--porcelain);}
#page-casino-game-development-company .cgdc-sec--ink{
  background:var(--graphite);color:var(--body-dark);
}
#page-casino-game-development-company .cgdc-sec--ink p{color:var(--body-dark);}

#page-casino-game-development-company .cgdc-eyebrow{
  margin:0 0 12px;font-size:16px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--amber-deep);
}
#page-casino-game-development-company .cgdc-eyebrow--light{color:var(--amber-soft);}
#page-casino-game-development-company .cgdc-eyebrow--ink{color:#5b3b00;}

#page-casino-game-development-company .cgdc-h2{
  font-size:clamp(30px,3.4vw,46px);max-width:20ch;
}
#page-casino-game-development-company .cgdc-h2--wide{max-width:26ch;}
#page-casino-game-development-company .cgdc-h2--light{color:#f4f7fa;}
#page-casino-game-development-company .cgdc-h3{
  font-size:clamp(21px,2vw,26px);margin-top:14px;
}

#page-casino-game-development-company .cgdc-head{
  margin-bottom:clamp(32px,4vw,52px);
  border-left:3px solid var(--amber);
  padding-left:clamp(16px,2vw,26px);
}
#page-casino-game-development-company .cgdc-head--centre{
  border-left:0;padding-left:0;text-align:center;
}
#page-casino-game-development-company .cgdc-head--centre .cgdc-h2{
  margin-inline:auto;
}
#page-casino-game-development-company .cgdc-head__lede{
  margin:18px 0 0;max-width:74ch;
}

/* ══ HERO ═══════════════════════════════════════════════════════════════
   Rule 24: full-bleed, image-free, STATIC gradient, centred ~900px column,
   exactly one CTA. The bottom tick rule is a painted border. */
#page-casino-game-development-company .cgdc-hero{
  position:relative;
  width:100%;
  padding:clamp(64px,8.5vw,124px) 24px clamp(56px,7vw,96px);
  background:
    linear-gradient(135deg,#0d1216 0%,#121b23 46%,#1b2731 100%);
  color:var(--body-dark);
  border-bottom:1px solid #202b35;
}
#page-casino-game-development-company .cgdc-hero::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:4px;
  color:#33424f;
}
#page-casino-game-development-company .cgdc-hero__inner{
  max-width:900px;margin-inline:auto;text-align:center;
}
#page-casino-game-development-company .cgdc-hero__tag{
  margin:0 0 18px;font-size:16px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--amber-soft);
}
#page-casino-game-development-company .cgdc-hero h1{
  font-size:clamp(34px,5vw,62px);line-height:1.06;color:#ffffff;
  letter-spacing:-.02em;
}
#page-casino-game-development-company .cgdc-hero__copy{
  margin:22px auto 30px;max-width:74ch;
  font-size:clamp(17px,1.4vw,19px);line-height:1.75;color:#dde6ef;
}
#page-casino-game-development-company .cgdc-hero__note{
  margin:36px 0 14px;font-size:16px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:#93a5b5;
}
#page-casino-game-development-company .cgdc-hero__modes{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;
}
#page-casino-game-development-company .cgdc-hero__modes li{
  display:flex;align-items:center;gap:10px;
  padding:8px 16px 8px 8px;border:1px solid #2c3a46;border-radius:999px;
  background:#111a21;font-size:17px;font-weight:600;color:#e8eff6;
}
#page-casino-game-development-company .cgdc-hero__modes .cgdc-den{
  background:transparent;border-color:#3a4a58;color:var(--amber-soft);
  min-width:34px;height:26px;
}
#page-casino-game-development-company .cgdc-hero__rail{
  margin-top:26px;padding-top:22px;border-top:1px solid #202b35;
  display:flex;flex-wrap:wrap;gap:10px 34px;justify-content:center;
}
#page-casino-game-development-company .cgdc-hero__rail li{
  font-size:16px;font-weight:600;color:#a9bac8;
  position:relative;padding-left:16px;
}
#page-casino-game-development-company .cgdc-hero__rail li::before{
  content:"";position:absolute;left:0;top:.62em;
  width:7px;height:7px;border-radius:2px;background:var(--amber);
}

/* ══ BREADCRUMB ═════════════════════════════════════════════════════════ */
#page-casino-game-development-company .cgdc-crumbbar{
  background:var(--porcelain-2);border-bottom:1px solid var(--line);
}
#page-casino-game-development-company .cgdc-crumb{
  display:flex;align-items:center;gap:9px;
  padding-block:16px;font-size:16px;font-weight:600;color:#42505d;
}
#page-casino-game-development-company .cgdc-crumb a{color:var(--amber-deep);}
#page-casino-game-development-company .cgdc-crumb a:hover{text-decoration:underline;}
#page-casino-game-development-company .cgdc-crumb img{width:16px;height:16px;}

/* ══ FUEL YOUR SUCCESS — split call band ════════════════════════════════ */
#page-casino-game-development-company .cgdc-call{
  background:linear-gradient(100deg,var(--amber) 0%,#f0ae2e 100%);
  padding-block:clamp(40px,5vw,64px);
  border-block:1px solid #c07f0b;
}
#page-casino-game-development-company .cgdc-call__grid{
  display:grid;grid-template-columns:1fr auto;gap:28px 48px;align-items:center;
}
#page-casino-game-development-company .cgdc-call .cgdc-h2{color:#150e02;max-width:24ch;}
#page-casino-game-development-company .cgdc-call__sub{
  margin:14px 0 0;font-size:18px;font-weight:600;color:#2c1f06;max-width:60ch;
}

/* ══ HIGH-PERFORMANCE — asymmetric prose + plate ════════════════════════ */
#page-casino-game-development-company .cgdc-spread{
  display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(28px,4vw,64px);
  align-items:center;
}
#page-casino-game-development-company .cgdc-spread__copy .cgdc-h2{margin-bottom:20px;}
#page-casino-game-development-company .cgdc-spread__copy .cgdc-btn{margin-top:10px;}
#page-casino-game-development-company .cgdc-plate{
  margin:0;border:1px solid var(--line);border-radius:var(--r);
  background:var(--porcelain);padding:14px;
  box-shadow:0 18px 44px -30px rgba(13,18,22,.5);
}
#page-casino-game-development-company .cgdc-plate img{
  border-radius:8px;width:100%;
}

/* ══ GAME TYPES — denomination rail ═════════════════════════════════════ */
/* Six items, so a fixed 3x2 lattice — an auto-fit track count left the second
   row half-empty with per-cell bottom borders stopping mid-rule, which reads as
   an unfinished table rather than a rail. Separators are 1px grid gaps over a
   line-coloured ground, so every cell edge is continuous. */
#page-casino-game-development-company .cgdc-typerail{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;border:1px solid var(--line);border-radius:var(--r);
  background:var(--line);overflow:hidden;
}
#page-casino-game-development-company .cgdc-typerail li{
  display:flex;align-items:center;gap:14px;
  padding:22px 24px;font-size:18px;font-weight:700;color:var(--strong);
  background:var(--paper);
}

/* ══ READY-TO-LAUNCH — icon catalogue on graphite ══════════════════════ */
/* Ten titles, so a fixed 5x2 block. An auto-fit track count resolved to seven
   columns at 1440px and left a ragged 7+3 second row. */
#page-casino-game-development-company .cgdc-titles{
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:14px;
}
#page-casino-game-development-company .cgdc-titles li{
  display:flex;flex-direction:column;align-items:center;gap:14px;
  padding:26px 14px;text-align:center;
  border:1px solid #222e39;border-radius:var(--r);background:#111a21;
  transition:border-color .18s ease,background-color .18s ease,transform .12s ease;
}
#page-casino-game-development-company .cgdc-titles li:hover{
  border-color:var(--amber);background:#16212a;transform:translateY(-2px);
}
#page-casino-game-development-company .cgdc-titles img{width:52px;height:52px;}
#page-casino-game-development-company .cgdc-titles h5{
  font-size:18px;color:#eef4fa;font-weight:700;
}
#page-casino-game-development-company .cgdc-closer{
  margin-top:clamp(32px,4vw,48px);
  display:grid;grid-template-columns:1fr auto;gap:24px 48px;align-items:center;
  padding-top:clamp(28px,3vw,40px);border-top:1px solid #202b35;
}
#page-casino-game-development-company .cgdc-closer p{max-width:78ch;}

/* ══ HIRE UNITY — split talent band ════════════════════════════════════ */
#page-casino-game-development-company .cgdc-hire{
  background:var(--amber-tint);
  padding-block:clamp(48px,6vw,80px);
  border-block:1px solid #ecd6a8;
}
/* Single column at every width: the CTA sits UNDER the copy it earns, not in a
   right-hand column beside it. Off to the side the button was vertically
   centred against a three-line heading, so it read as chrome floating next to
   the section rather than as the next step after "Turn your ideas into
   immersive casino games players love." (requested 2026-09-03). */
#page-casino-game-development-company .cgdc-hire__grid{
  display:grid;grid-template-columns:1fr;gap:24px;align-items:start;
}
#page-casino-game-development-company .cgdc-hire p{max-width:62ch;color:#33291a;}
#page-casino-game-development-company .cgdc-hire__more{margin-top:16px;font-size:17px;}

/* ══ BENEFITS — numbered ledger on a rail ══════════════════════════════ */
#page-casino-game-development-company .cgdc-ledger{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
  gap:0 clamp(28px,4vw,56px);
}
#page-casino-game-development-company .cgdc-ledger li{
  display:grid;grid-template-columns:auto 1fr;gap:18px;
  padding:22px 0;border-bottom:1px solid var(--line);
}
#page-casino-game-development-company .cgdc-ledger h5{
  font-size:19px;margin-bottom:8px;
}
#page-casino-game-development-company .cgdc-ledger p{
  font-size:17px;margin:0;color:#2b3742;
}
#page-casino-game-development-company .cgdc-den--rail{
  position:relative;align-self:start;margin-top:2px;
}

/* ══ ADVANCED SOLUTIONS — wide statement ═══════════════════════════════ */
#page-casino-game-development-company .cgdc-statement{
  background:var(--porcelain-2);
  padding-block:clamp(56px,7vw,96px);
  border-block:1px solid var(--line);
  text-align:center;
}
#page-casino-game-development-company .cgdc-statement .cgdc-h2{
  margin-inline:auto;max-width:22ch;
}
#page-casino-game-development-company .cgdc-statement__copy{
  margin:22px auto 30px;max-width:78ch;font-size:18px;
}

/* ══ POWERFUL FEATURES — dense three-column set ════════════════════════ */
#page-casino-game-development-company .cgdc-features{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2px;background:var(--line);border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;
}
#page-casino-game-development-company .cgdc-features li{
  background:var(--paper);padding:22px 22px 24px;
  border-top:3px solid transparent;
  transition:border-color .18s ease,background-color .18s ease;
}
#page-casino-game-development-company .cgdc-features li:hover{
  border-top-color:var(--amber);background:#fffdf8;
}
#page-casino-game-development-company .cgdc-features h5{
  font-size:18px;margin-bottom:8px;
}
#page-casino-game-development-company .cgdc-features p{font-size:16px;margin:0;color:#2b3742;}

/* ══ TRY OUR DEMO — three credential cards ════════════════════════════ */
#page-casino-game-development-company .cgdc-demos{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:clamp(18px,2.4vw,28px);
}
#page-casino-game-development-company .cgdc-demo-card{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:16px;
  padding:34px 26px;border:1px solid #222e39;border-radius:var(--r);
  background:#111a21;
}
/* The record's three demo icons are dark-fill SVGs authored for a light ground,
   so on the graphite card they rendered as invisible 56px voids (they loaded
   fine — naturalWidth 130 — they just could not be seen). They sit on a light
   plate, which is also the page's chip motif rather than a patch. */
#page-casino-game-development-company .cgdc-demo-card img{
  width:72px;height:72px;padding:12px;
  background:var(--porcelain);border:1px solid #2c3a46;border-radius:14px;
}
#page-casino-game-development-company .cgdc-demo-card h5{font-size:20px;color:#eef4fa;}
/* Label ABOVE value, not beside it. A two-column dl left the value roughly
   157px wide, and "aisdemoadmin@ais.com" needs ~164px at the 16px floor — so
   the admin user id broke mid-word ("...co / m"). Stacking gives the value the
   card's full width and cannot be re-broken by a longer credential later. */
#page-casino-game-development-company .cgdc-cred{
  width:100%;display:grid;grid-template-columns:1fr;
  gap:4px;text-align:left;
  padding:16px 18px;border:1px dashed #33424f;border-radius:8px;
  background:#0d151b;
}
#page-casino-game-development-company .cgdc-cred dt{
  font-size:16px;font-weight:700;color:#8ea0b0;
  letter-spacing:.06em;
}
#page-casino-game-development-company .cgdc-cred dt + dd{margin-bottom:12px;}
#page-casino-game-development-company .cgdc-cred dd:last-child{margin-bottom:0;}
#page-casino-game-development-company .cgdc-cred dd{
  margin:0;font-size:16px;font-weight:600;color:#e4edf5;overflow-wrap:anywhere;
}
#page-casino-game-development-company .cgdc-cred a{color:var(--amber-soft);}
#page-casino-game-development-company .cgdc-cred a:hover{text-decoration:underline;}
#page-casino-game-development-company .cgdc-demo-card .cgdc-btn{margin-top:auto;width:100%;}

/* ══ EXCLUSIVE PERKS — full-width model rows ══════════════════════════ */
#page-casino-game-development-company .cgdc-models{
  border-top:1px solid var(--line);
}
#page-casino-game-development-company .cgdc-models li{
  display:grid;grid-template-columns:minmax(200px,300px) 1fr;
  gap:14px clamp(24px,4vw,64px);
  padding:30px 0;border-bottom:1px solid var(--line);
}
#page-casino-game-development-company .cgdc-models h5{font-size:23px;}
#page-casino-game-development-company .cgdc-models p{margin:0;max-width:80ch;}

/* ══ COMPREHENSIVE SOLUTIONS — rows with an outcome strip ═════════════ */
#page-casino-game-development-company .cgdc-solutions{
  display:grid;gap:clamp(16px,2vw,22px);
}
#page-casino-game-development-company .cgdc-solutions > li{
  padding:26px clamp(20px,2.6vw,32px);
  background:var(--paper);border:1px solid var(--line);border-radius:var(--r);
  border-left:4px solid var(--amber);
}
#page-casino-game-development-company .cgdc-solution__head{
  display:flex;align-items:center;gap:14px;margin-bottom:12px;
}
#page-casino-game-development-company .cgdc-solution__head h5{font-size:22px;}
#page-casino-game-development-company .cgdc-outcomes{
  margin-top:18px;padding-top:18px;border-top:1px dashed var(--line-strong);
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:10px 26px;
}
#page-casino-game-development-company .cgdc-outcomes li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:16px;font-weight:600;color:#2b3742;
}
#page-casino-game-development-company .cgdc-outcomes img{
  width:16px;height:16px;margin-top:5px;flex:none;
}

/* ══ WHY CHOOSE — closing statement ═══════════════════════════════════ */
#page-casino-game-development-company .cgdc-closing{
  background:linear-gradient(160deg,#0d1216 0%,#16202a 100%);
  padding-block:clamp(56px,7vw,96px);
  text-align:center;color:var(--body-dark);
}
#page-casino-game-development-company .cgdc-closing .cgdc-h2{
  margin-inline:auto;max-width:24ch;
}
#page-casino-game-development-company .cgdc-closing__copy{
  margin:22px auto 30px;max-width:78ch;font-size:18px;color:#dbe4ed;
}

/* ══ FAQ — accordion, user-initiated motion only ══════════════════════ */
#page-casino-game-development-company .cgdc-faq{
  max-width:960px;margin-inline:auto;
  border:1px solid var(--line);border-radius:var(--r);
  background:var(--paper);overflow:hidden;
}
#page-casino-game-development-company .cgdc-faq details{
  border-bottom:1px solid var(--line);
}
#page-casino-game-development-company .cgdc-faq details:last-child{border-bottom:0;}
#page-casino-game-development-company .cgdc-faq summary{
  display:flex;align-items:flex-start;gap:14px;
  padding:22px clamp(18px,2.4vw,28px);cursor:pointer;list-style:none;
  transition:background-color .18s ease;
}
#page-casino-game-development-company .cgdc-faq summary::-webkit-details-marker{display:none;}
#page-casino-game-development-company .cgdc-faq summary:hover{background:var(--porcelain);}
#page-casino-game-development-company .cgdc-faq summary h2{
  flex:1;margin:0;font-size:19px;font-weight:700;line-height:1.45;
}
#page-casino-game-development-company .cgdc-faq__n{
  font-size:16px;font-weight:800;color:var(--amber-deep);
  font-variant-numeric:tabular-nums;min-width:34px;padding-top:2px;
}
#page-casino-game-development-company .cgdc-faq__pm{
  position:relative;width:20px;height:20px;flex:none;margin-top:4px;
}
#page-casino-game-development-company .cgdc-faq__pm::before,
#page-casino-game-development-company .cgdc-faq__pm::after{
  content:"";position:absolute;left:50%;top:50%;
  background:var(--amber-deep);border-radius:2px;
  transform:translate(-50%,-50%);
  transition:opacity .18s ease;
}
#page-casino-game-development-company .cgdc-faq__pm::before{width:16px;height:2.5px;}
#page-casino-game-development-company .cgdc-faq__pm::after{width:2.5px;height:16px;}
#page-casino-game-development-company .cgdc-faq details[open] .cgdc-faq__pm::after{opacity:0;}
#page-casino-game-development-company .cgdc-faq__a{
  padding:0 clamp(18px,2.4vw,28px) 24px 62px;
}
#page-casino-game-development-company .cgdc-faq__a p{margin:0;color:#2b3742;}

/* ══ CUSTOMER SUCCESS STORIES ═════════════════════════════════════════ */
#page-casino-game-development-company .cgdc-stories{
  background:var(--graphite-2);
  padding-block:clamp(56px,7vw,96px);color:var(--body-dark);
}
#page-casino-game-development-company .cgdc-storylist{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:clamp(20px,2.6vw,30px);
}
#page-casino-game-development-company .cgdc-story{
  border:1px solid #222e39;border-radius:var(--r);
  background:#0f181f;overflow:hidden;display:flex;flex-direction:column;
}
#page-casino-game-development-company .cgdc-vid{
  position:relative;display:block;width:100%;padding:0;border:0;
  background:#0b1116;cursor:pointer;line-height:0;
}
#page-casino-game-development-company .cgdc-vid img{width:100%;height:auto;}
#page-casino-game-development-company .cgdc-vid__play{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:62px;height:62px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--amber);color:#1a1204;padding-left:4px;
  box-shadow:0 8px 24px -8px rgba(0,0,0,.7);
  transition:background-color .18s ease,transform .12s ease;
}
#page-casino-game-development-company .cgdc-vid:hover .cgdc-vid__play,
#page-casino-game-development-company .cgdc-vid:focus-visible .cgdc-vid__play{
  background:#f2a71f;transform:translate(-50%,-50%) scale(1.06);
}
#page-casino-game-development-company .cgdc-story__frame{
  width:100%;aspect-ratio:3/2;border:0;display:block;
}
#page-casino-game-development-company .cgdc-story blockquote{
  margin:0;padding:22px 24px 26px;
}
#page-casino-game-development-company .cgdc-story blockquote p{
  margin:0;font-size:17px;color:var(--body-dark);
}
#page-casino-game-development-company .cgdc-more{
  margin-top:28px;text-align:center;font-size:17px;font-weight:600;
}

/* ══ AREA WE SERVE ════════════════════════════════════════════════════ */
#page-casino-game-development-company .cgdc-regions{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2px;background:var(--line);border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;
}
#page-casino-game-development-company .cgdc-region{
  background:var(--paper);padding:26px 24px;
}
#page-casino-game-development-company .cgdc-region h3{
  display:flex;align-items:center;gap:10px;
  font-size:17px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--strong);margin-bottom:14px;
}
#page-casino-game-development-company .cgdc-region h3 img{width:14px;height:20px;}
#page-casino-game-development-company .cgdc-tel{
  display:inline-block;margin-bottom:10px;
  font-size:18px;font-weight:700;color:var(--amber-deep);
}
#page-casino-game-development-company .cgdc-tel:hover{text-decoration:underline;}
#page-casino-game-development-company .cgdc-region p{
  margin:0;font-size:16px;color:#2b3742;
}

/* ══ CTA MODAL ════════════════════════════════════════════════════════
   Wrapper carries ONLY the close control and the iframe — the embedded form
   owns its own heading (skill section 14). */
#page-casino-game-development-company .cgdc-modal{
  position:fixed;inset:0;z-index:9999;
  display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,12,16,.78);
}
#page-casino-game-development-company .cgdc-modal.is-open{display:flex;}
#page-casino-game-development-company .cgdc-modal__box{
  position:relative;width:100%;max-width:640px;
  background:var(--paper);border-radius:16px;
  box-shadow:0 40px 90px -30px rgba(0,0,0,.7);
  padding:44px 18px 18px;
  max-height:92vh;overflow-y:auto;
}
#page-casino-game-development-company .cgdc-modal__x{
  position:absolute;top:12px;right:12px;
  width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);border-radius:50%;
  background:var(--porcelain);color:var(--strong);cursor:pointer;
  transition:background-color .18s ease,color .18s ease;
}
#page-casino-game-development-company .cgdc-modal__x:hover{
  background:var(--graphite);color:#fff;
}
#page-casino-game-development-company .cgdc-modal iframe{
  display:block;width:100%;border:0;
  min-height:860px;   /* form content + 100px buffer (skill section 14) */
}

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════
   Layouts are RECOMPOSED, not shrunk (skill section 16). */
@media (max-width:1024px){
  #page-casino-game-development-company .cgdc-spread{grid-template-columns:1fr;}
  #page-casino-game-development-company .cgdc-plate{order:-1;}
  #page-casino-game-development-company .cgdc-models li{grid-template-columns:1fr;}
  #page-casino-game-development-company .cgdc-typerail{grid-template-columns:repeat(2,1fr);}
  #page-casino-game-development-company .cgdc-titles{grid-template-columns:repeat(4,1fr);}
}
@media (max-width:860px){
  #page-casino-game-development-company .cgdc-call__grid,
  #page-casino-game-development-company .cgdc-closer{
    grid-template-columns:1fr;
  }
  #page-casino-game-development-company .cgdc-call__act .cgdc-btn{width:100%;}
  #page-casino-game-development-company .cgdc-titles{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:640px){
  #page-casino-game-development-company{font-size:16px;}
  #page-casino-game-development-company p{font-size:16px;}
  #page-casino-game-development-company .cgdc-hero{padding-inline:20px;}
  #page-casino-game-development-company .cgdc-hero__modes{flex-direction:column;align-items:stretch;}
  #page-casino-game-development-company .cgdc-hero__modes li{justify-content:center;}
  #page-casino-game-development-company .cgdc-hero__rail{
    flex-direction:column;align-items:flex-start;text-align:left;gap:8px;
  }
  #page-casino-game-development-company .cgdc-titles{grid-template-columns:repeat(2,1fr);}
  #page-casino-game-development-company .cgdc-typerail{grid-template-columns:1fr;}
  #page-casino-game-development-company .cgdc-ledger li{grid-template-columns:1fr;gap:10px;}
  #page-casino-game-development-company .cgdc-faq__a{padding-left:clamp(18px,2.4vw,28px);}
  #page-casino-game-development-company .cgdc-btn{width:100%;}
  #page-casino-game-development-company .cgdc-cta-row .cgdc-btn{width:100%;}
  #page-casino-game-development-company .cgdc-modal__box{padding:44px 12px 12px;}
}

/* Reduced motion — for the finite transitions that remain (rule 26). */
@media (prefers-reduced-motion: reduce){
  #page-casino-game-development-company *,
  #page-casino-game-development-company *::before,
  #page-casino-game-development-company *::after{
    animation:none !important;transition-duration:.01ms !important;
  }
}
