* {
  box-sizing: border-box;
}

:root {
  --kl99-black: #070707;
  --kl99-black-2: #111111;
  --kl99-ink: #151b25;
  --kl99-muted: #647082;
  --kl99-line: #e4e8ef;
  --kl99-soft: #f6f7f2;
  --kl99-gold: #f5c944;
  --kl99-gold-light: #fff08d;
  --kl99-red: #d81719;
  --kl99-blue: #4d6f9d;
  --kl99-shell: min(1190px, calc(100vw - 48px));
  --kl99-radius: 12px;
  --kl99-shadow: 0 18px 44px rgba(15, 20, 30, 0.14);
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kl99-ink);
  background: var(--kl99-soft);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: #120b00;
  background: rgba(245, 201, 68, 0.45);
}

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

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

.kl99-shell {
  width: var(--kl99-shell);
  margin-inline: auto;
}

.kl99-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: #050505;
}

.kl99-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #181818 0%, #0a0a0a 100%);
}

.kl99-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 72px;
}

.kl99-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.kl99-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 2px solid #2a2a2a;
  border-radius: 8px;
  color: #111;
  background: linear-gradient(145deg, #ffe97c 0%, #f1b11e 46%, #bf1414 100%);
  box-shadow: 0 10px 26px rgba(214, 28, 28, 0.28);
  font-size: 20px;
  font-weight: 1000;
}

.kl99-brand-mark::before {
  content: "";
  position: absolute;
  top: -11px;
  width: 28px;
  height: 18px;
  background: linear-gradient(135deg, transparent 25%, var(--kl99-gold) 26% 42%, transparent 43% 57%, var(--kl99-gold) 58% 74%, transparent 75%);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.35));
}

.kl99-brand-text {
  display: grid;
  min-width: 0;
}

.kl99-brand-text strong {
  display: block;
  color: #e9e8fb;
  font-size: 42px;
  font-weight: 1000;
  line-height: 1;
}

.kl99-brand-text span {
  display: block;
  margin-top: 3px;
  color: #b7bac8;
  font-size: 12px;
}

.kl99-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.kl99-pill,
.kl99-btn,
.kl99-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-family: inherit;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

.kl99-pill {
  min-width: 104px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--kl99-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.kl99-pill.is-gold {
  color: #1a1303;
  background: linear-gradient(180deg, #ffe889 0%, #e1a51d 100%);
}

.kl99-pill:hover,
.kl99-btn:hover,
.kl99-read-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.kl99-nav-wrap {
  background: #030303;
}

.kl99-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 68px;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.kl99-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 68px;
  font-size: 15px;
}

.kl99-nav a.is-active {
  color: #f6ff00;
}

.kl99-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 3px;
  background: #f6ff00;
}

.kl99-hero {
  position: relative;
  min-height: 504px;
  overflow: hidden;
  background: #100804;
  isolation: isolate;
}

.kl99-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("kl99-hero.png") center / cover no-repeat;
}

.kl99-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 3, 2, 0.96), rgba(12, 3, 2, 0.72) 39%, rgba(12, 3, 2, 0.16) 72%),
    radial-gradient(circle at 24% 48%, rgba(255, 217, 73, 0.22), transparent 20rem);
}

.kl99-hero-inner {
  display: grid;
  align-items: center;
  min-height: 504px;
}

.kl99-promo-panel {
  width: min(610px, 100%);
  padding: 32px 0 38px;
}

