:root {
  --fkt-black: #030303;
  --fkt-ink: #080706;
  --fkt-panel: #0e0c09;
  --fkt-panel-soft: #15110b;
  --fkt-gold: #d8ad58;
  --fkt-gold-bright: #f4cf75;
  --fkt-gold-pale: #f5e4b0;
  --fkt-text: #f8f0dc;
  --fkt-muted: #b6aa91;
  --fkt-line: rgba(216, 173, 88, .24);
  --fkt-max: 1220px;
  --fkt-header-h: 74px;
  --fkt-shadow: 0 28px 80px rgba(0, 0, 0, .48);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fkt-black);
  color: var(--fkt-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.fkt-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--fkt-gold-bright);
  text-underline-offset: .18em;
}

a:hover,
a:focus {
  color: #fff0b9;
}

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

::selection {
  background: var(--fkt-gold);
  color: #050505;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.fkt-container {
  width: min(calc(100% - 44px), var(--fkt-max));
  margin-inline: auto;
}

.fkt-site-header {
  position: sticky;
  z-index: 9000;
  top: 0;
  min-height: var(--fkt-header-h);
  border-bottom: 1px solid rgba(216, 173, 88, .16);
  background:
    linear-gradient(90deg, rgba(4, 4, 3, .98), rgba(12, 9, 4, .94) 50%, rgba(4, 4, 3, .98)),
    rgba(3, 3, 3, .94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.admin-bar .fkt-site-header {
  top: 32px;
}

.fkt-header-inner {
  display: grid;
  grid-template-columns: minmax(225px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 38px), 1380px);
  min-height: var(--fkt-header-h);
  margin-inline: auto;
}

.fkt-header-inner::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 207, 117, .62), transparent);
  content: "";
  pointer-events: none;
}

.fkt-brand {
  display: inline-flex;
  min-height: var(--fkt-header-h);
  align-items: center;
  gap: 13px;
  color: var(--fkt-text);
  text-decoration: none;
}

.fkt-brand:hover,
.fkt-brand:focus {
  color: var(--fkt-text);
}

.fkt-brand-logo {
  display: block;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid rgba(244, 207, 117, .52);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(216, 173, 88, .18);
}

.fkt-brand-copy {
  display: flex;
  min-height: 52px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  transform: none;
}

.fkt-brand-copy strong {
  color: var(--fkt-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.fkt-brand-copy small {
  margin-top: 0;
  color: var(--fkt-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.15;
  text-transform: uppercase;
}

.fkt-primary-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  min-height: var(--fkt-header-h);
}

.fkt-menu,
.fkt-menu ul,
.fkt-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fkt-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fkt-menu > li {
  position: relative;
}

.fkt-menu a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: #d9ceb7;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.fkt-menu a:hover,
.fkt-menu a:focus,
.fkt-menu .current-menu-item > a,
.fkt-menu .current_page_item > a {
  color: var(--fkt-gold-bright);
}

.fkt-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 210px;
  padding: 9px;
  border: 1px solid var(--fkt-line);
  border-radius: 10px;
  background: #090806;
  box-shadow: var(--fkt-shadow);
}

.fkt-menu li:hover > .sub-menu,
.fkt-menu li:focus-within > .sub-menu {
  display: block;
}

.fkt-member-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  min-height: var(--fkt-header-h);
}

.fkt-text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--fkt-gold-pale);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.fkt-small-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 17px;
  border: 1px solid var(--fkt-gold);
  border-radius: 999px;
  color: #080603;
  background: linear-gradient(135deg, #f5d885, #c88c27);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.fkt-small-button:hover,
.fkt-small-button:focus {
  color: #000;
  background: linear-gradient(135deg, #fff0b6, #e2ac45);
}

.fkt-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--fkt-line);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.fkt-menu-toggle span[aria-hidden] {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--fkt-gold-bright);
}

.fkt-hero {
  position: relative;
  min-height: min(835px, calc(100vh - var(--fkt-header-h)));
  overflow: hidden;
  border-bottom: 1px solid var(--fkt-line);
  background: #020202;
  isolation: isolate;
}

.fkt-hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.fkt-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.94) contrast(1.04);
}

.fkt-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .91) 27%, rgba(0, 0, 0, .58) 50%, rgba(0, 0, 0, .1) 76%, rgba(0, 0, 0, .03) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .54), transparent 32%, rgba(0, 0, 0, .18));
  content: "";
}

.fkt-hero::before,
.fkt-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.fkt-hero::before {
  top: -15%;
  left: -8%;
  width: 53%;
  height: 100%;
  border: 1px solid rgba(216, 173, 88, .12);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(214, 154, 43, .075), transparent 64%);
  transform: none;
}

