:root {
  --kk-black: #080605;
  --kk-ink: #17110d;
  --kk-muted: #67574d;
  --kk-red: #c92512;
  --kk-orange: #e47b0a;
  --kk-gold: #ffd15b;
  --kk-green: #43c678;
  --kk-line: rgba(30, 18, 10, .12);
  --kk-soft: #fff8ee;
  --kk-shadow: 0 18px 42px rgba(56, 25, 7, .12);
  --kk-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body {
  margin: 0;
  color: var(--kk-ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.topbar {
  background: radial-gradient(circle at 75% 0, rgba(255, 196, 64, .16), transparent 26rem), #080706;
  color: #fff;
}
.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; flex-direction: column; gap: 2px; font-weight: 950; letter-spacing: 0; }
.brand-mark {
  display: inline-flex;
  color: transparent;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: .82;
  font-style: italic;
  background: linear-gradient(100deg, #ffdf69 0%, #ffac20 42%, #49c778 55%, #12884d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 4px 0 rgba(73, 18, 2, .7);
}
.brand-sub {
  color: #ffd56b;
  font-size: 13px;
  font-weight: 850;
}
.top-actions, .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--kk-radius);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-gold { color: #170800; background: linear-gradient(180deg, #ffe585, #f8a618); box-shadow: 0 10px 24px rgba(247, 160, 23, .22); }
.button-dark { color: #fff; background: rgba(255, 255, 255, .05); border-color: rgba(255, 202, 80, .55); }

.site-nav {
  background: linear-gradient(180deg, #f49b16, #dc7105);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .24);
}
.nav-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-inner a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  position: relative;
}
.nav-inner a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: #fff063;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-inner a:hover::after, .nav-inner a.is-active::after { transform: scaleX(1); }

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #110403;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 4, 3, .88), rgba(21, 5, 2, .58) 42%, rgba(19, 4, 1, .1) 72%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 62px 0;
}
.hero-copy { max-width: 720px; }
.hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(53, 13, 2, .55);
}
.hero h1 span { color: #ffe16d; }
.hero p { max-width: 590px; margin: 0 0 30px; color: rgba(255, 255, 255, .9); font-size: 18px; }

.main-section { padding: 58px 0 34px; background: #fff; }
.section-title {
  margin: 0 0 20px;
  color: var(--kk-ink);
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--kk-orange), var(--kk-gold));
}
.intro p { max-width: 1060px; margin: 0 0 16px; color: #3c312c; font-size: 16px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.feature-card {
  min-height: 164px;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 26px 20px;
  border: 1px solid var(--kk-line);
  border-radius: var(--kk-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 18, 10, .06);
}
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #d73318, #a81608);
  font-size: 18px;
  font-weight: 950;
}
.feature-card h3 { margin: 16px 0 6px; font-size: 18px; line-height: 1.2; }
.feature-card p { margin: 0; color: var(--kk-muted); font-size: 14px; }

.category-section { padding: 34px 0 38px; background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--kk-line);
  border-radius: var(--kk-radius);
  background: #fff;
  box-shadow: var(--kk-shadow);
}
.category-media { display: block; height: 178px; overflow: hidden; background: #170605; }
.category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover .category-media img { transform: scale(1.05); }
.category-body { min-height: 152px; display: flex; flex-direction: column; padding: 20px; }
.category-body h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.22; }
.category-body p { margin: 0; color: var(--kk-muted); font-size: 14px; }
.card-arrow { align-self: flex-end; margin-top: auto; color: var(--kk-red); font-size: 24px; line-height: 1; }

