@charset "utf-8";

/* =========================================================
   BASE
   ========================================================= */
body {
  font-family: europa, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #d0d6e0;
  background-color: #0c0e13;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(232, 117, 26, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0c0e13 0%, #0f1119 100%);
  min-height: 100vh;
  margin: 0;
}

h1, h2, h3, h4, h5, strong {
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 700;
  color: #f0eee8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

p { color: #b8c2d4; }

a {
  color: #e8751a;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: #ffaa55;
  text-decoration: underline;
}

img { display: block; }

/* =========================================================
   SKIP LINK (ACCESSIBILITY)
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: #e8751a;
  color: #fff;
  border-radius: 0.4rem;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  background: rgba(10, 11, 17, 0.97) !important;
  border-bottom: 1px solid rgba(232, 117, 26, 0.18);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand img.logo-img {
  height: 2.2rem;
  filter: drop-shadow(0 0 8px rgba(232, 117, 26, 0.35));
}

.navbar-nav .nav-link {
  color: #c8d0dd !important;
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  border-radius: 0.35rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #e8751a !important;
  background: rgba(232, 117, 26, 0.1);
}

.navbar-nav .nav-link.active {
  color: #e8751a !important;
  background: rgba(232, 117, 26, 0.13);
  border-bottom: 2px solid #e8751a;
}

/* =========================================================
   HOME HERO
   ========================================================= */
.home-hero {
  position: relative;
  background: #0c0e13;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.home-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.38);
  z-index: 0;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 6, 10, 0.90) 0%,
    rgba(8, 10, 15, 0.75) 50%,
    rgba(8, 10, 15, 0.40) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e8751a;
  font-family: "manifold-extd-cf", sans-serif;
  margin-bottom: 1rem;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
  color: #fff;
}

.home-hero .lead {
  font-size: 1.1rem;
  color: #aab6cb;
  max-width: 560px;
}

/* =========================================================
   PAGE HERO (INTERIOR PAGES)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid #e8751a;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 6, 10, 0.92) 0%,
    rgba(10, 12, 20, 0.80) 50%,
    rgba(232, 117, 26, 0.18) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.page-hero-label {
  display: inline-block;
  font-family: "manifold-extd-cf", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e8751a;
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.page-hero p.lead {
  color: #b8c8dc;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
}

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.section-wrap {
  background: rgba(14, 17, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 2.2rem;
}

/* =========================================================
   HOME FEATURE CARD (LEFT LARGE ARTICLE)
   ========================================================= */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.feature-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}

.feature-card .card-img-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .card-img-wrap img { transform: scale(1.03); }

.feature-card .card-body {
  padding: 1.8rem;
}

.feature-card .card-body .section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: "manifold-extd-cf", sans-serif;
  color: #e8751a;
  margin-bottom: 0.6rem;
}

.feature-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #f0eee8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.feature-card p { color: #b0bccf; line-height: 1.7; }

/* =========================================================
   MINI CARD (RIGHT STACKED CARDS)
   ========================================================= */
.mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: row;
  height: 100%;
}

.mini-card .card-img-wrap {
  width: 42%;
  min-width: 42%;
  min-height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.mini-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.mini-card:hover .card-img-wrap img { transform: scale(1.05); }

.mini-card .card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-card .section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "manifold-extd-cf", sans-serif;
  color: #e8751a;
  margin-bottom: 0.4rem;
}

.mini-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  color: #f0eee8;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.mini-card p { font-size: 0.88rem; color: #9aaabb; margin-bottom: 0.75rem; }

/* =========================================================
   MORE LINKS LIST (HOME PAGE)
   ========================================================= */
.more-links { margin-top: 1.2rem; }

.more-links h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #788090;
  font-family: "manifold-extd-cf", sans-serif;
  margin-bottom: 0.7rem;
  text-shadow: none;
}

.more-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.more-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.more-links li:last-child { border-bottom: none; }

