
:root {
  --pca-bg: #05060e;
  --pca-panel: #0d1020;
  --pca-panel-2: #12182c;
  --pca-text: #f7f6ff;
  --pca-muted: #9ca2bf;
  --pca-dim: #616986;
  --pca-gold: #ffc143;
  --pca-orange: #ff7a18;
  --pca-pink: #ff2f9b;
  --pca-cyan: #27e2d0;
  --pca-line: rgba(255, 193, 67, .26);
  --pca-soft-line: rgba(255, 255, 255, .08);
  --pca-shell: 1560px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--pca-text);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 47, 155, .12), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(39, 226, 208, .1), transparent 28rem),
    radial-gradient(circle, rgba(255, 193, 67, .12) 1px, transparent 1.5px),
    var(--pca-bg);
  background-size: auto, auto, 48px 48px, auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.pca-shell {
  width: min(var(--pca-shell), calc(100% - 48px));
  margin: 0 auto;
}

.pca-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 14, .94);
  border-bottom: 1px solid var(--pca-line);
  backdrop-filter: blur(18px);
}

.pca-header__inner {
  width: min(var(--pca-shell), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.pca-logo img { width: 178px; height: auto; }
.pca-nav { display: flex; justify-content: center; gap: 28px; }
.pca-nav a {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pca-muted);
}
.pca-nav a:hover { color: var(--pca-gold); }

.pca-actions, .pca-hero__buttons { display: flex; align-items: center; gap: 14px; }
.pca-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 8px;
  border: 1px solid var(--pca-line);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.pca-btn:hover { transform: translateY(-2px); }
.pca-btn--gold {
  color: #090808;
  border-color: #f7a91d;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 2px, transparent 2px 6px), linear-gradient(180deg, #ffc954, #f38a19);
  box-shadow: 0 14px 34px rgba(255, 122, 24, .22);
}
.pca-btn--ghost {
  color: var(--pca-gold);
  background: rgba(255, 255, 255, .02);
}
.pca-btn--ghost:hover { background: rgba(255, 193, 67, .08); }

.pca-hero {
  position: relative;
  width: min(var(--pca-shell), calc(100% - 48px));
  min-height: 580px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--pca-line);
  border-radius: 18px;
  background: #080611;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}
.pca-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #080611;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
  transition: opacity .55s ease;
}
.pca-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 14, .96) 0%, rgba(5, 6, 14, .84) 34%, rgba(5, 6, 14, .56) 64%, rgba(5, 6, 14, .34) 100%),
    linear-gradient(0deg, rgba(5, 6, 14, .44), transparent 45%);
}
.pca-hero__slide.is-active { opacity: 1; transform: none; }
.pca-hero__content {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100% - 72px));
  padding: 88px 0 78px 72px;
}
.pca-hero__line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pca-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pca-hero__line::before, .pca-hero__line::after {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--pca-gold);
}
.pca-hero h1 {
  margin: 32px 0 18px;
  max-width: 590px;
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}
.pca-hero h1::first-line { color: var(--pca-text); }
.pca-hero p {
  max-width: 560px;
  margin: 0 0 40px;
  color: #c6c4d5;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 550;
}
.pca-hero__arrow {
  position: absolute;
  z-index: 4;
  top: 52%;
  width: 54px;
  height: 54px;
  border: 1px solid var(--pca-line);
  border-radius: 10px;
  color: var(--pca-gold);
  background: rgba(5, 6, 14, .72);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.pca-hero__arrow--prev { left: 18px; }
.pca-hero__arrow--next { right: 18px; }
.pca-hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.pca-hero__dots span {
  width: 42px;
  height: 5px;
  border-radius: 20px;
  background: rgba(255, 193, 67, .35);
}
.pca-hero__dots .is-active { background: var(--pca-gold); }

.pca-ticker {
  overflow: hidden;
  border-block: 1px solid var(--pca-line);
  background: rgba(20, 14, 13, .94);
}
.pca-ticker__track {
  width: max-content;
  display: flex;
  gap: 46px;
  padding: 18px 0;
  animation: pca-run 24s linear infinite;
}
.pca-ticker span {
  color: var(--pca-muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pca-ticker span:nth-child(odd) { color: var(--pca-gold); }
@keyframes pca-run { to { transform: translateX(-50%); } }

.pca-providers { padding: 32px 0 20px; }
.pca-providers__rail { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.pca-provider {
  width: 112px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pca-soft-line);
  border-radius: 8px;
  background: rgba(13, 16, 32, .8);
}
.pca-provider img { max-width: 76px; max-height: 22px; filter: grayscale(1) brightness(1.9); opacity: .7; }

.pca-games { padding: 52px 0 84px; }
.pca-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.pca-section-head h2 {
  margin: 0;
  color: var(--pca-gold);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pca-section-head h2 span { color: rgba(255, 193, 67, .42); }
.pca-section-head mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 40px;
  margin-left: 16px;
  border-radius: 8px;
  color: #090808;
  background: var(--pca-gold);
}
.pca-section-head a {
  padding: 14px 28px;
  border: 1px solid var(--pca-soft-line);
  border-radius: 8px;
  color: var(--pca-muted);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pca-games__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.pca-game {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #11172a, #0c1120);
  border: 1px solid #1d2941;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .24);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.pca-game:hover {
  transform: translateY(-7px);
  border-color: var(--pca-cyan);
  box-shadow: 0 24px 46px rgba(39, 226, 208, .15);
}
.pca-game__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pca-game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}
.pca-game:hover .pca-game__media img { transform: scale(1.08); filter: brightness(.48) saturate(1.12); }
.pca-game__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 9px 15px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #ff7d2c, #e73119);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}
.pca-game__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 193, 67, .12), rgba(5, 6, 14, .62));
  transition: opacity .22s ease;
}
.pca-game:hover .pca-game__shade { opacity: 1; }
.pca-game__play {
  min-width: 150px;
  padding: 14px 28px;
  border-radius: 999px;
  color: #090808;
  background: linear-gradient(180deg, #ffe08a, #ffb733);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(255, 193, 67, .28);
}
.pca-game__play::before {
  content: "▶";
  margin-right: 10px;
}
.pca-game__name {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--pca-muted);
  font-size: 15px;
  font-weight: 750;
}

