
    #clory-custom-game-cards {
      --cg-text: #222222;
      --cg-muted: #626262;
      --cg-dark: #171717;
      --cg-accent: #9a6115;
      --cg-accent-dark: #72450c;
      --cg-soft: #f8f6f1;
      --cg-line: #dedbd4;
      max-width: 1120px;
      margin: 0 auto;
      color: var(--cg-text);
      font-family: Montserrat, Arial, Helvetica, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
    }
    #clory-custom-game-cards * { box-sizing: border-box; }
    #clory-custom-game-cards h2,
    #clory-custom-game-cards h3 {
      color: var(--cg-dark);
      line-height: 1.25;
    }
    #clory-custom-game-cards h2 {
      margin: 46px 0 16px;
      font-size: 30px;
    }
    #clory-custom-game-cards h3 {
      margin: 0 0 10px;
      font-size: 21px;
    }
    #clory-custom-game-cards p { margin: 0 0 18px; }
    #clory-custom-game-cards a {
      color: var(--cg-accent-dark);
      text-underline-offset: 3px;
    }
    #clory-custom-game-cards .cg-eyebrow {
      margin: 0 0 10px;
      color: var(--cg-accent-dark);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    #clory-custom-game-cards .cg-lead {
      max-width: 940px;
      font-size: 20px;
    }
    #clory-custom-game-cards .cg-quick-facts,
    #clory-custom-game-cards .cg-grid,
    #clory-custom-game-cards .cg-steps {
      display: grid;
      gap: 18px;
    }
    #clory-custom-game-cards .cg-quick-facts {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin: 26px 0 34px;
    }
    #clory-custom-game-cards .cg-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #clory-custom-game-cards .cg-steps {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      counter-reset: cg-step;
    }
    #clory-custom-game-cards .cg-card,
    #clory-custom-game-cards .cg-fact,
    #clory-custom-game-cards .cg-step {
      padding: 22px;
      border: 1px solid var(--cg-line);
      border-radius: 12px;
      background: #ffffff;
    }
    #clory-custom-game-cards .cg-fact strong,
    #clory-custom-game-cards .cg-fact span {
      display: block;
    }
    #clory-custom-game-cards .cg-fact strong {
      color: var(--cg-dark);
      font-size: 17px;
    }
    #clory-custom-game-cards .cg-fact span {
      margin-top: 4px;
      color: var(--cg-muted);
      font-size: 15px;
    }
    #clory-custom-game-cards .cg-figure {
      margin: 34px 0 12px;
    }
    #clory-custom-game-cards .cg-figure img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 14px;
    }
    #clory-custom-game-cards .cg-figure figcaption {
      margin-top: 10px;
      color: var(--cg-muted);
      font-size: 15px;
      text-align: center;
    }
    #clory-custom-game-cards .cg-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--cg-line);
      border-radius: 12px;
    }
    #clory-custom-game-cards table {
      width: 100%;
      border-collapse: collapse;
      min-width: 680px;
      background: #ffffff;
    }
    #clory-custom-game-cards th,
    #clory-custom-game-cards td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--cg-line);
      text-align: left;
      vertical-align: top;
    }
    #clory-custom-game-cards th {
      width: 30%;
      color: var(--cg-dark);
      background: var(--cg-soft);
      font-weight: 700;
    }
    #clory-custom-game-cards tr:last-child th,
    #clory-custom-game-cards tr:last-child td { border-bottom: 0; }
    #clory-custom-game-cards ul {
      margin: 0 0 18px;
      padding-left: 24px;
    }
    #clory-custom-game-cards li { margin: 0 0 8px; }
    #clory-custom-game-cards .cg-step {
      position: relative;
      padding-top: 54px;
      counter-increment: cg-step;
    }
    #clory-custom-game-cards .cg-step::before {
      content: counter(cg-step);
      position: absolute;
      top: 18px;
      left: 20px;
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--cg-accent);
      font-size: 14px;
      font-weight: 700;
    }
    #clory-custom-game-cards .cg-note {
      padding: 20px 22px;
      border-left: 4px solid var(--cg-accent);
      border-radius: 8px;
      background: var(--cg-soft);
    }
    #clory-custom-game-cards .cg-cta {
      margin-top: 44px;
      padding: 30px;
      border-radius: 14px;
      color: #ffffff;
      background: var(--cg-dark);
    }
    #clory-custom-game-cards .cg-cta h2 {
      margin-top: 0;
      color: #ffffff;
    }
    #clory-custom-game-cards .cg-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }
    #clory-custom-game-cards .cg-button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border: 1px solid #ffffff;
      border-radius: 7px;
      color: #ffffff;
      font-weight: 700;
      text-decoration: none;
    }
    #clory-custom-game-cards .cg-button-primary {
      border-color: var(--cg-accent);
      background: var(--cg-accent);
    }
    #clory-custom-game-cards .cg-faq {
      border-top: 1px solid var(--cg-line);
    }
    #clory-custom-game-cards .cg-faq-item {
      border-bottom: 1px solid var(--cg-line);
    }
    #clory-custom-game-cards .cg-faq-question {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 0;
      border: 0;
      color: var(--cg-dark);
      background: transparent;
      font: inherit;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
    }
    #clory-custom-game-cards .cg-faq-icon {
      flex: 0 0 auto;
      color: var(--cg-accent-dark);
      font-size: 26px;
      line-height: 1;
    }
    #clory-custom-game-cards .cg-faq-answer {
      padding: 0 42px 18px 0;
      color: var(--cg-muted);
    }
    @media (max-width: 860px) {
      #clory-custom-game-cards .cg-quick-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      #clory-custom-game-cards .cg-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      #clory-custom-game-cards {
        font-size: 17px;
        line-height: 1.55;
      }
      #clory-custom-game-cards h2 {
        margin-top: 36px;
        font-size: 26px;
      }
      #clory-custom-game-cards .cg-lead { font-size: 18px; }
      #clory-custom-game-cards .cg-grid,
      #clory-custom-game-cards .cg-steps { grid-template-columns: 1fr; }
      #clory-custom-game-cards .cg-quick-facts { gap: 10px; }
      #clory-custom-game-cards .cg-fact { padding: 16px; }
      #clory-custom-game-cards .cg-cta { padding: 24px 20px; }
      #clory-custom-game-cards .cg-button { width: 100%; }
    }
  