.fkt-hero::after {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fkt-gold));
}

.fkt-hero-glow {
  position: absolute;
  top: 50%;
  left: 13%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(210, 153, 39, .1);
  filter: blur(90px);
  transform: translateY(-50%);
}

.fkt-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  min-height: min(835px, calc(100vh - var(--fkt-header-h)));
  padding-block: 90px;
}

.fkt-hero-content {
  position: relative;
  padding: clamp(26px, 4vw, 52px) 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .9);
}

.fkt-dubai-seal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 27px;
  border: 1px solid rgba(55, 177, 130, .34);
  border-radius: 999px;
  color: #b6ead2;
  background: rgba(7, 71, 51, .2);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.fkt-dubai-seal span {
  color: #3cc392;
  font-size: 8px;
  text-shadow: 0 0 12px rgba(60, 195, 146, .8);
}

.fkt-eyebrow {
  margin: 0 0 21px;
  color: var(--fkt-gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fkt-hero h1,
.fkt-section-heading h2,
.fkt-members-content h2,
.fkt-responsible-inner h2,
.fkt-entry-header h1,
.fkt-plugin-required h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.fkt-hero h1 {
  max-width: 760px;
  font-size: clamp(55px, 5.9vw, 90px);
  letter-spacing: -.045em;
}

.fkt-hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #d8cbb2;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
}

.fkt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.fkt-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.fkt-button:hover,
.fkt-button:focus {
  transform: translateY(-2px);
}

.fkt-button-primary {
  border-color: #f3d582;
  color: #080603;
  background: linear-gradient(135deg, #ffe9a5 0%, #d6a13e 56%, #b87613 100%);
  box-shadow: 0 13px 32px rgba(202, 142, 31, .2), inset 0 1px rgba(255, 255, 255, .52);
}

.fkt-button-primary:hover,
.fkt-button-primary:focus {
  color: #000;
  background: linear-gradient(135deg, #fff2bf, #e6b958);
}

.fkt-button-ghost {
  border-color: rgba(216, 173, 88, .38);
  color: var(--fkt-gold-pale);
  background: rgba(216, 173, 88, .045);
}

.fkt-button-ghost:hover,
.fkt-button-ghost:focus {
  border-color: var(--fkt-gold);
  color: #fff2c5;
  background: rgba(216, 173, 88, .12);
}

.fkt-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 39px 0 0;
  color: #8f846f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  list-style: none;
  text-transform: uppercase;
}

.fkt-hero-notes li {
  position: relative;
  padding-left: 15px;
}

.fkt-hero-notes li::before {
  position: absolute;
  top: .52em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fkt-gold);
  box-shadow: 0 0 10px var(--fkt-gold);
  content: "";
}

.fkt-dubai-signature {
  position: relative;
  border-bottom: 1px solid var(--fkt-line);
  background:
    linear-gradient(90deg, rgba(9, 64, 47, .23), transparent 32%),
    repeating-linear-gradient(135deg, transparent 0 31px, rgba(216, 173, 88, .022) 31px 32px),
    #080705;
}

.fkt-dubai-signature::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8922e 50%, transparent);
  content: "";
}

.fkt-signature-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 70px;
  padding-block: 48px;
}

.fkt-signature-copy .fkt-eyebrow {
  margin-bottom: 10px;
}

.fkt-signature-copy h2 {
  max-width: 600px;
  margin: 0;
  color: #f5ead2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 500;
  line-height: 1.18;
}

.fkt-signature-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 1px solid rgba(216, 173, 88, .16);
  border-radius: 16px;
  background: rgba(0, 0, 0, .26);
}

.fkt-signature-facts > div {
  min-width: 0;
  padding: 21px 20px;
}

.fkt-signature-facts > div + div {
  border-left: 1px solid rgba(216, 173, 88, .16);
}

.fkt-signature-facts dt {
  margin-bottom: 5px;
  color: #897b62;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fkt-signature-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--fkt-gold-pale);
  font-family: Georgia, serif;
  font-size: 17px;
}

.fkt-hero-emblem {
  position: relative;
  justify-self: center;
  width: min(100%, 510px);
  padding: 34px 34px 28px;
  border: 1px solid rgba(238, 198, 105, .28);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(25, 18, 8, .58), rgba(3, 3, 3, .88));
  box-shadow: 0 36px 100px rgba(0, 0, 0, .64), inset 0 1px rgba(255, 237, 180, .1);
  isolation: isolate;
}