.kl99-promo-label {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 12px 28px;
  border: 2px solid rgba(255, 230, 112, 0.78);
  border-radius: 999px;
  color: #fff5c5;
  background: linear-gradient(180deg, #1b1b1b 0%, #080808 100%);
  box-shadow: 0 0 22px rgba(255, 205, 55, 0.25);
  font-size: 25px;
  font-weight: 1000;
  text-transform: uppercase;
}

.kl99-promo-main {
  padding: 28px 34px 30px;
  border: 3px solid rgba(255, 225, 94, 0.8);
  border-radius: 20px;
  background: linear-gradient(180deg, #ff2727 0%, #d60d12 56%, #910005 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.kl99-promo-main h1 {
  margin: 0;
  color: #fffbe8;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 5px 0 #8d0506, 0 0 24px rgba(255, 235, 116, 0.42);
}

.kl99-promo-main h1 span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.kl99-promo-main strong {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #fff9a7 0%, #ffc51e 52%, #b36d04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 118px;
}

.kl99-promo-copy {
  max-width: 580px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 17px;
}

.kl99-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.kl99-btn {
  min-width: 170px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  color: #171000;
  background: linear-gradient(180deg, #fff08f 0%, #f1af1d 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  font-size: 14px;
}

.kl99-btn.is-dark {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(13, 13, 13, 0.72);
}

.kl99-intro {
  padding: 42px 0 30px;
  background: #fff;
}

.kl99-copy {
  max-width: 980px;
  margin-inline: auto;
}

.kl99-copy h2 {
  margin: 0 0 16px;
  color: #46505d;
  font-size: 29px;
  line-height: 1.24;
  text-align: center;
}

.kl99-copy h3 {
  margin: 28px 0 12px;
  color: #4a4f58;
  font-size: 26px;
  line-height: 1.25;
}

.kl99-copy p {
  margin: 0 0 17px;
  color: #687386;
  font-size: 16px;
}

.kl99-copy b {
  color: #1a2433;
}

.kl99-feature-band {
  padding: 32px 0 52px;
  background: #fff;
}

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

.kl99-feature-card {
  overflow: hidden;
  border-radius: var(--kl99-radius);
  color: #fff;
  background: #101010;
  box-shadow: 0 20px 44px rgba(25, 30, 45, 0.16);
}

.kl99-feature-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.kl99-feature-card div {
  padding: 18px 20px 22px;
}

.kl99-feature-card h3 {
  margin: 0 0 8px;
  color: #ffe26a;
  font-size: 21px;
  line-height: 1.25;
}

.kl99-feature-card p {
  margin: 0;
  color: #d8dce4;
  font-size: 14px;
}

.kl99-news {
  padding: 52px 0 68px;
  background: var(--kl99-soft);
}

.kl99-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.kl99-section-title h2 {
  margin: 0;
  color: #18202d;
  font-size: 32px;
  line-height: 1.16;
}

.kl99-section-title p {
  max-width: 520px;
  margin: 0;
  color: var(--kl99-muted);
  font-size: 15px;
}

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

.kl99-news-card {
  overflow: hidden;
  border: 1px solid var(--kl99-line);
  border-radius: var(--kl99-radius);
  background: #fff;
  box-shadow: var(--kl99-shadow);
}

.kl99-news-media {
  display: block;
  overflow: hidden;
  background: #111;
}

.kl99-news-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.kl99-news-card:hover img {
  transform: scale(1.03);
}

.kl99-news-body {
  padding: 18px 20px 20px;
}

.kl99-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 4px;
  color: #231400;
  background: #ffe879;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.kl99-news-card h3 {
  margin: 12px 0 9px;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.32;
}

.kl99-news-card p {
  margin: 0 0 14px;
  color: #677281;
  font-size: 14px;
}

.kl99-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #eef1f5;
  color: #7d8794;
  font-size: 12px;
}

.kl99-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  color: #1f2937;
}

.kl99-pagination a,
.kl99-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  margin: 0 3px;
  border: 1px solid #d7dce5;
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}

.kl99-footer {
  border-top: 4px solid #f6ff00;
  color: #cfd4df;
  background: #111;
}

.kl99-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
  min-height: 190px;
  padding: 34px 0;
}

.kl99-footer .kl99-brand-text strong {
  font-size: 36px;
}

.kl99-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.kl99-footer p,
.kl99-footer a,
.kl99-footer li {
  color: #cfd4df;
  font-size: 14px;
}

.kl99-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kl99-footer a:hover {
  color: var(--kl99-gold-light);
}

.kl99-copyright {
  padding: 14px 0;
  color: #8f98a6;
  background: #090909;
  font-size: 13px;
}

.kl99-article-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #100804;
  isolation: isolate;
}

.kl99-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("kl99-hero.png") center / cover no-repeat;
}

.kl99-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 3, 2, 0.95), rgba(8, 3, 2, 0.74) 55%, rgba(8, 3, 2, 0.42));
}

.kl99-article-hero-inner {
  display: grid;
  align-content: center;
  max-width: 940px;
  min-height: 300px;
  padding: 54px 0;
  color: #fff;
}

.kl99-breadcrumb {
  color: var(--kl99-gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.kl99-article-hero h1 {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 1000;
}

.kl99-article-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #f4f0e3;
  font-size: 17px;
}

.kl99-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  padding: 46px 0 72px;
}

.kl99-article-card,
.kl99-side-card {
  border: 1px solid var(--kl99-line);
  border-radius: var(--kl99-radius);
  background: #fff;
  box-shadow: var(--kl99-shadow);
}