.pca-copy { padding: 74px 0 58px; border-top: 1px solid var(--pca-soft-line); }
.pca-copy__inner { max-width: 1120px; }
.pca-copy__h2 {
  margin: 46px 0 16px;
  color: var(--pca-gold);
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.24;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pca-copy__h2::before { content: "# "; color: rgba(118, 126, 165, .52); }
.pca-copy__h3 {
  margin: 34px 0 12px;
  color: var(--pca-text);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.32;
  text-transform: uppercase;
}
.pca-copy__h3::before { content: "## "; color: rgba(118, 126, 165, .52); }
.pca-copy__p {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--pca-muted);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
}
.pca-copy strong { color: var(--pca-text); }

.pca-faq { padding: 76px 0 110px; }
.pca-faq__inner { max-width: 1220px; }
.pca-faq h2 {
  margin: 0 0 36px;
  color: var(--pca-gold);
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
}
.pca-faq h2 span { color: rgba(255, 193, 67, .56); font-size: .72em; }
.pca-faq__item {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 193, 67, .34);
  border-radius: 12px;
  background: rgba(14, 18, 33, .86);
}
.pca-faq__item summary {
  position: relative;
  list-style: none;
  padding: 22px 70px 22px 52px;
  color: var(--pca-text);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}
.pca-faq__item summary::-webkit-details-marker { display: none; }
.pca-faq__item summary::before {
  content: "Q:";
  position: absolute;
  left: 24px;
  color: var(--pca-gold);
}
.pca-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pca-line);
  border-radius: 6px;
  color: var(--pca-gold);
}
.pca-faq__item[open] summary::after { content: "−"; }
.pca-faq__item p {
  margin: 0;
  padding: 0 52px 24px;
  color: var(--pca-muted);
  font-size: 16px;
  line-height: 1.7;
}

.pca-footer {
  border-top: 4px solid var(--pca-gold);
  background: #05060e;
  padding: 76px 0 54px;
  text-align: center;
}
.pca-footer__top { max-width: 920px; }
.pca-footer__logo { width: 170px; margin: 0 auto 34px; }
.pca-footer p {
  margin: 0 auto;
  color: #6f7697;
  font-size: 16px;
  line-height: 1.75;
}
.pca-footer__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--pca-soft-line);
}
.pca-footer__strip strong {
  color: var(--pca-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pca-footer__icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.pca-footer__icons span {
  min-width: 84px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pca-soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}
.pca-footer__icons img { max-width: 62px; max-height: 26px; filter: grayscale(1) brightness(1.65); opacity: .74; }
.pca-footer__icons--safe span { min-width: 72px; }
.pca-footer__bottom {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 46px;
  color: #555d7c;
  font-size: 16px;
}
.pca-footer__bottom a { color: var(--pca-cyan); }