.fkt-hero-emblem::before {
  position: absolute;
  z-index: -1;
  inset: -14px;
  border: 1px solid rgba(216, 173, 88, .09);
  border-radius: 44px;
  content: "";
}

.fkt-hero-emblem img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
}

.fkt-emblem-orbit {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 13%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff3b2;
  box-shadow: 0 0 8px 2px #f5b926, 0 0 25px 10px rgba(245, 185, 38, .42);
}

.fkt-emblem-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 2px 0;
  text-transform: uppercase;
}

.fkt-emblem-caption span {
  color: var(--fkt-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.fkt-emblem-caption strong {
  color: var(--fkt-gold-bright);
  font-size: 11px;
  letter-spacing: .09em;
}

.fkt-section {
  padding-block: clamp(78px, 10vw, 140px);
}

.fkt-games-section {
  background:
    radial-gradient(circle at 50% 0, rgba(216, 173, 88, .09), transparent 34%),
    linear-gradient(90deg, rgba(8, 61, 45, .045), transparent 25%, transparent 75%, rgba(8, 61, 45, .045)),
    var(--fkt-black);
}

.fkt-section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.fkt-section-heading h2,
.fkt-members-content h2,
.fkt-responsible-inner h2 {
  font-size: clamp(40px, 5vw, 67px);
  letter-spacing: -.035em;
}

.fkt-section-heading > p:last-child,
.fkt-members-content > p:not(.fkt-eyebrow),
.fkt-responsible-inner > div:last-child p {
  color: var(--fkt-muted);
  font-size: 18px;
}

.fkt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fkt-feature-card {
  position: relative;
  min-height: 420px;
  padding: 38px 34px 32px;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 88, .18);
  border-radius: 100px 100px 22px 22px;
  background: linear-gradient(150deg, rgba(22, 18, 11, .78), rgba(8, 7, 5, .92));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
  transition: transform .25s ease, border-color .25s ease;
}

.fkt-feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(216, 173, 88, .13);
  border-radius: 50%;
  content: "";
}

.fkt-feature-card:hover {
  border-color: rgba(244, 207, 117, .48);
  transform: translateY(-5px);
}

.fkt-feature-card-highlight {
  background:
    radial-gradient(circle at 70% 25%, rgba(50, 180, 132, .12), transparent 31%),
    radial-gradient(circle at 35% 25%, rgba(216, 173, 88, .18), transparent 38%),
    linear-gradient(150deg, #1c1509, #090704);
}

.fkt-card-number {
  color: #675b44;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.fkt-card-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 46px 0 30px;
  border: 1px solid rgba(244, 207, 117, .38);
  border-radius: 50%;
  place-items: center;
  color: var(--fkt-gold-bright);
  background: rgba(216, 173, 88, .06);
  font-family: Georgia, serif;
  font-size: 31px;
  box-shadow: inset 0 0 20px rgba(216, 173, 88, .06);
}

.fkt-feature-card h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.fkt-feature-card p {
  margin: 0 0 25px;
  color: var(--fkt-muted);
}

.fkt-feature-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  color: var(--fkt-gold-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.fkt-members-section {
  border-block: 1px solid var(--fkt-line);
  background:
    linear-gradient(90deg, rgba(216, 173, 88, .04), transparent 35%),
    #070605;
}

.fkt-members-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.fkt-members-mark {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 207, 117, .37);
  border-radius: 50%;
  place-items: center;
  background: radial-gradient(circle, rgba(216, 173, 88, .13), rgba(0, 0, 0, .1) 62%);
  box-shadow: inset 0 0 65px rgba(216, 173, 88, .05), var(--fkt-shadow);
}

.fkt-members-mark::before,
.fkt-members-mark::after {
  position: absolute;
  border: 1px solid rgba(216, 173, 88, .13);
  border-radius: 50%;
  content: "";
}

.fkt-members-mark::before { inset: 7%; }
.fkt-members-mark::after { inset: -6%; }

.fkt-members-mark span {
  color: var(--fkt-gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(110px, 15vw, 210px);
  line-height: 1;
  text-shadow: 0 0 30px rgba(216, 173, 88, .22);
}

.fkt-members-content {
  max-width: 670px;
}

.fkt-members-content > p:not(.fkt-eyebrow) {
  max-width: 620px;
  margin-top: 28px;
}

.fkt-responsible-section {
  padding-block: 78px;
  background: #050505;
}

.fkt-responsible-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
  padding: 55px;
  border: 1px solid rgba(216, 173, 88, .18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(21, 17, 10, .72), rgba(7, 6, 5, .8));
}

.fkt-responsible-inner h2 {
  font-size: clamp(35px, 4vw, 53px);
}

.fkt-responsible-inner > div:last-child p {
  margin: 0;
  font-size: 16px;
}

.fkt-site-footer {
  border-top: 1px solid rgba(216, 173, 88, .18);
  background: #020202;
}

.fkt-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 60px;
  width: min(calc(100% - 44px), var(--fkt-max));
  padding-block: 48px;
  margin-inline: auto;
}

