:root {
  --pkw-black: #050b13;
  --pkw-navy: #061735;
  --pkw-navy-2: #0b2b5c;
  --pkw-blue: #083a78;
  --pkw-red: #d80610;
  --pkw-red-2: #a80008;
  --pkw-gold: #ffb52b;
  --pkw-gold-2: #ff8e18;
  --pkw-text: #0a2144;
  --pkw-muted: #66758c;
  --pkw-line: #dbe4f0;
  --pkw-soft: #f5f8fc;
  --pkw-white: #ffffff;
  --pkw-shadow: 0 18px 50px rgba(7, 24, 55, .14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--pkw-soft);
}

body.pkw-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--pkw-soft);
  color: var(--pkw-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.pkw-page a {
  color: inherit;
  text-decoration: none;
}

.pkw-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.pkw-top {
  background: linear-gradient(180deg, #07111e, #02070d);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 700;
}

.pkw-top .pkw-shell {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pkw-top-left,
.pkw-top-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.pkw-top-ico,
.pkw-status-dot {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  color: var(--pkw-gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.pkw-status-dot::before {
  content: "●";
}

.pkw-header {
  background: #fff;
  color: var(--pkw-text);
  box-shadow: 0 8px 24px rgba(7, 18, 34, .08);
  position: relative;
  z-index: 5;
}

.pkw-header-main {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pkw-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.pkw-logo-word {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-style: italic;
  letter-spacing: 0;
}

.pkw-logo-word .pk {
  color: #1687ee;
  font-size: 50px;
  font-weight: 900;
}

.pkw-logo-word .win {
  color: var(--pkw-gold-2);
  font-size: 50px;
  font-weight: 900;
}

.pkw-brand small,
.pkw-brand-text span {
  margin-top: 5px;
  color: var(--pkw-text);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pkw-mark,
.pkw-brand-text strong {
  display: none;
}

.pkw-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pkw-btn,
.pkw-action {
  min-height: 52px;
  min-width: 118px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.pkw-action-primary,
.pkw-btn-red {
  color: #fff;
  background: linear-gradient(180deg, #f21823, #ae0008);
  box-shadow: 0 14px 28px rgba(216, 6, 16, .26);
}

.pkw-action-dark {
  color: var(--pkw-red);
  background: #fff;
  border-color: rgba(216, 6, 16, .45);
}

.pkw-btn-gold {
  color: #1f1300;
  background: linear-gradient(180deg, #ffd25a, #ff9e16);
  box-shadow: 0 12px 26px rgba(255, 158, 22, .3);
}

.pkw-btn-outline {
  color: #fff;
  border-color: rgba(255, 181, 43, .9);
  background: rgba(0, 0, 0, .1);
}

.pkw-nav-wrap {
  background: linear-gradient(180deg, #e00912, #b40008);
  border-bottom: 2px solid rgba(255, 181, 43, .55);
}

.pkw-nav {
  min-height: 40px;
  display: flex;
  align-items: center;
}

.pkw-nav a {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkw-nav a.active {
  background: rgba(86, 0, 0, .22);
}

.pkw-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--pkw-gold);
}

.pkw-home-ico {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.pkw-home-ico::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 15px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
}

.pkw-home-ico::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.pkw-hero {
  min-height: 365px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 82%, rgba(0, 110, 255, .45), transparent 18%),
    radial-gradient(circle at 64% 28%, rgba(17, 84, 170, .42), transparent 22%),
    linear-gradient(135deg, #050912 0%, #071326 50%, #02050b 100%);
}

.pkw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 62%, rgba(0, 116, 255, .15) 62.2% 63%, transparent 63.2%),
    repeating-linear-gradient(125deg, rgba(29, 90, 170, .1) 0 1px, transparent 1px 26px);
  opacity: .75;
}

.pkw-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -70px;
  width: 58%;
  height: 230px;
  background: radial-gradient(ellipse at right, rgba(0, 119, 255, .45), transparent 65%);
  transform: skewY(-8deg);
}

.pkw-hero-grid {
  min-height: 365px;
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pkw-hero-copy {
  padding: 38px 0 76px;
}

.pkw-hero-kicker {
  display: none;
}

.pkw-hero h1 {
  margin: 0 0 18px;
  max-width: 620px;
  color: #fff;
  font-size: 57px;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}

.pkw-hero h1 .gold {
  display: block;
  color: var(--pkw-gold);
  font-size: 62px;
}

.pkw-title-main {
  display: block;
}

.pkw-hero p {
  margin: 0;
  max-width: 610px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.pkw-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.pkw-hero-actions .pkw-btn {
  min-width: 194px;
  height: 60px;
  border-radius: 7px;
}

.pkw-hero-trust {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.pkw-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.pkw-hero-trust i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #08172f;
  background: var(--pkw-gold);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.pkw-hero-points {
  display: none;
}

.pkw-visual {
  min-height: 365px;
  position: relative;
  display: grid;
  place-items: center;
}

.pkw-hero-img {
  width: min(560px, 112%);
  max-width: none;
  height: auto;
  position: absolute;
  right: -22px;
  top: 0;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, .32));
}

.pkw-phone {
  width: 238px;
  height: 392px;
  position: absolute;
  left: 78px;
  top: 48px;
  z-index: 4;
  border: 8px solid #22262e;
  border-radius: 34px;
  background: #050b15;
  box-shadow: 0 28px 50px rgba(0, 0, 0, .58), inset 0 0 0 2px rgba(255, 255, 255, .15);
  transform: rotate(7deg);
  overflow: hidden;
}

.pkw-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 83px;
  right: 83px;
  height: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .34);
  z-index: 2;
}

.pkw-phone-screen {
  position: absolute;
  inset: 25px 13px 16px;
  padding: 24px 15px;
  border-radius: 25px;
  background: linear-gradient(180deg, #0a1322, #111d2c);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pkw-phone-logo {
  margin: 4px 0 20px;
  text-align: center;
  font-style: italic;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.pkw-phone-logo .pk {
  color: #1687ee;
}

.pkw-phone-logo .win {
  color: var(--pkw-gold-2);
}

.pkw-phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.pkw-phone-actions span {
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #111e30;
  font-size: 12px;
  font-weight: 900;
}

.pkw-phone-actions span:nth-child(2) {
  background: var(--pkw-red);
}

.pkw-phone-menu {
  display: grid;
  gap: 10px;
}

.pkw-phone-menu span {
  height: 34px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  color: #fff;
  background: #111c2d;
  font-size: 12px;
  font-weight: 800;
}

.pkw-phone-menu span::after {
  content: "›";
  color: rgba(255, 255, 255, .55);
}

.pkw-cards {
  width: 270px;
  height: 250px;
  position: absolute;
  right: 0;
  top: 142px;
  z-index: 2;
}

.pkw-card {
  width: 132px;
  height: 190px;
  position: absolute;
  top: 0;
  border-radius: 12px;
  background: #fff;
  color: #080d16;
  box-shadow: 0 18px 28px rgba(0, 0, 0, .26);
}

.pkw-card::before {
  position: absolute;
  left: 15px;
  top: 18px;
  font-size: 38px;
  font-weight: 900;
}

.pkw-card::after {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}

.pkw-card.card-a {
  left: 0;
  transform: rotate(-11deg);
}

.pkw-card.card-a::before {
  content: "A";
}

.pkw-card.card-a::after {
  content: "♠";
}

.pkw-card.card-k {
  left: 72px;
  transform: rotate(4deg);
}

.pkw-card.card-k::before {
  content: "K";
}

.pkw-card.card-k::after {
  content: "♣";
}

.pkw-card.card-q {
  left: 138px;
  color: var(--pkw-red);
  transform: rotate(13deg);
}

.pkw-card.card-q::before {
  content: "Q";
}

.pkw-card.card-q::after {
  content: "♥";
}

.pkw-chip-stack {
  width: 270px;
  height: 128px;
  position: absolute;
  right: 8px;
  bottom: 70px;
  z-index: 5;
}

.pkw-chip {
  position: absolute;
  width: 116px;
  height: 32px;
  border-radius: 50%;
  border: 8px dashed rgba(255, 255, 255, .78);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .34);
}

.pkw-chip::before {
  content: "";
  position: absolute;
  inset: 7px 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
}

.pkw-chip.blue {
  left: 0;
  bottom: 40px;
  background: #1156b9;
}

.pkw-chip.red {
  left: 88px;
  bottom: 22px;
  background: #c61b18;
}

.pkw-chip.black {
  right: 0;
  bottom: 6px;
  background: #1e232a;
}

.pkw-visual-base {
  position: absolute;
  left: 55px;
  right: 5px;
  bottom: 44px;
  height: 96px;
  background: radial-gradient(ellipse at center, rgba(0, 119, 255, .4), transparent 68%);
  filter: blur(4px);
  transform: rotate(-6deg);
}

.pkw-main-wrap {
  background: linear-gradient(180deg, #fff 0, #f6f9fd 100%);
}

.pkw-overview-card {
  margin-top: -64px;
  position: relative;
  z-index: 3;
  padding: 22px;
  display: grid;
  grid-template-columns: 110px minmax(260px, 1fr) 530px;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--pkw-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--pkw-shadow);
}

.pkw-overview-badge {
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #154c95, #08264c);
  font-size: 35px;
  line-height: .95;
  font-style: italic;
  font-weight: 900;
}

.pkw-overview-badge span:last-child {
  color: var(--pkw-gold-2);
}

.pkw-overview-copy h2 {
  margin: 0 0 8px;
  color: var(--pkw-text);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
}

.pkw-overview-copy p {
  margin: 0;
  color: #41516a;
  font-size: 13px;
  font-weight: 700;
}

.pkw-overview-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.pkw-cat-mini {
  min-height: 102px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  text-align: center;
}

.pkw-cat-mini i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #154c95, #09275a);
  font-style: normal;
  font-size: 26px;
  font-weight: 900;
}

.pkw-cat-mini strong {
  margin-top: 4px;
  color: var(--pkw-text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pkw-cat-mini span {
  color: var(--pkw-muted);
  font-size: 11px;
  font-weight: 700;
}

.pkw-section {
  padding: 26px 0;
}

.pkw-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pkw-banner {
  min-height: 116px;
  padding: 22px 34px 22px 24px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #07306c, #061735);
  box-shadow: 0 12px 28px rgba(7, 24, 55, .1);
}

.pkw-banner.red {
  background: linear-gradient(135deg, #b60008, #e05000);
}

.pkw-banner-icon,
.pkw-info-icon,
.pkw-help-icon,
.pkw-step-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.pkw-banner-icon {
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 10px;
  font-size: 36px;
}

.pkw-banner h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
}

.pkw-banner.red h3 {
  color: var(--pkw-gold);
}

.pkw-banner p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.pkw-banner .pkw-btn {
  min-width: 120px;
  min-height: 46px;
  font-size: 14px;
  white-space: nowrap;
}

.pkw-panel {
  padding: 24px;
  border: 1px solid var(--pkw-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(7, 24, 55, .08);
}

.pkw-panel-title {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pkw-text);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.pkw-panel-title::before {
  content: "";
  width: 5px;
  height: 24px;
  border-radius: 4px;
  background: #0b4f9f;
}

.pkw-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pkw-info-card {
  min-height: 128px;
  padding: 22px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--pkw-line);
  border-radius: 8px;
  background: #fff;
}

.pkw-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(145deg, #0f56aa, #061f45);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, .12);
  font-size: 34px;
}

.pkw-info-icon.orange {
  background: linear-gradient(145deg, #ff8e18, #d94405);
}

.pkw-info-card h3 {
  margin: 0 0 6px;
  color: var(--pkw-text);
  font-size: 18px;
  line-height: 1.2;
}

.pkw-info-card p {
  margin: 0;
  color: #4a5a72;
  font-size: 14px;
  font-weight: 700;
}

.pkw-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 24px;
}

.pkw-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pkw-news-card {
  min-height: 312px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--pkw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 24, 55, .08);
}

.pkw-news-media {
  height: 128px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 35%, rgba(0, 118, 255, .28), transparent 25%),
    linear-gradient(135deg, #04132b, #0a2c69);
}

.pkw-news-media img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: block;
  object-fit: cover;
}

.pkw-news-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 18px);
  opacity: .5;
}

.pkw-news-symbol {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 28%, #4ab6ff, #0a4a9b 58%, #052a65 60%);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .72), 0 16px 22px rgba(0, 0, 0, .2);
  font-size: 42px;
  font-weight: 900;
}

.pkw-news-symbol.lock,
.pkw-news-symbol.gift {
  border-radius: 18px;
  background: linear-gradient(145deg, var(--pkw-gold), #d16a00);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .4), 0 16px 22px rgba(0, 0, 0, .2);
}

.pkw-news-symbol.phone {
  width: 58px;
  height: 96px;
  border-radius: 12px;
  background: linear-gradient(160deg, #0a1322, #132b54);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .1), 0 16px 22px rgba(0, 0, 0, .2);
  transform: rotate(-12deg);
}

.pkw-news-symbol.wallet {
  width: 86px;
  height: 60px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2d2016, #090b10);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .1), 0 16px 22px rgba(0, 0, 0, .2);
}

.pkw-news-symbol.shield {
  border-radius: 24px 24px 38px 38px;
  background: linear-gradient(145deg, #0f56aa, #06275a);
}

.pkw-card-rank {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--pkw-red);
  font-weight: 900;
}

.pkw-news-body {
  padding: 14px 14px 16px;
}

.pkw-news-body h3 {
  margin: 0 0 8px;
  color: #0b1f3f;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.pkw-news-body p {
  margin: 0 0 12px;
  color: #56657b;
  font-size: 13px;
  font-weight: 700;
}

.pkw-date {
  color: #5d6b7d;
  font-size: 12px;
  font-weight: 800;
}

.pkw-popular-panel {
  padding: 22px;
  border-left: 1px solid var(--pkw-line);
}

.pkw-popular-panel h3 {
  margin: 0 0 20px;
  color: var(--pkw-text);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.pkw-popular {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.pkw-popular li,
.pkw-popular a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #10284c;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.pkw-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--pkw-red);
  font-weight: 900;
}

.pkw-more-btn {
  min-height: 44px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(216, 6, 16, .35);
  border-radius: 8px;
  color: var(--pkw-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pkw-steps-panel {
  padding: 22px 26px 26px;
}

.pkw-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px;
  position: relative;
  padding: 18px 32px 0;
}

.pkw-steps::before {
  content: "";
  position: absolute;
  left: 165px;
  right: 165px;
  top: 92px;
  border-top: 2px dashed #8da1bb;
}

.pkw-step-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid var(--pkw-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.pkw-step-icon {
  width: 58px;
  height: 58px;
  color: #06204b;
  font-size: 46px;
}

.pkw-step-card .pkw-step-num {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #061d42;
  font-size: 11px;
  font-weight: 900;
}

.pkw-step-card h3 {
  margin: 0;
  color: var(--pkw-text);
  font-size: 14px;
  line-height: 1.2;
}

.pkw-step-card p {
  margin: 0;
  color: var(--pkw-muted);
  font-size: 12px;
  font-weight: 700;
}

.pkw-faq-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
}

.pkw-faq-list {
  display: grid;
  gap: 8px;
}

.pkw-faq-row {
  min-height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--pkw-line);
  border-radius: 5px;
  color: #10284c;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.pkw-help-card {
  min-height: 160px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #08214b, #0a3f84);
}

.pkw-help-icon {
  width: 92px;
  height: 92px;
  border: 10px solid rgba(255, 255, 255, .82);
  border-bottom-color: transparent;
  border-radius: 50%;
  position: relative;
}

.pkw-help-icon::before,
.pkw-help-icon::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 22px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.pkw-help-icon::before {
  left: -17px;
}

.pkw-help-icon::after {
  right: -17px;
}

.pkw-help-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.pkw-help-card p {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.pkw-footer {
  padding: 38px 0 18px;
  color: #d7e1ef;
  background:
    radial-gradient(circle at 12% 0, rgba(0, 112, 255, .18), transparent 28%),
    linear-gradient(180deg, #071323, #03070d);
}

.pkw-footer-grid {
  display: grid;
  grid-template-columns: 1.22fr .75fr .9fr .75fr .95fr;
  gap: 30px;
}

.pkw-footer-logo .pkw-logo-word .pk,
.pkw-footer-logo .pkw-logo-word .win {
  font-size: 38px;
}

.pkw-footer-logo small {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.pkw-footer p,
.pkw-footer a,
.pkw-footer li {
  margin: 0 0 8px;
  color: #c2ccdc;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.pkw-footer h4 {
  margin: 0 0 14px;
  color: var(--pkw-gold);
  font-size: 15px;
  text-transform: uppercase;
}

.pkw-footer ul {
  margin: 0;
  padding: 0;
}

.pkw-social {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.pkw-social span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0f80e6;
  font-size: 12px;
  font-weight: 900;
}

.pkw-copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #aab7ca;
  text-align: center;
  font-size: 12px;
}

.pkw-breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--pkw-line);
  color: var(--pkw-muted);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.pkw-breadcrumb a {
  color: var(--pkw-red);
}

.pkw-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 68px;
}

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

.pkw-article-card {
  padding: 38px;
}

.pkw-article-card h1 {
  margin: 0 0 14px;
  color: #071f45;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.pkw-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--pkw-muted);
  font-size: 14px;
  font-weight: 800;
}

.pkw-article-meta span {
  padding: 7px 10px;
  border-radius: 6px;
  background: #f4f6fb;
}

.pkw-article-visual {
  min-height: 280px;
  margin: 0 0 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #050912, #071f45 55%, #97060c);
}

.pkw-article-hero-img {
  width: min(760px, 118%);
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, .38));
}

.pkw-article-visual .pkw-visual {
  width: 100%;
  min-height: 320px;
  transform: scale(.68);
}

.pkw-article-body-text {
  color: #263247;
  font-size: 17px;
  font-weight: 500;
}

.pkw-article-body-text h2 {
  margin: 30px 0 12px;
  color: #071f45;
  font-size: 28px;
  line-height: 1.2;
}

.pkw-article-body-text p,
.pkw-article-body-text li {
  margin: 0 0 16px;
}

.pkw-sidebar {
  display: grid;
  gap: 18px;
}

.pkw-sidebar-card {
  overflow: hidden;
}

.pkw-mini-thumb {
  min-height: 168px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #154c95, #08264c);
  font-size: 34px;
  font-weight: 900;
}

.pkw-sidebar-card-body {
  padding: 22px;
}

.pkw-sidebar-card h2,
.pkw-sidebar-card h3 {
  margin: 0 0 10px;
  color: #071f45;
  font-size: 22px;
  line-height: 1.2;
}

.pkw-sidebar-card p,
.pkw-sidebar-card li,
.pkw-sidebar-card a {
  color: var(--pkw-muted);
  font-size: 14px;
  font-weight: 700;
}

.pkw-sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}

.pkw-sidebar-card li {
  margin-bottom: 10px;
}

@media (min-width: 861px) and (max-width: 1040px) {
  .pkw-shell {
    width: min(100% - 56px, 1180px);
  }

  .pkw-nav a {
    padding: 0 8px;
    font-size: 12px;
  }

  .pkw-hero-grid {
    grid-template-columns: minmax(398px, .98fr) minmax(0, .88fr);
    gap: 14px;
  }

  .pkw-hero h1 {
    max-width: 408px;
    font-size: 40px;
  }

  .pkw-hero h1 .gold {
    font-size: 48px;
  }

  .pkw-hero p {
    max-width: 405px;
    font-size: 15px;
  }

  .pkw-hero-actions {
    gap: 14px;
    margin-top: 18px;
  }

  .pkw-hero-actions .pkw-btn {
    min-width: 154px;
    height: 42px;
    font-size: 13px;
  }

  .pkw-hero-trust {
    gap: 14px;
    margin-top: 18px;
    font-size: 12px;
  }

  .pkw-visual {
    min-height: 365px;
  }

  .pkw-hero-img {
    width: 430px;
    right: -45px;
    top: 10px;
  }

  .pkw-overview-card {
    grid-template-columns: 96px minmax(230px, 1fr) 390px;
    gap: 18px;
  }

  .pkw-overview-icons {
    gap: 8px;
  }

  .pkw-cat-mini strong {
    font-size: 11px;
  }

  .pkw-cat-mini span {
    font-size: 10px;
  }

  .pkw-banner {
    padding: 18px;
    grid-template-columns: 58px minmax(0, 1fr) 96px;
    gap: 12px;
  }

  .pkw-banner-icon {
    width: 58px;
    height: 58px;
  }

  .pkw-banner h3 {
    font-size: 18px;
  }

  .pkw-banner p {
    font-size: 13px;
  }

  .pkw-banner .pkw-btn {
    min-width: 96px;
    min-height: 42px;
    font-size: 12px;
  }
}

@media (max-width: 860px) {
  .pkw-shell {
    width: min(100% - 34px, 820px);
  }

  .pkw-top {
    display: none;
  }

  .pkw-header-main {
    min-height: 86px;
  }

  .pkw-logo-word .pk,
  .pkw-logo-word .win {
    font-size: 40px;
  }

  .pkw-brand small {
    font-size: 11px;
  }

  .pkw-actions {
    gap: 8px;
  }

  .pkw-action,
  .pkw-btn {
    min-width: 108px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .pkw-nav-wrap {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pkw-nav-wrap::-webkit-scrollbar {
    display: none;
  }

  .pkw-nav {
    width: max-content;
    min-width: 100%;
  }

  .pkw-nav a {
    padding: 0 17px;
  }

  .pkw-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .pkw-hero-copy {
    padding: 36px 0 20px;
  }

  .pkw-hero h1 {
    font-size: 42px;
  }

  .pkw-hero h1 .gold {
    font-size: 46px;
  }

  .pkw-visual {
    min-height: 410px;
    transform: scale(.82);
    transform-origin: center top;
  }

  .pkw-hero-img {
    width: min(760px, 140vw);
    right: auto;
    top: 0;
    position: relative;
  }

  .pkw-overview-card,
  .pkw-news-layout,
  .pkw-faq-help,
  .pkw-article-layout {
    grid-template-columns: 1fr;
  }

  .pkw-overview-icons,
  .pkw-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pkw-banners,
  .pkw-info-grid,
  .pkw-footer-grid {
    grid-template-columns: 1fr;
  }

  .pkw-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
  }

  .pkw-steps::before {
    display: none;
  }

  .pkw-popular-panel {
    border-left: 0;
    border-top: 1px solid var(--pkw-line);
  }
}

@media (max-width: 620px) {
  .pkw-shell {
    width: min(100% - 22px, 430px);
  }

  .pkw-header-main {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 0;
  }

  .pkw-actions {
    width: 100%;
  }

  .pkw-actions a {
    flex: 1;
  }

  .pkw-hero h1 {
    max-width: 345px;
    font-size: 30px;
    line-height: 1.12;
  }

  .pkw-hero h1 .gold {
    font-size: 36px;
  }

  .pkw-hero-actions,
  .pkw-hero-trust {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .pkw-hero-actions .pkw-btn {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
  }

  .pkw-visual {
    min-height: 315px;
    margin: 0 -11px -24px;
    overflow: hidden;
    transform: none;
  }

  .pkw-hero-img {
    width: min(560px, 148vw);
    left: 50%;
    transform: translateX(-43%);
  }

  .pkw-overview-card {
    margin-top: -24px;
    padding: 16px;
  }

  .pkw-overview-icons,
  .pkw-news-grid,
  .pkw-steps {
    grid-template-columns: 1fr;
  }

  .pkw-banner,
  .pkw-info-card,
  .pkw-help-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .pkw-panel {
    padding: 18px;
  }

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

  .pkw-article-card h1 {
    font-size: 30px;
  }
}
