@charset "UTF-8";


/* ── Pill grid for quick-facts in hero ── */
.game-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.game-info-pills .pill {
  display: flex;
  flex-direction: column;
  background: #F2F3F7;
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 110px;
  flex: 1 1 auto;
}

.game-info-pills .pill .pill-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  margin-bottom: 2px;
  white-space: nowrap;
}

.game-info-pills .pill .pill-value {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1E;
  line-height: 1.3;
}

/* ── Base ── */
html { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: #F2F3F7;
  color: #1A1A1E;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: grid;
  line-height: 1.8;
  grid-template-rows: auto 1fr auto;
}

/* ── Typography ── */
p, i, a, h1, h2, h3 { color: #1A1A1E; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; }
h1 { margin: 0 0 12px; font-size: 26px; font-weight: 800; line-height: 1.3; }
h2 { margin: 0 0 10px; font-size: 21px; font-weight: 700; }
h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; }
p  { margin-top: 0; }

/* ── Utilities ── */
.mb-0 { margin-bottom: 0; }
.content-center { text-align: center; }
.content-center .btn { font-size: 18px; width: 80%; max-width: 420px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (max-width: 750px) { .btn { font-size: 15px; padding: 9px 16px; } }

.btn.btn-primary {
  color: #fff;
  background: linear-gradient(105deg, #c81c5a 0%, #e53838 50%, #fe2a77 100%);
  box-shadow: 0 4px 14px rgba(200, 28, 90, 0.3);
}
.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 28, 90, 0.45);
}

/* ── Top Bar ── */
.top-bar {
  position: fixed; width: 100%; z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8E8EE;
  display: flex; align-items: center; justify-content: center;
}
.top-bar .top-bar_menu {
  width: 100%; max-width: 1280px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 750px) { .top-bar .top-bar_menu { padding: 4px 15px; } }

.top-bar .top-bar_menu .top-bar_left-block { display: flex; align-items: center; }
.top-bar .top-bar_menu .top-bar_left-block .top-bar_logo {
  margin: 4px 48px 4px 0; height: 45px; width: auto;
}
@media (max-width: 750px) {
  .top-bar .top-bar_menu .top-bar_left-block .top-bar_logo { margin-right: 10px; height: 38px; }
}

.top-bar .top-bar_menu .top-bar_right-block { display: flex; align-items: center; }
.top-bar .top-bar_menu .top-bar_right-block a { display: flex; align-items: center; text-decoration: none; }
.top-bar .top-bar_menu .top-bar_right-block .mobile-buttons { display: flex; align-items: center; }

@media (max-width: 750px) {
  .top-bar .top-bar_menu .top-bar_right-block .mobile-buttons {
    position: absolute; width: -webkit-fill-available;
    left: 0; top: 60px; z-index: 900;
    justify-content: space-between; padding: 10px 15px; flex-direction: row-reverse;
  }
}