.fkt-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fkt-footer-brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216, 173, 88, .35);
  border-radius: 50%;
  object-fit: cover;
}

.fkt-footer-brand div {
  display: flex;
  flex-direction: column;
}

.fkt-footer-brand strong {
  color: var(--fkt-gold-bright);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.fkt-footer-brand span {
  color: #776f60;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.fkt-footer-nav {
  align-self: center;
}

.fkt-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 19px;
}

.fkt-footer-menu a {
  color: #a59b88;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fkt-footer-menu a:hover,
.fkt-footer-menu a:focus {
  color: var(--fkt-gold-bright);
}

.fkt-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #17140f;
  color: #6e675a;
  font-size: 12px;
}

.fkt-footer-meta p {
  margin: 0;
}

.fkt-content-main,
.fkt-error-main {
  min-height: 65vh;
  padding-block: clamp(70px, 9vw, 125px);
  background: radial-gradient(circle at 50% 0, rgba(216, 173, 88, .07), transparent 28%);
}

.fkt-reading-width {
  max-width: 860px;
}

.fkt-entry-header {
  padding-bottom: 35px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--fkt-line);
}

.fkt-entry-header h1,
.fkt-plugin-required h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.fkt-entry-content {
  color: #d2c8b4;
  font-size: 17px;
}

.fkt-entry-content h2,
.fkt-entry-content h3,
.fkt-entry-content h4 {
  color: var(--fkt-text);
  font-family: Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

.fkt-entry-content h2 { font-size: 38px; }
.fkt-entry-content h3 { font-size: 29px; }

.fkt-entry-content blockquote {
  padding: 4px 0 4px 25px;
  margin-left: 0;
  border-left: 2px solid var(--fkt-gold);
  color: var(--fkt-gold-pale);
  font-family: Georgia, serif;
  font-size: 23px;
}

.fkt-entry-content input,
.fkt-entry-content textarea,
.fkt-entry-content select,
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--fkt-line);
  border-radius: 8px;
  color: var(--fkt-text);
  background: #0b0907;
}

.fkt-entry-content button,
.fkt-entry-content input[type="submit"],
.comment-form input[type="submit"] {
  width: auto;
  padding: 11px 19px;
  border: 1px solid var(--fkt-gold);
  border-radius: 999px;
  color: #050505;
  background: var(--fkt-gold);
  font-weight: 800;
}

.fkt-featured-image {
  margin-bottom: 40px;
}

.fkt-featured-image img {
  display: block;
  width: 100%;
  border: 1px solid var(--fkt-line);
  border-radius: 18px;
}

.fkt-post-list {
  display: grid;
  gap: 18px;
}

.fkt-post-card {
  padding: 28px;
  border: 1px solid var(--fkt-line);
  border-radius: 16px;
  background: var(--fkt-panel);
}

