/* ============================================
   SHOOTEROFIO BLOG – MAIN STYLESHEET (v2.5)
   ============================================ */

/* === 1) FONT IMPORTS === */
@import url('https://fonts.cdnfonts.com/css/hitmarker-text');
@import url('https://fonts.cdnfonts.com/css/hitmarker-condensed');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* === 2) GLOBAL BODY === */
body {
  background: #1b1b1b;
  color: #ffffff;
  margin: 0;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-size: 8px 8px, 16px 16px;
  background-blend-mode: overlay;
}

/* === HEADINGS === */
.blog-content h1 {
  line-height: 2.5rem;
  font-size: 2.75rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.blog-content h2 {
  display: flex;
  align-items: flex-end;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-weight: 900;
  font-size: 2.65rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 60px 0 35px;
  padding-bottom: 10px;
  position: relative;
}

.blog-content h2::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.6) 25%,
    rgba(255, 255, 255, 0.3) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

.blog-content h3 {
  line-height: 2rem;
  font-weight: 800;
  font-size: 30px;
  margin-top: 30px;
  letter-spacing: 0.5px;
}

/* === BACK BUTTON === */
.back-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #2b2b2b;
  color: #fff;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.back-button:hover {
  background: #444;
  transform: scale(1.05);
}

/* === GRID LAYOUT === */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 50px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* === STICKY ELEMENTS === */
.sidebar-index,
.promo {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* === SIDEBAR INDEX === */
.sidebar-index {
  font-size: 0.95rem;
  padding-right: 10px;
}
.sidebar-index h3 {
  font-size: 1rem;
  color: #fff;
  margin: 6px 0 8px;
  text-transform: uppercase;
  padding-bottom: 1px;
}
.sidebar-index ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.sidebar-index li {
  margin: 6px 0;
}
.sidebar-index a {
  text-decoration: none;
  color: #b5b5b5;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.sidebar-index a:hover {
  color: #00adee;
}

/* === BLOG CONTENT === */
.blog-content img {
  width: 125%;
  max-width: 125%;
  margin: 40px -12.5%;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.hero-video img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 6px;
}

.blog-content p {
  margin: 22px 0;
  line-height: 1.8rem;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.1rem;
}

/* === META & SIGNOFF === */
.meta {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 25px;
}
.signoff {
  font-weight: bold;
  margin-top: 35px;
  color: #ff6600;
  text-transform: uppercase;
}

/* === HERO IMAGE + OVERLAY === */
hero-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto 40px auto;
  overflow: visible;              /* allow image to bleed out */
  display: flex;
  justify-content: center;
}
.hero-wrapper img {
  width: 130%;
  max-width: 130%;
  margin: 40px -15%;
  display: block;
  border-radius: 0;
  filter: brightness(90%) contrast(108%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 35px 45px;
  box-sizing: border-box;
}
.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 1100;
  line-height: 3.2rem;
  margin: 0 0 15px;
  color: #fff;
}
.hero-overlay .meta {
  font-size: 1rem;
  color: #bbb;
}

/* === PROMO BOX === */