.news-section { padding: 26px 0 72px; background: #fff; }
.news-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.view-all {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(201, 37, 18, .45);
  border-radius: var(--kk-radius);
  color: var(--kk-red);
  font-weight: 900;
}
.news-list {
  overflow: hidden;
  border: 1px solid rgba(30, 18, 10, .1);
  border-radius: var(--kk-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 18, 10, .08);
}
.news-row {
  display: grid;
  grid-template-columns: 210px 105px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 22px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(30, 18, 10, .08);
}
.news-row:last-child { border-bottom: 0; }
.news-thumb { width: 210px; height: 106px; overflow: hidden; border-radius: 6px; background: #1b0603; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-date { color: var(--kk-muted); font-size: 13px; font-weight: 850; }
.news-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 37, 18, .24);
  border-radius: 999px;
  color: var(--kk-red);
  background: #fff7f2;
  font-size: 12px;
  font-weight: 900;
}
.news-title { margin: 0 0 4px; font-size: 19px; line-height: 1.28; color: var(--kk-ink); }
.news-summary { margin: 0; color: var(--kk-muted); font-size: 14px; }
.news-arrow { color: var(--kk-red); font-size: 28px; }
.pagination-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pagination-wrap a, .pagination-wrap span, .pagination-wrap li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(201, 37, 18, .25);
  border-radius: var(--kk-radius);
  color: var(--kk-red);
}

.footer {
  color: #fff;
  background: radial-gradient(circle at 18% 0, rgba(231, 124, 13, .16), transparent 22rem), #080706;
  border-top: 4px solid var(--kk-orange);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .8fr);
  gap: 54px;
  padding: 56px 0 38px;
}
.footer .brand-mark { font-size: 4.2rem; }
.footer p { margin: 12px 0 0; color: rgba(255, 255, 255, .72); }
.footer h3 { margin: 0 0 16px; color: #fff; font-size: 16px; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; color: rgba(255, 255, 255, .72); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 20px 0; text-align: center; color: rgba(255, 255, 255, .78); }

.article-shell { background: #fff; }
.article-hero {
  padding: 78px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(10, 4, 2, .94), rgba(88, 22, 4, .78)), url("kk55-hero.jpg") center / cover;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--kk-gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.article-hero h1 { max-width: 900px; margin: 0 0 14px; color: #fff8d8; font-size: clamp(2.45rem, 4vw, 4.9rem); line-height: 1.08; }
.article-meta { color: rgba(255, 255, 255, .82); font-size: 16px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; padding-top: 54px; padding-bottom: 74px; }
.article-card, .article-aside {
  border: 1px solid rgba(30, 18, 10, .1);
  border-radius: var(--kk-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 18, 10, .08);
}
.article-card { padding: 34px; }
.article-cover { width: 100%; max-height: 390px; object-fit: cover; border-radius: var(--kk-radius); margin-bottom: 28px; }
.article-content { color: #342824; font-size: 17px; }
.article-content h2, .article-content h3 { color: var(--kk-red); line-height: 1.22; }
.article-content a { color: var(--kk-red); font-weight: 800; }
.article-content img { height: auto; margin: 20px 0; border-radius: var(--kk-radius); }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.article-nav > div { padding: 14px; border: 1px solid rgba(201, 37, 18, .18); border-radius: var(--kk-radius); background: #fff8f0; }
.article-aside { padding: 24px; }
.article-aside h2 { margin: 0 0 14px; color: var(--kk-red); font-size: 20px; line-height: 1.2; }
.article-aside a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(30, 18, 10, .08); font-weight: 850; }
.article-aside a:last-child { border-bottom: 0; }

@media (max-width: 980px) {
  .topbar-inner, .news-head { align-items: flex-start; flex-direction: column; }
  .nav-inner { justify-content: flex-start; overflow-x: auto; }
  .nav-inner a { padding: 0 18px; white-space: nowrap; }
  .feature-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .news-row { grid-template-columns: 146px minmax(0, 1fr) 22px; }
  .news-date { display: none; }
  .news-thumb { width: 146px; height: 82px; }
  .article-layout, .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1240px); }
  .top-actions, .hero-actions { width: 100%; }
  .button { flex: 1 1 auto; min-height: 44px; padding: 0 14px; }
  .brand-mark { font-size: 3rem; }
  .brand-sub { font-size: 12px; }
  .hero, .hero-inner { min-height: 560px; }
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 16px; }
  .main-section { padding: 42px 0 24px; }
  .feature-grid, .category-grid { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 96px minmax(0, 1fr); gap: 14px; padding: 14px; }
  .news-thumb { width: 96px; height: 70px; }
  .news-summary, .news-arrow { display: none; }
  .news-title { font-size: 15px; }
  .article-card, .article-aside { padding: 22px; }
  .article-nav { grid-template-columns: 1fr; }
}