.fkt-post-card h2 {
  margin: 4px 0 12px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.fkt-post-card h2 a {
  color: var(--fkt-text);
  text-decoration: none;
}

.fkt-post-date {
  color: var(--fkt-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fkt-plugin-required {
  width: min(calc(100% - 44px), 760px);
  padding: 70px 38px;
  margin: 70px auto;
  border: 1px solid var(--fkt-line);
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(145deg, #151009, #060504);
  box-shadow: var(--fkt-shadow);
}

.fkt-plugin-required img {
  width: 170px;
  height: 170px;
  margin-bottom: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.fkt-plugin-required p:not(.fkt-eyebrow) {
  max-width: 560px;
  margin: 22px auto 30px;
  color: var(--fkt-muted);
  font-size: 18px;
}

.fkt-casino-main {
  min-height: 70vh;
  overflow: hidden;
  background: #000;
}

.fkt-casino-main > .svgcp-app,
.fkt-casino-main .svgcp-app {
  margin-top: 0 !important;
}

.fkt-casino-route .fkt-site-footer {
  position: relative;
  z-index: 2;
}

.navigation.pagination,
.post-navigation {
  margin-top: 36px;
}

.nav-links {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.nav-links a,
.nav-links .current {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid var(--fkt-line);
  border-radius: 8px;
  text-decoration: none;
}

.comments-area {
  padding-top: 50px;
}

@media (max-width: 1120px) {
  .fkt-header-inner {
    grid-template-columns: auto auto 1fr;
  }

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

  .fkt-primary-nav {
    position: fixed;
    z-index: 8999;
    top: var(--fkt-header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 30px 22px;
    background: rgba(3, 3, 3, .98);
    overflow-y: auto;
  }

  .admin-bar .fkt-primary-nav {
    top: calc(var(--fkt-header-h) + 32px);
  }

  .fkt-primary-nav.is-open {
    display: block;
  }

  .fkt-menu {
    display: block;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .fkt-menu a {
    padding: 17px 5px;
    border-bottom: 1px solid #1c1811;
    font-size: 14px;
  }

  .fkt-menu .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 20px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .fkt-member-actions {
    justify-self: end;
  }

  .fkt-hero-grid {
    grid-template-columns: minmax(0, 610px) 1fr;
  }

  .fkt-signature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 850px) {
  :root { --fkt-header-h: 70px; }

  .admin-bar .fkt-site-header { top: 46px; }
  .admin-bar .fkt-primary-nav { top: calc(var(--fkt-header-h) + 46px); }

  .fkt-header-inner {
    grid-template-columns: 1fr auto;
    gap: 13px;
    min-height: var(--fkt-header-h);
  }

  .fkt-brand-logo {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .fkt-brand-copy strong { font-size: 16px; }
  .fkt-brand-copy small { font-size: 8px; }

  .fkt-menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .fkt-member-actions {
    display: none;
  }

  .fkt-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 72px;
  }

  .fkt-hero-media img {
    object-position: 70% center;
  }

  .fkt-hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .42)),
      linear-gradient(0deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .28) 55%, rgba(0, 0, 0, .6));
  }

  .fkt-hero-content {
    text-align: center;
  }

  .fkt-dubai-seal {
    margin-inline: auto;
  }

  .fkt-hero h1,
  .fkt-hero-lede {
    margin-inline: auto;
  }

  .fkt-hero-actions,
  .fkt-hero-notes {
    justify-content: center;
  }

  .fkt-hero-emblem {
    width: min(100%, 470px);
  }

  .fkt-feature-grid {
    grid-template-columns: 1fr;
  }

  .fkt-signature-facts {
    grid-template-columns: 1fr;
  }

  .fkt-signature-facts > div + div {
    border-top: 1px solid rgba(216, 173, 88, .16);
    border-left: 0;
  }

  .fkt-feature-card {
    min-height: 0;
  }

  .fkt-members-grid {
    grid-template-columns: 1fr;
  }

  .fkt-members-mark {
    width: min(72vw, 370px);
    margin-inline: auto;
  }

  .fkt-members-content {
    text-align: center;
    margin-inline: auto;
  }

  .fkt-members-content .fkt-hero-actions {
    justify-content: center;
  }

  .fkt-responsible-inner {
    grid-template-columns: 1fr;
    padding: 38px 30px;
  }

  .fkt-footer-inner {
    grid-template-columns: 1fr;
  }

  .fkt-footer-menu {
    justify-content: flex-start;
  }

  .fkt-footer-meta {
    grid-column: auto;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .fkt-container,
  .fkt-footer-inner {
    width: min(calc(100% - 30px), var(--fkt-max));
  }

  .fkt-header-inner {
    width: calc(100% - 24px);
  }

  .fkt-brand-copy small {
    display: none;
  }

  .fkt-hero-grid {
    padding-block: 55px 70px;
  }

  .fkt-hero-media img {
    object-position: 72% center;
  }

  .fkt-hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .fkt-hero-actions {
    flex-direction: column;
  }

  .fkt-button {
    width: 100%;
  }

  .fkt-hero-notes {
    gap: 10px 17px;
  }

  .fkt-hero-emblem {
    padding: 17px 17px 21px;
    border-radius: 23px;
  }

  .fkt-hero-emblem img {
    border-radius: 16px;
  }

  .fkt-emblem-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .fkt-section {
    padding-block: 72px;
  }

  .fkt-feature-card {
    padding: 29px 25px;
    border-radius: 72px 72px 20px 20px;
  }

  .fkt-card-symbol {
    margin-block: 32px 24px;
  }

  .fkt-responsible-section {
    padding-block: 50px;
  }

  .fkt-responsible-inner {
    width: calc(100% - 30px);
    padding: 30px 22px;
  }

  .fkt-plugin-required {
    width: calc(100% - 30px);
    padding: 48px 23px;
    margin-block: 40px;
  }

  .fkt-plugin-required img {
    width: 130px;
    height: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