.promo {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.promo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.promo .cta {
  display: block;
  background: #0e9e10;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 20px 0;
  transition: background 0.2s ease;
}
.promo .cta:hover {
  background: #046105;
}

/* === CINEMATIC MEDIA === */
.cinematic-image,
.cinematic-video {
  margin: 45px 0;
}
.cinematic-image img,
.cinematic-video video {
  width: 130%;
  max-width: 130%;
  margin: 40px -15%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* === INLINE REDACTED === */
.inline-redacted {
  display: inline-block;
  width: 100px;
  height: 1em;
  background: #000;
  vertical-align: middle;
  border-radius: 2px;
  margin: 0 4px;
}

/* === NAVBAR === */
.navbar {
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 2px solid #222;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.navbar .left .logo {
  font-weight: bold;
  font-size: 22px;
  margin-right: 30px;
  letter-spacing: 2px;
}
.navbar .center a,
.navbar .dropdown > a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.2s;
}
.navbar .center a:hover,
.navbar .dropdown > a:hover {
  color: #00adee;
}
.navbar .right a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.navbar .right .preorder-btn {
  background: #0078ff;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 700;
}
.navbar .right .preorder-btn:hover {
  background: #005fcc;
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  min-width: 200px;
  border: 1px solid #333;
  border-radius: 4px;
  z-index: 1000;
}
.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: #fff;
  font-weight: 500;
}
.dropdown-content a:hover {
  background: #2a2a2a;
  color: #00adee;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* === OFFSET FOR NAVBAR === */
.layout,
.hero-wrapper,
.blog-content {
  margin-top: 5px;
}

/* === BLOG SUMMARY (COD-style headline paragraph – aligned with blog content) === */
.blog-summary {
  max-width: 1000px;              /* same readable width as blog content */
  margin: 60px auto 40px auto;
  padding: 0 0;                   /* no extra side padding */
  text-align: left;
}

.blog-summary p {
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 0;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
  margin: 0 auto;
}

.blog-summary strong {
  color: #00adee; /* accent color (ShooterofIO blue) */
  font-weight: 0;
}

@media (max-width: 1200px) {
  .blog-summary {
    max-width: 90%;               /* responsive scaling for smaller screens */
    padding: 0 5%;
  }
  .blog-summary p {
    font-size: 1.3rem;
    line-height: 2rem;
  }
}


/* ================================================
   COLLAPSIBLE SECTIONS
   ================================================ */

.collapsible {
  width: 100%;
  background: linear-gradient(to bottom, #3e4348 0%, #1b1b1b 100%);
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  padding: 22px 35px;
  font-size: 1.35rem;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin: 50px 0 10px;
  border-radius: 4px;
}
.collapsible:hover {
  background: linear-gradient(to bottom, #4a5056 0%, #222 100%);
}
.collapsible::after {
  content: "\25BC";
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #ffffff;
}
.collapsible.active::after {
  transform: rotate(180deg);
}

/* === COLLAPSIBLE CONTENT === */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  color: #ffffff;
  line-height: 1.8rem;
  font-size: 1.125rem;
  padding: 0 35px;
}
.collapsible-content.open {
  padding: 25px 35px 10px 35px;
}
.collapsible-content p {
  margin: 18px 0;
  letter-spacing: 0.4px;
}
.collapsible-content a {
  color: #00adee;
  font-weight: 700;
  text-decoration: none;
}
.collapsible-content a:hover {
  text-decoration: underline;
}

/* === PATCHNOTE BOX === */
.patchnote-box {
  border: 1.5px solid #ffffff;
  padding: 28px 32px;
  margin: 45px 0;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.85rem;
  letter-spacing: 0.3px;
  border-radius: 6px;
  background: #141414;
}
.patchnote-box i {
  color: #ffffff;
  display: block;
  margin-bottom: 18px;
  font-style: italic;
}

/* === SUMMARY BOX === */
.summary-box {
  background-color: #0f0f0f;
  border: 1.5px solid var(--theme-border, #ff7b00);
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  --header-top: var(--theme-top, #d16b24);
  --header-bottom: var(--theme-bottom, #a44a1f);
}

/* Header Bar */
.summary-header {
  background: linear-gradient(to bottom, var(--header-top), var(--header-bottom));
  font-family: "Hitmarker Text VF", "Roboto", sans-serif;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 14px 20px;
  border-bottom: 2px solid #000;
  letter-spacing: 1px;
}

/* Sections */
.summary-section {
  background: #1b1b1b;
  border-top: 1px solid #2b2b2b;
  padding: 18px 22px;
  letter-spacing: 0.3px;
}
.summary-section:nth-child(even) {
  background: #202020;
}
.summary-section strong {
  color: var(--theme-highlight, #ffb14a);
  font-weight: 900;
}
.summary-section i {
  color: #ffffff;
  font-style: italic;
}

/* === COLOR THEMES === */
.summary-box.default { --theme-top: #d16b24; --theme-bottom: #a44a1f; --theme-border: #ff7b00; --theme-highlight: #ffb14a; }
.summary-box.MO2 { --theme-top: #b41f1f; --theme-bottom: #7b0c0c; --theme-border: #ff3b3b; --theme-highlight: #ff8080; }
.summary-box.MO22 { --theme-top: #1a7fcc; --theme-bottom: #0b406d; --theme-border: #29b9ff; --theme-highlight: #a4e4ff; }
.summary-box.MO23 { --theme-top: #3fad0b; --theme-bottom: #1b5900; --theme-border: #63ff2b; --theme-highlight: #c8ffb0; }
.summary-box.MO24 { --theme-top: #f0b400; --theme-bottom: #a37100; --theme-border: #ffd500; --theme-highlight: #fff7a3; }
.summary-box.MO25 { --theme-top: #7b27ff; --theme-bottom: #3b0b80; --theme-border: #a675ff; --theme-highlight: #e2c9ff; }
.summary-box.MO26 { --theme-top: #ff5a00; --theme-bottom: #b33200; --theme-border: #ff9444; --theme-highlight: #ffd1aa; }
.summary-box.DW { --theme-top: #38b000; --theme-bottom: #1e7c00; --theme-border: #46ff00; --theme-highlight: #9aff7c; }
.summary-box.WG2 { --theme-top: #9b4dff; --theme-bottom: #5a26a6; --theme-border: #aa7eff; --theme-highlight: #e1c5ff; }
.summary-box.NEXUS { --theme-top: #b41f1f; --theme-bottom: #7b0c0c; --theme-border: #ff3b3b; --theme-highlight: #ff8080; }