.more-links li i { color: #e8751a; font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

.more-links li a { color: #c0cad8; font-size: 0.9rem; }

.more-links li a:hover { color: #fff; text-decoration: none; }

/* =========================================================
   READ MORE / CTA LINK
   ========================================================= */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 117, 26, 0.12);
  color: #e8751a;
  border: 1px solid rgba(232, 117, 26, 0.3);
  border-radius: 2rem;
  padding: 0.45rem 1.2rem;
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: 0.6rem;
}

.btn-read-more:hover {
  background: #e8751a;
  color: #fff;
  border-color: #e8751a;
  text-decoration: none;
}

/* =========================================================
   NEWS / REVIEWS / PREVIEWS GRID CARDS
   ========================================================= */
.thumb-card {
  background: rgba(15, 18, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.thumb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.thumb-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}

.thumb-card .card-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.thumb-card:hover .card-img-wrap img { transform: scale(1.06); }

.thumb-card .card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.thumb-card h2 {
  font-size: 1.05rem;
  color: #edeae2;
  margin-bottom: 0.55rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  line-height: 1.35;
}

.thumb-card p {
  font-size: 0.88rem;
  color: #8e9db5;
  margin-bottom: 0.8rem;
  flex: 1;
}

.thumb-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e8751a;
  font-size: 0.85rem;
  font-weight: 600;
}

.thumb-card .read-link:hover { color: #ffaa55; text-decoration: none; }

/* =========================================================
   PLATFORM NAV (REVIEWS & PREVIEWS)
   ========================================================= */
.platform-nav {
  background: rgba(12, 15, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.9rem;
  padding: 0.75rem 1.2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.platform-nav .platform-label {
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #5a6678;
  margin-right: 0.5rem;
}

.platform-nav a {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  color: #99aabb;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: "manifold-extd-cf", sans-serif;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.platform-nav a:hover {
  background: rgba(232, 117, 26, 0.15);
  border-color: rgba(232, 117, 26, 0.4);
  color: #e8751a;
  text-decoration: none;
}

.platform-nav a.active {
  background: rgba(232, 117, 26, 0.2);
  border-color: #e8751a;
  color: #e8751a;
}

/* =========================================================
   CHEATS PAGE
   ========================================================= */
.cheat-card {
  background: rgba(14, 17, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.25s ease;
  height: 100%;
}

.cheat-card:hover { box-shadow: 0 24px 60px rgba(232, 117, 26, 0.12); }

.cheat-card .cheat-img {
  width: 38%;
  min-width: 38%;
  overflow: hidden;
}

.cheat-card .cheat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cheat-card:hover .cheat-img img { transform: scale(1.05); }

.cheat-card .cheat-body {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cheat-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: #f0eee8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.cheat-card p { font-size: 0.9rem; color: #8a9aae; margin-bottom: 1rem; }

.cheat-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cheat-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #c8d2e0;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.cheat-links li a:hover {
  background: rgba(232, 117, 26, 0.15);
  border-color: rgba(232, 117, 26, 0.3);
  color: #e8751a;
  text-decoration: none;
}

.cheat-links li a i { color: #e8751a; }

/* =========================================================
   SCREENS PAGE
   ========================================================= */
.screen-card {
  background: rgba(13, 16, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.screen-card .screen-img {
  position: relative;
  overflow: hidden;
}

.screen-card .screen-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.screen-card:hover .screen-img img { transform: scale(1.05); }

.screen-card .screen-body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.screen-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #edeae2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  line-height: 1.35;
}

.screen-card p { font-size: 0.87rem; color: #8090a5; margin-bottom: 0.8rem; }

.screen-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e8751a;
  font-size: 0.85rem;
  font-weight: 600;
}

.screen-card .read-link:hover { color: #ffaa55; text-decoration: none; }

/* =========================================================
   ORANGE DIVIDER ACCENT
   ========================================================= */
.orange-rule {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #e8751a 0%, rgba(232, 117, 26, 0.15) 100%);
  margin: 0 0 2rem;
  border-radius: 2px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #07080d;
  border-top: 1px solid rgba(232, 117, 26, 0.15);
  margin-top: 5rem;
}

.site-footer h5 {
  font-family: "manifold-extd-cf", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e8751a;
  margin-bottom: 1.2rem;
}

.site-footer p { font-size: 0.88rem; color: #6a788a; }

.footer-logo { max-width: 130px; opacity: 0.85; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links li a {
  color: #7a8a9e;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links li a:hover { color: #e8751a; text-decoration: none; }

.social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #9aaabb;
  font-size: 1.25rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social li a:hover {
  background: rgba(232, 117, 26, 0.2);
  border-color: #e8751a;
  color: #e8751a;
  box-shadow: 0 0 14px rgba(232, 117, 26, 0.3);
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 2rem 0 1.5rem;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: #4a5566;
  margin: 0;
}

.footer-bottom a { color: #6a7888; }
.footer-bottom a:hover { color: #e8751a; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 767.98px) {
  .mini-card {
    flex-direction: column;
  }
  .mini-card .card-img-wrap {
    width: 100%;
  }
  .mini-card .card-img-wrap img {
    height: 200px;
  }
  .cheat-card {
    flex-direction: column;
  }
  .cheat-card .cheat-img {
    width: 100%;
    min-width: 100%;
  }
  .cheat-card .cheat-img img {
    height: 200px;
  }
  .section-wrap {
    padding: 1.4rem;
    border-radius: 1rem;
  }
  .home-hero { padding: 3.5rem 0 3rem; }
  .page-hero { padding: 2.5rem 0 2rem; }
}