.top-bar .top-bar_menu .top-bar_right-block .mobile-buttons .lang {
  cursor: pointer; display: flex; align-items: center;
  margin-bottom: 0; text-transform: uppercase; font-weight: 600;
  padding: 5.5px 8px; border-radius: 8px; gap: 6px;
  transition: background 0.15s;
}
@media (max-width: 750px) {
  .top-bar .top-bar_menu .top-bar_right-block .mobile-buttons .lang { display: none; }
}
.top-bar .top-bar_menu .top-bar_right-block .mobile-buttons .lang .flag { width: 24px; border-radius: 4px; }
.top-bar .top-bar_menu .top-bar_right-block .mobile-buttons .lang:hover { background-color: #F0F0F5; }
.top-bar .top-bar_menu .top-bar_right-block .btn { margin-left: 20px; }
@media (max-width: 750px) { .top-bar .top-bar_menu .top-bar_right-block .btn { margin-left: unset; } }

/* ── Container ── */
.container {
  z-index: 50; position: relative;
  padding: 80px 20px 32px;
  display: flex; flex-direction: column; align-items: center;
}
@media (max-width: 750px) { .container { width: unset; overflow-x: auto; } }
@media (max-width: 1350px) { .container { display: block; padding: 80px 12px 20px; } }

/* ── Heading Hero ── */
.heading-block-universal {
  position: relative; width: 100%; max-width: 1280px;
  background: #fff; border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.heading-block-universal .heading-bg {
  border-radius: 20px 20px 0 0;
  background-image: url("/imgs/background.webp");
  background-position: center; height: 260px;
  background-repeat: no-repeat; background-size: cover;
}
@media (max-width: 1350px) { .heading-block-universal .heading-bg { height: 170px; } }

.heading-block-universal .heading-content {
  padding: 16px; margin: -80px 24px 18px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
@media (max-width: 1350px) { .heading-block-universal .heading-content { margin: 0; padding: 15px; box-shadow: none; } }

.heading-block-universal .heading-content .heading-content-info { display: flex; }
@media (max-width: 1350px) { .heading-block-universal .heading-content .heading-content-info { flex-direction: column; } }

.heading-block-universal .heading-content .heading-content-info .game-play { margin-right: 20px; width: 200px; }
@media (max-width: 1350px) { .heading-block-universal .heading-content .heading-content-info .game-play { width: unset; margin-right: 0; } }

.heading-block-universal .heading-content .heading-content-info .game-play img.game-logo {
  width: 100%; height: auto; border-radius: 12px;
}
@media (max-width: 1350px) {
  .heading-block-universal .heading-content .heading-content-info .game-play img.game-logo {
    align-self: center; width: 150px; height: auto;
    margin-bottom: 15px; margin-top: -140px; margin-right: 0;
    border: 4px solid #fff; border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
}
.heading-block-universal .heading-content .heading-content-info .game-play .btn { margin-bottom: 8px; width: -webkit-fill-available; }
.heading-block-universal .heading-content .heading-content-info .game-play .platforms { text-align: center; margin: 0 5px; }
@media (max-width: 1350px) { .heading-block-universal .heading-content .heading-content-info .game-play .platforms { margin-bottom: 15px; } }

.heading-block-universal .heading-content .heading-content-info .game-info { width: 100%; padding-top: 8px; }
.heading-block-universal .heading-content .heading-content-info .game-info h1 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
@media (max-width: 1350px) { .heading-block-universal .heading-content .heading-content-info .game-info h1 { text-align: center; } }

.heading-block-universal .heading-content .heading-content-info .game-info .rating { display: flex; align-items: center; margin-bottom: 12px; gap: 2px; }
@media (max-width: 1350px) { .heading-block-universal .heading-content .heading-content-info .game-info .rating { justify-content: center; } }
.heading-block-universal .heading-content .heading-content-info .game-info .rating img { cursor: pointer; transition: transform 0.1s ease; }
.heading-block-universal .heading-content .heading-content-info .game-info .rating img:hover { transform: scale(1.3); }

@media (max-width: 750px) {
  .heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tbody { display: flex; }
  .heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr { display: block; }
  .heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr td { width: 100%; float: left; }
}
.heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr { background-color: unset; }
.heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr td { width: 25%; padding: 8px 0; }
.heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr td .heading { margin: 0 0 3px; color: #777; font-size: 13px; font-weight: 500; }
.heading-block-universal .heading-content .heading-content-info .game-info .game-info-table table tr td .text { margin: 0; font-weight: 700; font-size: 17px; }
.heading-block-universal .heading-content .heading-content-text p { font-weight: 400; line-height: 1.75; }

/* ── Content Box ── */
.box {
  width: 100%; max-width: 1208px;
  background: #fff; padding: 28px 40px;
  border-radius: 20px; margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
@media (max-width: 1350px) { .box { padding: 16px; width: auto; max-width: unset; } }
.box p { font-weight: 400; margin-bottom: 20px; line-height: 1.75; }
.box ul, .box ol { padding-left: 22px; }
.box h3:first-child { margin-top: 0; }
.box *:last-child { margin-bottom: 0; }
.box img.image { max-width: 100%; border-radius: 14px; margin-bottom: 24px; }

/* ── Demo Placeholder ── */
.demo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #0a0a0f;
  cursor: pointer;
}

.demo-placeholder .demo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.45) saturate(0.8);
  transition: filter 0.3s ease;
}

.demo-placeholder:hover .demo-bg {
  filter: brightness(0.35) saturate(0.7);
}

.demo-placeholder .demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.demo-play-btn {
  font-size: 18px;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 30px rgba(200,28,90,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(200,28,90,0.65);
}

.demo-play-btn svg {
  flex-shrink: 0;
}

/* When placeholder is replaced by active iframe */
.demo-active {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.demo-active iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

@media (max-width: 750px) {
  .demo-placeholder,
  .demo-active {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 9 / 16;
  }
}

/* ── Tables ── */
table { width: 100%; border-collapse: separate; border-spacing: 0 6px; margin-bottom: 24px; }
table thead tr th { padding: 4px 12px; font-weight: 700; font-size: 13px; text-align: left; color: #777; text-transform: uppercase; letter-spacing: 0.04em; }
table tbody tr { background-color: #F5F6FA; }
table tbody tr td { padding: 10px 12px; }
table tbody tr td:first-child { border-radius: 10px 0 0 10px; font-weight: 700; }
table tbody tr td:last-child { border-radius: 0 10px 10px 0; text-align: left; }

/* ── Image Figures ── */
.image-figure { margin: 0 0 24px; text-align: center; }
.image-figure img { max-width: 800px; width: 100%; height: auto; border-radius: 14px; }
.image-figure figcaption { font-size: 13px; line-height: 1.5; color: #777; margin-top: 8px; }
@media (max-width: 750px) { .image-figure figcaption { text-align: left; } }

/* ── Notes ── */
.verification-note {
  background: #fffbef; border: 1px solid #f0dca8;
  border-radius: 12px; padding: 14px 18px;
  margin-top: 16px; font-size: 14px; line-height: 1.65;
}
.verification-note p { margin: 0; }
.content-note { background: #F5F6FA; border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; }
.content-note p { margin: 0; }
.updated-note { font-size: 13px; color: #888; margin-top: 10px; }
@media (max-width: 750px) { .verification-note, .content-note { padding: 12px; } }

/* ── Author Box ── */
.author-box { background: #F5F6FA; border-radius: 12px; padding: 16px; margin-top: 16px; border-left: 3px solid #e53838; }
.author-box p { margin-bottom: 6px; font-size: 14px; }
@media (max-width: 750px) { .author-box { padding: 12px; } }

/* ── CTA Soft ── */
.cta-soft { background: #F5F6FA; border-radius: 14px; padding: 20px; margin-bottom: 20px; }
.cta-soft p { margin-bottom: 12px; }
@media (max-width: 750px) { .cta-soft { padding: 14px; } }

/* ── TOC Box ── */
.toc-box {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-bottom: 20px;
  max-width: calc(1208px + 80px) !important;
}

.toc-box .toc-inner {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 100%;
}

.toc-box .toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.toc-box .toc-header:hover {
  background: #FAFAFA;
}

.toc-box .toc-header.open {
  border-bottom-color: #EFEFEF;
}

.toc-box .toc-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #1A1A1E;
}

.toc-box .toc-header-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(105deg, #c81c5a 0%, #fe2a77 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.toc-box .toc-chevron {
  font-size: 12px;
  color: #999;
  transition: transform 0.2s ease;
  display: inline-block;
}

.toc-box .toc-header.open .toc-chevron {
  transform: rotate(180deg);
}

.toc-box .toc-body {
  display: none;
  padding: 8px 20px 16px;
}

.toc-box .toc-body ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: toc-counter;
}

.toc-box .toc-body ol li {
  counter-increment: toc-counter;
  border-bottom: 1px solid #F2F3F7;
}

.toc-box .toc-body ol li:last-child {
  border-bottom: none;
}

.toc-box .toc-body ol li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  text-decoration: none;
  color: #1A1A1E;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  border-radius: 6px;
}

.toc-box .toc-body ol li a::before {
  content: counter(toc-counter);
  min-width: 24px;
  height: 24px;
  background: #F2F3F7;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  flex-shrink: 0;
}

.toc-box .toc-body ol li a:hover {
  color: #c81c5a;
  background: #FFF5F8;
}

.toc-box .toc-body ol li a:hover::before {
  background: rgba(200,28,90,0.1);
  color: #c81c5a;
}

/* ── Spoiler ── */
.spoiler { position: relative; margin: 0 auto; }
.spoiler-list { background: #F0F1F6; border-radius: 10px; margin-bottom: 20px; }
.spoiler-list .spoiler-btn { cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 8px 16px; }
.spoiler-list .spoiler-btn p { margin: 0; font-weight: 600; }
.spoiler-list .spoiler-list-content { display: none; }
.spoiler-list .spoiler-list-content.show { display: block; }
.spoiler-list .spoiler-list-content ol { padding-left: 33px; padding-bottom: 12px; margin-top: 4px; }
.spoiler-list .spoiler-list-content ol li { margin-bottom: 8px; }
.spoiler .spoiler-content.show { display: block; }

/* ── Pros & Cons ── */
.pros-and-cons { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
@media (max-width: 750px) { .pros-and-cons { grid-template-columns: 1fr; } }
.pros-and-cons .pros, .pros-and-cons .cons { padding: 12px; background: #F5F6FA; border-radius: 12px; }
.pros-and-cons .pros p.heading { font-weight: 700; padding: 8px 14px; border-radius: 6px; background: rgba(6,229,135,0.1); color: #0A5C34; margin-bottom: 10px; }
.pros-and-cons .cons p.heading { font-weight: 700; padding: 8px 14px; border-radius: 6px; background: rgba(227,36,71,0.1); color: #860E23; margin-bottom: 10px; }
.pros-and-cons p.item { padding: 8px 10px; margin-bottom: 4px; display: flex; align-items: center; font-size: 14px; line-height: 1.5; }
.pros-and-cons p.item img { margin-right: 10px; flex-shrink: 0; }

/* ── FAQ ── */
.faq { margin-top: 16px; }
.faq .faq-item h3 {
  cursor: pointer; border-radius: 10px; padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px; font-weight: 600; background: #F0F1F6;
  transition: background 0.15s;
}
.faq .faq-item h3:hover { background: #E8E9F0; }
.faq .faq-item h3::after { content: url("/imgs/arrow-down.svg"); margin-top: 5px; flex-shrink: 0; }
.faq .faq-item.show h3::after { content: url("/imgs/arrow-up.svg"); }
.faq .faq-item .faq-item-content { padding: 12px 16px; background: #F5F6FA; border-radius: 10px; display: none; margin-bottom: 8px; }
.faq .faq-item .faq-item-content p { margin: 0; font-size: 14px; line-height: 1.65; }
.faq .faq-item .faq-item-content.show { display: block; }

/* ── Modal ── */
.modal { display: none; position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background: rgba(0,0,0,0.45); }
.modal .modal-content { position: relative; background: #fff; margin: 5% auto; width: 343px; border-radius: 16px; padding: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.modal .modal-content .heading { text-align: center; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.modal .modal-content .close { position: absolute; right: 14px; top: 14px; cursor: pointer; }
.modal .modal-content ul { column-count: 2; padding-left: 0; margin: 0; }
.modal .modal-content ul li { list-style-type: none; margin-bottom: 8px; }
.modal .modal-content ul li a { display: flex; align-items: center; text-decoration: none; background: #F5F6FA; border-radius: 8px; padding: 8px; font-size: 14px; transition: background 0.15s; }
.modal .modal-content ul li a:hover { background: #E8E9F0; }
.modal .modal-content ul li a img.flag { margin-right: 8px; width: 22px; border-radius: 4px; }
.modal .modal-content ul li:last-child { margin-bottom: 0; }

/* ── Scroll-up ── */
.scroll-up { display: none; cursor: pointer; position: fixed; z-index: 900; bottom: 60px; right: 60px; padding: 14px 14px 6px; border-radius: 50%; background: rgba(0,0,0,0.35); line-height: 1em; transition: background 0.2s; }
.scroll-up:hover { background: rgba(0,0,0,0.6); }
.scroll-up .arrow-up { display: inline-block; border: solid #fff; border-width: 0 2px 2px 0; padding: 5px; transform: rotate(-135deg); }

/* ── Footer ── */
footer {
  background: #141417; color: #fff;
  padding: 44px 20px; z-index: 50; position: relative;
  display: flex; flex-direction: column; align-items: center;
}
footer a { color: #fff; }
footer .text p { color: #9999A8; line-height: 1.6; margin-bottom: 0; font-size: 14px; }
footer .footer { width: 100%; max-width: 1280px; display: flex; justify-content: space-between; gap: 40px; }
footer .footer .logo { flex-shrink: 0; }
footer .footer .logo .footer-logo { width: 170px; }
footer .footer .logo .spoiler { width: 100px; }
footer .footer .logo .spoiler .lang { cursor: pointer; display: flex; align-items: center; padding: 6px 10px; justify-content: space-around; background: #222228; text-decoration: none; text-transform: uppercase; color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; }
footer .footer .logo .spoiler .lang img.flag { margin-right: 8px; width: 22px; border-radius: 3px; }
footer .copyright { margin-top: 20px; width: 100%; max-width: 1280px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
footer .copyright p.text { color: #666675; font-weight: 600; font-size: 12px; }
footer .copyright a { font-weight: 600; font-size: 12px; color: #9999A8; }

@media (max-width: 750px) {
  footer { display: block; padding: 20px 15px; }
  footer .footer { flex-direction: column; }
  footer .footer .logo { display: flex; justify-content: space-between; margin-bottom: 24px; }
  footer .footer .logo .spoiler { width: unset; }
  footer .copyright { flex-direction: column-reverse; }
  footer .copyright p.text { text-align: center; margin-top: 32px; margin-bottom: 16px; }
}