.kl99-article-card {
  padding: 42px;
}

.kl99-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  color: #6a7280;
  font-size: 13px;
}

.kl99-article-main-image {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 10px;
  background: #111;
}

.kl99-article-main-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.kl99-article-body {
  color: #343f4e;
  font-size: 17px;
}

.kl99-article-body h2,
.kl99-article-body h3 {
  color: #151b25;
  line-height: 1.24;
}

.kl99-article-body h2 {
  margin: 32px 0 12px;
  font-size: 29px;
}

.kl99-article-body h3 {
  margin: 26px 0 10px;
  font-size: 23px;
}

.kl99-article-body p {
  margin: 0 0 16px;
}

.kl99-article-body ul,
.kl99-article-body ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.kl99-article-body li::marker {
  color: var(--kl99-red);
}

.kl99-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(245, 201, 68, 0.46);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 201, 68, 0.16), rgba(216, 23, 25, 0.07));
}

.kl99-article-cta strong {
  display: block;
  font-size: 18px;
}

.kl99-article-cta span {
  color: var(--kl99-muted);
  font-size: 14px;
}

.kl99-article-actions {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #ecf0f5;
}

.kl99-article-actions ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--kl99-muted);
  font-size: 14px;
}

.kl99-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.kl99-side-card {
  overflow: hidden;
  padding: 18px;
}

.kl99-side-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.kl99-side-card h2,
.kl99-side-card h3 {
  margin: 16px 0 8px;
  color: #171d28;
  line-height: 1.24;
}

.kl99-side-card p,
.kl99-side-card li {
  color: #657184;
  font-size: 14px;
}

.kl99-side-card ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  :root {
    --kl99-shell: min(100vw - 36px, 820px);
  }

  .kl99-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .kl99-account {
    justify-content: flex-start;
    gap: 10px;
  }

  .kl99-nav {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .kl99-nav::-webkit-scrollbar {
    display: none;
  }

  .kl99-nav a {
    flex: 0 0 auto;
  }

  .kl99-hero,
  .kl99-hero-inner {
    min-height: 620px;
  }

  .kl99-hero::after {
    background: linear-gradient(180deg, rgba(12, 3, 2, 0.58), rgba(12, 3, 2, 0.95) 62%);
  }

  .kl99-promo-panel {
    align-self: end;
    padding-bottom: 34px;
  }

  .kl99-promo-label {
    width: 100%;
    padding: 10px 18px;
    font-size: 18px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .kl99-promo-main {
    padding: 20px 22px;
  }

  .kl99-promo-main h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .kl99-promo-main strong {
    font-size: 76px;
  }

  .kl99-promo-copy {
    width: min(100%, 360px);
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .kl99-copy h2 {
    width: min(100%, 520px);
    margin-inline: auto;
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .kl99-copy p,
  .kl99-copy h3 {
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
  }

  .kl99-feature-grid,
  .kl99-news-grid,
  .kl99-footer-grid,
  .kl99-article-layout {
    grid-template-columns: 1fr;
  }

  .kl99-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .kl99-article-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  :root {
    --kl99-shell: min(100vw - 28px, 430px);
  }

  .kl99-brand {
    gap: 12px;
  }

  .kl99-brand-mark {
    width: 48px;
    height: 48px;
  }

  .kl99-brand-text strong {
    font-size: 34px;
  }

  .kl99-pill {
    min-width: 118px;
  }

  .kl99-hero,
  .kl99-hero-inner {
    min-height: 640px;
  }

  .kl99-promo-panel {
    width: min(100%, 340px);
  }

  .kl99-promo-label {
    font-size: 15px;
  }

  .kl99-promo-main h1 {
    font-size: 34px;
  }

  .kl99-promo-main strong {
    font-size: 62px;
  }

  .kl99-btn {
    width: 100%;
  }

  .kl99-feature-card img,
  .kl99-news-card img {
    height: 190px;
  }

  .kl99-footer-grid {
    gap: 26px;
  }

  .kl99-article-hero h1 {
    font-size: 30px;
    max-width: 335px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .kl99-article-hero p {
    max-width: 335px;
    overflow-wrap: anywhere;
  }

  .kl99-article-hero-inner {
    width: min(calc(100vw - 54px), 335px);
    margin-left: 27px;
    margin-right: auto;
  }

  .kl99-article-card {
    padding: 22px;
  }

  .kl99-article-main-image img {
    aspect-ratio: 4 / 3;
  }
}
