:root {
  --navy: #002873;
  --navy-2: #002772;
  --navy-deep: #002040;
  --navy-mid: #264887;
  --blue-link: #4c689c;
  --blue-muted: #8093b9;
  --blue-soft: #7f93b8;
  --blue-pale: #b2bed5;
  --status: #d2ddec;
  --status-text: #002873;
  --list-bg: #e5e9f0;
  --row-a: #f2f4f8;
  --row-b: #e5eaf1;
  --footer: #e5e9f1;
  --footer-social: #d9dfea;
  --copy-bg: #f2f4f8;
  --copy-text: #616f8c;
  --red: #cb3232;
  --red-2: #c33;
  --green: #008062;
  --green-l: #3f8000;
  --gold: #fdc24d;
  --white: #fff;
  --container: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Barlow Condensed", "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background: #fff;
  min-width: 980px;
}
a { color: var(--navy); text-decoration: none; cursor: pointer; }
a:hover { color: var(--blue-muted); }
img { border: 0; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container { width: var(--container); margin: 0 auto; position: relative; }
.clearfix::after { content: ""; display: table; clear: both; }
.fl { float: left; }
.fr { float: right; }
.hide { display: none !important; }
.ellip { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rounded9 { border-radius: 9px; }
.rounded5 { border-radius: 5px; }
.upcase { text-transform: uppercase; }

/* ===== HEADER ===== */
.topbar-hp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 200;
}
.menubar-hp {
  background: var(--navy);
  height: 40px;
  position: relative;
  z-index: 3;
}
.statusbar-hp {
  height: 60px;
  line-height: 60px;
  background: var(--status);
  color: var(--status-text);
  border-bottom: 1px solid #cbd0e0;
  position: relative;
  z-index: 2;
}
.topbar-hp .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  height: 100px;
  z-index: 6;
}
.logo-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 188px;
  height: 100px;
  z-index: 6;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4px 10px 0 4px;
}
.logo-badge a {
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  line-height: 32px;
  white-space: nowrap;
}
.logo-badge a:hover { color: #fff; }
.logo-badge sup { font-size: 11px; letter-spacing: 0; top: -0.35em; }
.updated-ago {
  margin-top: auto;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.4px;
  word-spacing: 0.28em;
  color: #9aadc8;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 12px;
  white-space: nowrap;
}

.navtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  z-index: 7;
  color: #fff;
}
.navsect {
  position: absolute;
  left: 210px;
  top: 0;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.navsect a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.navsect a span {
  word-spacing: 0.35em;
}
.navsect a:hover { color: #8093b9; }
.navsect i { font-size: 15px; width: 16px; text-align: center; }
.navico {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 16px;
  height: 40px;
}
.navico a, .navico button {
  color: #fff;
  background: none;
  border: 0;
  font-size: 16px;
  line-height: 40px;
  padding: 0 2px;
}
.navico a:hover, .navico button:hover { color: #8093b9; }

.stats {
  position: absolute;
  top: 40px;
  left: 210px;
  right: 0;
  height: 60px;
  z-index: 7;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}
.stats .stat {
  display: flex;
  align-items: center;
}
.stats .stat + .stat { margin-left: 52px; }
.stats i { font-size: 22px; color: var(--navy); width: 26px; text-align: center; }
.stats .data {
  padding-left: 10px;
  word-spacing: 0.28em;
  color: var(--navy);
}

.topbar-compact { height: 100px; }
.topbar-compact .menubar-hp { height: 60px; }
.topbar-compact .statusbar-hp { height: 40px; line-height: 40px; }
.topbar-compact .logo-badge { height: 60px; }
.topbar-compact .updated-ago { display: none; }
.topbar-compact .navtop { height: 60px; }
.topbar-compact .navsect,
.topbar-compact .navico,
.topbar-compact .navsect a,
.topbar-compact .navico a,
.topbar-compact .navico button { height: 60px; line-height: 60px; }
.topbar-compact .stats { top: 60px; height: 40px; font-size: 15px; }

.main-hp { margin-top: 100px; padding-top: 40px; }
.kw-lead { margin: 0 0 16px; }
.kw-lead h1 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy);
}
.kw-lead p {
  margin-top: 4px;
  color: #4c689c;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.kw-lead a { color: #264887; text-decoration: underline; }
.kw-note {
  margin: -8px 0 18px;
  color: #4c689c;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.main-inner { margin-top: 100px; padding: 10px 0 40px; }

/* ===== SEARCH ===== */
.hp-search {
  margin-top: 0;
  height: 50px;
  line-height: 50px;
  position: relative;
}
.hp-search-icon {
  position: absolute;
  left: 60px;
  top: 0;
  color: var(--navy);
  font-style: normal;
  font-size: 30px;
  font-weight: 500;
  height: 50px;
  cursor: default;
}
.hp-search-icon::before {
  font-family: FontAwesome;
  content: "\f002";
  font-size: 36px;
  font-weight: 400;
  position: absolute;
  left: -56px;
  top: 0;
  width: 50px;
  text-align: center;
}
.hp-search input[type="text"] {
  position: absolute;
  left: 170px;
  right: 190px;
  top: 0;
  height: 50px;
  border: 2px solid #ccd4e3;
  background: #f2f4f8;
  text-indent: 12px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: inset 0 2px 4px 0 rgba(0,0,0,.08);
  outline: none;
}
.hp-search-select {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  background: #e5e9f1;
  z-index: 40;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
}
.hp-search-select.open {
  height: auto;
  overflow: visible;
  box-shadow: 0 8px 18px rgba(0,40,115,.18);
}
.hp-search-select::after {
  font-family: FontAwesome;
  content: "\f0d7";
  position: absolute;
  right: 10px;
  top: 0;
  height: 50px;
  line-height: 50px;
  color: var(--navy);
  font-size: 18px;
  pointer-events: none;
}
.hp-search-select.open::after { content: "\f0d8"; }
.hp-search-select li {
  height: 40px;
  line-height: 40px;
  text-indent: 20px;
  color: var(--navy);
  background: #f2f4f8;
  font-weight: 500;
}
.hp-search-select li#hps_selection {
  height: 50px;
  line-height: 50px;
  background: #e5e9f1;
  text-indent: 16px;
}
.hp-search-select li.opt:hover { background: #e5e9f1; }
.hp-search-select li.opt { display: none; }
.hp-search-select.open li.opt { display: block; }

/* ===== ESSENTIALS SLIDER ===== */
.hp-essentials {
  height: 280px;
  width: 960px;
  position: relative;
  margin: 60px 0 40px;
}
.ess-bg {
  position: absolute;
  inset: 0;
  border-radius: 9px;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, #002873, #006880);
}
.ess-bg.g2 { background-image: linear-gradient(to bottom right, #002873, #b25f00); }
.ess-bg.g3 { background-image: linear-gradient(to bottom right, #002873, #008062); }
.ess-bg.g4 { background-image: linear-gradient(to bottom right, #002873, #990000); }
.ess-bg.g5 { background-image: linear-gradient(to bottom right, #002873, #3f8000); }

.ess-up, .ess-down {
  background: #002772;
  color: #fff;
  width: 250px;
  height: 40px;
  position: absolute;
  left: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  z-index: 11;
  border: 0;
  transition: background-color 200ms;
}
.ess-up { top: -20px; border-radius: 5px 5px 0 0; }
.ess-down { bottom: -20px; border-radius: 0 0 5px 5px; }
.ess-up:hover, .ess-down:hover { background: #4c689c; }

.ess-panel {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 250px;
  height: 240px;
  background: #e5e9f0;
  z-index: 10;
}
.ess-list-wrap {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 250px;
  height: 160px;
  overflow: hidden;
  z-index: 11;
}
.ess-list {
  position: relative;
  top: 0;
}
.ess-list li {
  height: 40px;
  line-height: 39px;
  padding: 0 10px 0 20px;
  border-bottom: 1px solid #b2bed5;
  color: #4c689c;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ess-list li:hover { background: #b2bed5; border-bottom-color: #002873; color: var(--navy); }
.ess-current {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 250px;
  height: 40px;
  background: #264887;
  color: #fff;
  font-weight: 700;
  z-index: 22;
  line-height: 40px;
  padding-left: 20px;
  padding-right: 12px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ess-current::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #264887;
  border-top: 20px solid transparent;
}

.ess-stage {
  position: absolute;
  top: 0;
  right: 40px;
  width: 540px;
  height: 220px;
  overflow: hidden;
  z-index: 11;
  color: #fff;
}
.ess-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 0 12px;
  height: 26px;
  line-height: 26px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 18px;
}
.ess-stage h3 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 600;
  margin-top: 10px;
  width: 320px;
}
.ess-stage h3 a { color: #fff; }
.ess-stage h3 a:hover { color: #fdc24d; }
.ess-desc {
  width: 320px;
  margin-top: 12px;
  font-size: 17px;
  line-height: 19px;
  opacity: .85;
  height: 57px;
  overflow: hidden;
}
.ess-stars {
  margin-top: 10px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}
.ess-photo {
  position: absolute;
  top: 28px;
  right: 0;
  width: 180px;
  height: 115px;
  border-radius: 6px;
  overflow: hidden;
}
.ess-photo .shot {
  width: 180px;
  height: 115px;
}

.ess-status {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,39,114,.28);
  z-index: 10;
  border-radius: 0 0 9px 9px;
}
.ess-try, .ess-buybtn {
  position: absolute;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  z-index: 12;
  text-transform: lowercase;
}
.ess-try { right: 40px; width: 140px; background: #002772; }
.ess-try::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-right: 70px solid transparent;
  border-top: 20px solid #002772;
  border-left: 70px solid transparent;
}
.ess-try:hover { background: #4c689c; color: #fff; }
.ess-try:hover::after { border-top-color: #4c689c; }
.ess-buybtn { right: 200px; width: 100px; background: var(--red); }
.ess-buybtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-right: 50px solid transparent;
  border-top: 20px solid var(--red);
  border-left: 50px solid transparent;
}
.ess-buybtn:hover { background: #dc8989; color: #fff; }
.ess-buybtn:hover::after { border-top-color: #dc8989; }

/* ===== AD ===== */
.ad-slot {
  background: #f6f6f6;
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 10px;
}
.ad-970 { width: 100%; height: 90px; }
.ad-300 { width: 300px; height: 250px; }
.ad-inner {
  border: 1px dashed #ccd4e3;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8093b9;
}

/* ===== HEADINGS / TABS ===== */
h2.sect {
  font-size: 36px;
  line-height: 32px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px;
}
h2.sect a { color: var(--navy); }
h2.sect .fa-rss { color: #ecd099; font-size: 18px; margin-left: 8px; }
h2.sect .fa-rss:hover { color: #41619e; }

.menugrey1 {
  height: 40px;
  line-height: 40px;
  background: #e5e9f0;
  border-radius: 9px;
  margin-bottom: 30px;
  position: relative;
}
.menugrey1 .sect-tab {
  color: #4C689C;
  padding: 0 20px;
  cursor: pointer;
  float: left;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.menugrey1 .sect-tab.active {
  background: var(--navy);
  color: #fff;
}
.menugrey1 .sect-tab.active::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--navy);
  margin: 0 auto;
}
.aptum {
  position: absolute;
  right: 14px;
  top: 0;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  color: #8093b9;
  font-weight: 600;
  letter-spacing: .4px;
}

/* ===== DOWNLOAD ROWS ===== */
.dlcls {
  position: relative;
  min-height: 96px;
  margin-bottom: 2px;
  padding: 8px 0 10px;
  border-radius: 10px;
  color: #657daa;
  font-size: 14px;
}
.dlcls0 { background: #f2f4f8; }
.dlcls1 { background: #e5eaf1; }
.dlcls .ico {
  float: left;
  width: 60px;
  height: 60px;
  margin: 14px 0 0 20px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.dlcls .ico::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  border-radius: 7px;
}
.dlcls h4 {
  margin: 16px 0 0 120px;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  color: var(--navy);
  width: 590px;
}
.dlcls p.ln {
  margin: 2px 0 0 120px;
  font-size: 14px;
  line-height: 22px;
  color: var(--navy);
  width: 590px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dlcls .meta-ln {
  margin: 2px 0 0 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 25px;
}
.dlcls .ts { color: #657daa; font-size: 14px; }
.dlcls .info {
  position: absolute;
  right: 16px;
  top: 14px;
  text-align: right;
  color: #657daa;
  font-size: 14px;
  line-height: 22px;
}
.dlcls .info a { color: #4c689c; text-transform: lowercase; }
.browse-all {
  display: block;
  text-align: right;
  margin: 12px 0 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 13px;
  position: relative;
}
.stars .empty { color: #ccd4e3; }

/* ===== SOFTWARE OF THE DAY ===== */
.sotd-row { margin: 50px 0 40px; display: flex; gap: 20px; }
.hp-sotd {
  position: relative;
  width: 620px;
  height: 250px;
  overflow: hidden;
  color: #fff;
  border-radius: 9px;
  background-image: linear-gradient(to bottom right, #990000, #002873 40%, #990000);
}
.hp-sotd h3 {
  font-size: 32px;
  line-height: 38px;
  margin: 28px 0 0 32px;
  width: 420px;
  position: relative;
  z-index: 2;
}
.hp-sotd h3 a { color: #fff; }
.hp-sotd .desc {
  margin: 12px 0 0 32px;
  width: 400px;
  font-size: 16px;
  line-height: 22px;
  opacity: .85;
  position: relative;
  z-index: 2;
}
.hp-sotd .desc a { color: #fff; text-decoration: underline; }
.sotd-data {
  position: absolute;
  left: 32px;
  bottom: 22px;
  display: flex;
  gap: 18px;
  z-index: 2;
}
.datablock {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 16px;
}
.datablock p {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: none;
}
.datalabel {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.bg-green-l { background: #3f8000; }
.bg-blue-b { background: #264887; }
.sotd-price {
  position: absolute;
  right: 110px;
  bottom: 28px;
  z-index: 2;
  text-align: right;
  font-size: 16px;
}
.sotd-price strike { opacity: .7; }
.sotd-price .now { color: #7fcd32; font-size: 17px; font-weight: 700; }
.sotd-buy {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 90px;
  height: 36px;
  line-height: 36px;
  background: var(--red-2);
  color: #fff;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  font-size: 16px;
}
.sotd-buy::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid var(--red-2);
}
.sotd-buy:hover { color: #fff; background: #dc8989; }
.sotd-buy:hover::after { border-left-color: #dc8989; }
.sotd-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
  padding: 10px 8px;
  border-radius: 5px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sotd-ad { width: 300px; height: 250px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 460px 460px;
  gap: 0 40px;
  margin-top: 8px;
}
.nwclassic {
  height: 120px;
  border-bottom: 2px solid #f2f4f8;
  padding: 20px 0;
  overflow: hidden;
}
.nwclassic .pic {
  float: left;
  width: 80px;
  height: 80px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.nwclassic h3 {
  margin: 0 0 6px 100px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--navy);
}
.nwclassic h3 a { color: var(--navy); }
.nwclassic p {
  margin-left: 100px;
  font-size: 15px;
  color: #667eab;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.read-all {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--navy);
}

/* ===== COLLECTIONS ===== */
.coll-head { margin-top: 40px; }
.coll-sub { line-height: 40px; font-weight: 500; font-size: 16px; color: #4C689C; }
.hubs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 30px;
}
.hubclassic {
  padding: 20px 0;
  border-bottom: 2px solid #e5e9f1;
  min-height: 120px;
}
.hubclassic .icon {
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 20px;
  border-radius: 7px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.hubclassic .icon i { font-size: 28px; margin-top: 14px; display: block; }
.hubclassic .icon span {
  display: block;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  opacity: .55;
  margin-top: 6px;
}
.grad0 { background: linear-gradient(45deg, #51659a, #d3a23b); }
.grad1 { background: linear-gradient(45deg, #51659a, #44cca6); }
.grad2 { background: linear-gradient(45deg, #51659a, #80ce37); }
.grad3 { background: linear-gradient(45deg, #51659a, #c6343a); }
.hubclassic a {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  position: relative;
  top: 8px;
}
.hubclassic p {
  font-weight: 500;
  font-size: 12px;
  color: #7f93b9;
  text-transform: uppercase;
  margin-top: 18px;
}
.hubclassic p span { font-size: 20px; }

/* ===== FOOTER ===== */
.footer { margin-top: 40px; background: var(--footer); }
.footer .social {
  height: 60px;
  background: var(--footer-social);
}
.footer-search {
  height: 60px;
  display: flex;
  align-items: center;
  color: var(--navy);
}
.footer-search i { font-size: 28px; margin-right: 12px; }
.footer-search input {
  border: 0;
  background: var(--footer-social);
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  color: #616f8c;
  outline: none;
  width: 280px;
}
.love {
  float: right;
  line-height: 60px;
  color: #616f8c;
  font-size: 18px;
}
.love .fa-heart { color: #e06666; }
.copyright_cnt { background: var(--copy-bg); padding: 12px 0 18px; }
.copyright {
  color: var(--copy-text);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.copyright a { color: var(--copy-text); text-decoration: underline; margin: 0 4px; }

/* ===== LISTING PAGE ===== */
.crumb {
  font-size: 14px;
  color: #8093b9;
  padding: 18px 0 8px;
}
.crumb a { color: #4c689c; }
.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 18px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.cat-card {
  background: #f2f4f8;
  border-radius: 8px;
  padding: 16px 14px;
  min-height: 78px;
}
.cat-card h3 { font-size: 18px; color: var(--navy); font-weight: 700; }
.cat-card p { font-size: 13px; color: #7f93b9; margin-top: 4px; }
.cat-card:hover { background: #e5e9f1; }

/* ===== APP DETAIL ===== */
.app-head { padding: 10px 0 20px; }
.app-head h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 38px;
}
.app-head .ver { color: #8094b9; font-weight: 400; font-size: 24px; margin-left: 8px; }
.app-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.app-hero {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.app-shot {
  width: 420px;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.app-summary { flex: 1; }
.app-summary .lead {
  font-size: 18px;
  line-height: 24px;
  color: #4c689c;
  margin: 8px 0 18px;
}
.dl-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff !important;
  font-size: 22px;
  font-weight: 700;
  padding: 12px 28px 16px;
  border-radius: 4px 4px 0 0;
  position: relative;
  text-transform: uppercase;
}
.dl-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 16px solid var(--navy);
  width: 100%;
}
.dl-btn:hover { background: #4c689c; }
.dl-btn:hover::after { border-top-color: #4c689c; }
.specs {
  background: #f2f4f8;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px;
  color: #4c689c;
}
.specs dt { float: left; width: 110px; color: #8093b9; clear: left; }
.specs dd { margin: 0 0 8px 110px; color: var(--navy); font-weight: 600; }
.review-body {
  font-size: 16px;
  line-height: 24px;
  color: #334;
  margin-top: 24px;
}
.review-body p { margin: 0 0 14px; }
.side-box {
  background: #f2f4f8;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.side-box h3 { color: var(--navy); font-size: 18px; margin-bottom: 10px; }
.side-box li { padding: 6px 0; border-bottom: 1px solid #e5e9f1; font-size: 15px; }

/* ===== SEARCH RESULTS ===== */
.search-meta { color: #8093b9; margin: 0 0 16px; }

/* ===== REVIEW ARTICLE ===== */
.article h1 { font-size: 32px; color: var(--navy); margin: 8px 0 12px; }
.article .byline { color: #8093b9; font-size: 14px; margin-bottom: 18px; }
.article-hero {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.article p { font-size: 17px; line-height: 26px; color: #333; margin: 0 0 16px; }

/* ===== MODALS ===== */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 40, 115, .45);
  z-index: 400;
  align-items: center;
  justify-content: center;
}
.overlay.show { display: flex; }
.modal {
  width: 380px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.modal h3 {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-size: 20px;
}
.modal .body { padding: 18px; }
.modal input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: 1px solid #ccd4e3;
  background: #f2f4f8;
  text-indent: 10px;
  font-family: inherit;
  font-size: 16px;
}
.modal .btn {
  background: var(--navy);
  color: #fff;
  border: 0;
  height: 40px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 15px;
}
.info-pop {
  position: absolute;
  right: 0;
  top: 40px;
  width: 260px;
  background: var(--navy);
  color: #8093b9;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 20px;
  display: none;
  z-index: 30;
}
.info-pop.show { display: block; }
.info-pop a { color: #fff; }

/* ===== SCREENSHOT PLACEHOLDERS ===== */
.shot {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.shot .bar {
  height: 18px;
  background: rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
}
.shot .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); }
.shot .win { margin: 10px; display: grid; gap: 6px; }
.shot .line { height: 8px; background: rgba(255,255,255,.28); border-radius: 3px; }
.shot .pane { height: 40px; background: rgba(255,255,255,.14); border-radius: 4px; }

.ico-glyph {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== LOGIN TOAST / FEEDBACK ===== */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  display: none;
  z-index: 500;
}
.toast.show { display: block; }

@media (max-width: 1000px) {
  body { min-width: 0; }
  .container, .hp-essentials { width: 100%; }
}
