/* ============================================
   SHOOTEROFIO BLOG – MAIN STYLESHEET (v5.2)
   ============================================ */

/* === FONT IMPORTS === */
@import url('https://fonts.cdnfonts.com/css/hitmarker-text');
@import url('https://fonts.cdnfonts.com/css/hitmarker-condensed');

:root{
  --bg:#131311;
  --bg-soft:#131311;
  --panel:#0d0d0d;
  --line:#505050;
  --text:#ffffff;
  --muted:#9f9f9f;
  --accent:#e10600;
}

/* ============================================
   GLOBAL
============================================ */

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;

  background:var(--bg);
  color:var(--text);

  font-family:"Hitmarker Text VF", Arial, sans-serif;

  font-size:25px;
  line-height:1.40;

  letter-spacing:.75px;
  font-weight:400;

  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* ============================================
   NAVBAR
============================================ */

.navbar{
  width:100%;
  height:74px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 42px;

  box-sizing:border-box;

  background:rgba(8,8,8,.96);

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  position:sticky;
  top:0;

  z-index:5000;

  border-bottom:1px solid rgba(255,255,255,.06);
}

/* ============================================
   LEFT
============================================ */

.navbar .left{
  display:flex;
  align-items:center;
}

.navbar .left .logo{
  color:#fff;

  text-decoration:none;

  font-family:"Hitmarker Condensed", sans-serif;

  font-size:30px;
  line-height:1;

  font-weight:900;

  text-transform:uppercase;

  letter-spacing:1px;

  transition:opacity .2s ease;
}

.navbar .left .logo:hover{
  opacity:.82;
}

/* ============================================
   CENTER NAV
============================================ */

.navbar .center{
  display:flex;
  align-items:center;

  gap:34px;

  height:100%;
}

.navbar .center a,
.navbar .dropdown > a{
  position:relative;

  height:74px;

  display:flex;
  align-items:center;

  color:rgba(255,255,255,.88);

  text-decoration:none;

  font-family:"Hitmarker Text VF", Arial, sans-serif;

  font-size:12px;
  font-weight:600;

  text-transform:uppercase;

  letter-spacing:1.6px;

  transition:
    color .18s ease,
    opacity .18s ease;
}

/* underline animation */

.navbar .center a::after,
.navbar .dropdown > a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:0;

  width:0%;
  height:2px;

  background:#ffffff;

  transition:width .2s ease;
}

.navbar .center a:hover,
.navbar .dropdown > a:hover{
  color:#fff;
}

.navbar .center a:hover::after,
.navbar .dropdown > a:hover::after{
  width:100%;
}

/* ============================================
   RIGHT SIDE
============================================ */

.navbar .right{
  display:flex;
  align-items:center;

  gap:16px;
}

.navbar .right a{
  color:rgba(255,255,255,.88);

  text-decoration:none;

  font-size:12px;
  font-weight:700;

  text-transform:uppercase;

  letter-spacing:1.4px;

  transition:
    opacity .2s ease,
    background .2s ease,
    border-color .2s ease;
}

/* normal buttons */

.navbar .right a:not(.preorder-btn){
  opacity:.88;
}

.navbar .right a:not(.preorder-btn):hover{
  opacity:1;
}

/* preorder button */

.navbar .right .preorder-btn{
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0 20px;

  background:#e10600;

  border:1px solid transparent;

  color:#fff;

  font-family:"Hitmarker Condensed";

  font-size:17px;
  font-weight:900;

  letter-spacing:1px;

  text-transform:uppercase;
}

.navbar .right .preorder-btn:hover{
  background:#ff140d;
}

/* ============================================
   DROPDOWN
============================================ */

.dropdown{
  position:relative;

  height:100%;

  display:flex;
  align-items:center;
}

/* dropdown panel */

.dropdown-content{
  position:absolute;

  top:calc(100% - 1px);
  left:-18px;

  min-width:240px;

  background:#0f0f0f;

  border:1px solid rgba(255,255,255,.08);

  padding:10px 0;

  opacity:0;
  visibility:hidden;

  transform:translateY(8px);

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;

  z-index:6000;
}

/* dropdown links */

.dropdown-content a{
  display:flex;
  align-items:center;

  min-height:46px;

  padding:0 20px;

  color:rgba(255,255,255,.82);

  text-decoration:none;

  font-size:12px;
  font-weight:600;

  text-transform:uppercase;

  letter-spacing:1.4px;

  transition:
    background .18s ease,
    color .18s ease,
    padding-left .18s ease;
}

.dropdown-content a:hover{
  background:#181818;

  color:#fff;

  padding-left:24px;
}

/* show dropdown */

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;

  transform:translateY(0);
}

/* ============================================
   MOBILE
============================================ */

@media (max-width:1100px){

  .navbar{
    padding:0 22px;
  }

  .navbar .center{
    gap:22px;
  }
}

@media (max-width:900px){

  .navbar{
    height:68px;
  }

  .navbar .center{
    display:none;
  }

  .navbar .right{
    gap:12px;
  }

  .navbar .left .logo{
    font-size:24px;
  }

  .navbar .right .preorder-btn{
    height:38px;

    padding:0 16px;

    font-size:15px;
  }
}

/* ============================================
   MAIN LAYOUT
============================================ */

.layout{
  width:1000px;
  max-width:1920px;

  margin:0 auto;

  padding:0 38px 120px;

  box-sizing:border-box;
}

/* ============================================
   HERO
============================================ */

.hero-wrapper{
  width:100%;

  margin:34px auto 0;
}

.hero-wrapper img{
  width:100%;
  display:block;
}

/* ============================================
   HERO OPENING
============================================ */

.hero-overlay{
  padding:42px 0 46px;

  border-bottom:1px solid var(--line);
}

.hero-top{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 300px;

  gap:70px;

  align-items:start;
}

/* ============================================
   HERO TITLE
============================================ */

.hero-title-side{
  width:100%;
}

.hero-title-side h1{
  margin:0 0 28px;

  font-family:"Hitmarker Condensed", Arial, sans-serif;

  font-size:82px;
  line-height:.93;

  font-weight:900;

  text-transform:uppercase;

  letter-spacing:1px;

  color:#fff;

  max-width:1280px;
}

/* ============================================
   HERO DESCRIPTION
============================================ */

.hero-description{
  max-width:1320px;
}

.hero-description p{
  margin:0 0 38px;
  line-height:1.92;

  letter-spacing:.75px;

  color:#f2f2f2;
}

/* ============================================
   HERO TAGS
============================================ */

.hero-tags{
  display:flex;
  flex-wrap:wrap;

  gap:12px;
}

.hero-tag{
  border:1px solid #6a6a6a;

  color:#cfcfcf;

  padding:8px 14px;

  font-size:12px;
  text-transform:uppercase;

  letter-spacing:1px;
}

/* ============================================
   HERO META
============================================ */

.hero-meta-side{
  text-align:right;
}

.hero-date{
  font-family:"Hitmarker Text VF";

  font-size:25px;
  line-height:1;

  text-transform:uppercase;
  font-weight:650;

  color:#fff;

  margin-bottom:10px;
}

.hero-author{
  font-size:17px;
  color:#b5b5b5;
  margin-bottom:36px;
}

.hero-author strong{
  color:#fff;
}

/* ============================================
   HERO BUTTON
============================================ */

.hero-button{
  display:inline-block;

  background:var(--accent);
  color:#fff;

  text-decoration:none;

  font-family:"Hitmarker Text VF";

  font-size:16px;
  font-weight:900;

  text-transform:uppercase;

  padding:18px 34px;

  transition:background .2s ease;
}

.hero-button:hover{
  background:#ff1d16;
}

/* ============================================
   BLOG CONTENT
============================================ */

.blog-content{
  width:100%;

  max-width:1180px;

  margin:52px auto 0;
}

.blog-content section,
.blog-content .content-section,
.blog-content .text-block{
  width:100%;
}

.blog-content p{
  margin:0 0 42px;

  font-size:25px;
  line-height:1.52;

  letter-spacing:.75px;

  color:#f3f3f3;

  width:100%;
  max-width:100%;
}

/* ============================================
   HEADINGS
============================================ */

.blog-content h1{
  margin:0 0 28px;

  font-family:"Hitmarker Condensed";

  font-size:45px;
  line-height:.93;

  font-weight:900;

  text-transform:uppercase;

  letter-spacing:1px;
}

.blog-content h2,
.blog-content h3,
.blog-content h4{
  margin:56px 0 26px;

  font-family:"Hitmarker Text VF", Arial, sans-serif;

  font-size:25px;
  line-height:1.92;

  letter-spacing:.75px;

  font-weight:700;

  color:#fff;
}

.blog-content h2{
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ============================================
   MEDIA
============================================ */

.blog-content img,
.hero-video img,
.cinematic-image img,
.cinematic-video video,
.cinematic-image iframe{
  width:100%;
  display:block;
}

.cinematic-image,
.cinematic-video{
  margin:78px 0;
}

/* ============================================
   BLOG SUMMARY
============================================ */

.blog-summary{
  margin:0 0 50px;

  padding-bottom:42px;

  border-bottom:1px solid var(--line);
}

.blog-summary p{
  margin:0;

  font-size:21px;
  line-height:1.92;

  letter-spacing:.75px;
}

/* ============================================
   META
============================================ */

.meta{
  font-size:14px;

  color:var(--muted);

  text-transform:uppercase;
}

.signoff{
  margin-top:50px;

  font-size:14px;

  text-transform:uppercase;

  font-weight:700;
}

/* ============================================
   COLLAPSIBLES
============================================ */

.collapsible{
  width:100%;

  background:#111;

  border:1px solid #252525;

  color:#fff;

  padding:18px 22px;

  cursor:pointer;

  text-align:left;

  font-size:14px;
  text-transform:uppercase;

  font-weight:700;

  margin:50px 0 12px;

  transition:background .2s ease;
}

.collapsible:hover{
  background:#191919;
}

.collapsible::after{
  content:"+";
  float:right;
}

.collapsible.active::after{
  content:"−";
}

.collapsible-content{
  max-height:0;

  overflow:hidden;

  transition:max-height .3s ease;

  border-left:1px solid var(--line);

  padding:0 0 0 18px;
}

.collapsible-content.open{
  padding:18px 0 8px 18px;
}

.collapsible-content p{
  margin-bottom:20px;
}

/* ============================================
   PATCHNOTE BOX
============================================ */

.patchnote-box{
  border:1px solid #303030;

  background:#101010;

  padding:26px;

  margin:52px 0;
}

.patchnote-box i{
  display:block;

  margin-bottom:18px;
}

/* ============================================
   SUMMARY BOX
============================================ */

.summary-box{
  background:#0d0d0d;

  border:1px solid #262626;

  margin:52px 0;

  overflow:hidden;
}

.summary-header{
  background:#171717;

  border-bottom:1px solid #2a2a2a;

  padding:15px 20px;

  font-size:14px;
  text-transform:uppercase;

  font-weight:700;
}

.date-banner{
  padding:18px;

  text-align:center;

  font-family:"Hitmarker Condensed";

  font-size:34px;

  text-transform:uppercase;

  border-bottom:1px solid #262626;
}

.summary-section{
  padding:20px;

  border-top:1px solid #1f1f1f;
}

.summary-section:nth-child(even){
  background:#101010;
}

/* ============================================
   TAGS / REDACTED
============================================ */

.inline-redacted,
.redacted{
  display:inline-block;

  width:100px;
  height:18px;

  background:#f1f1f1;

  vertical-align:middle;
}

.redacted::before,
.redacted::after{
  display:none;
}

/* ============================================
   RELATED ARTICLES
============================================ */

.related-articles{
  margin-top:120px;

  border-top:1px solid var(--line);

  padding-top:48px;
}

.related-articles h2{
  text-decoration:none;

  font-family:"Hitmarker Condensed";

  font-size:48px;

  text-transform:uppercase;
}

.related-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:26px;
}

.related-card{
  background:#101010;

  border:1px solid #1d1d1d;
}

.related-card img{
  width:100%;
  display:block;
}

.related-card-content{
  padding:22px;
}

.related-card h3{
  font-family:"Hitmarker Condensed";

  font-size:38px;
  line-height:1;

  text-transform:uppercase;

  margin:0 0 14px;
}

.related-card p{
  margin:0;

  font-size:16px;

  color:#b9b9b9;
}

/* ============================================
   ZOMBIES ITEM
============================================ */

.zombies-item{
  display:flex;

  align-items:flex-start;

  gap:28px;

  margin:40px 0;
}

.zombies-item img{
  max-width:140px;

  height:auto;

  flex-shrink:0;
}

.zombies-item p{
  margin:0;
}

/* ============================================
   HIDDEN
============================================ */

.sidebar-index,
.promo{
  display:none !important;
}

/* ============================================
   MOBILE
============================================ */

@media (max-width:1200px){

  .hero-top{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-meta-side{
    text-align:left;
  }

  .hero-title-side h1,
  .blog-content h1{
    font-size:58px;
  }

  .layout{
    padding:0 28px 100px;
  }
}

@media (max-width:768px){

  body{
    font-size:18px;
  }

  .layout{
    padding:0 18px 70px;
  }

  .navbar{
    padding:0 22px;
  }

  .navbar .center{
    display:none;
  }

  .hero-title-side h1,
  .blog-content h1{
    font-size:42px;
  }

  .hero-date{
    font-size:30px;
  }

  .hero-button{
    font-size:20px;

    padding:15px 24px;
  }

  .blog-content p,
  .hero-description p,
  .blog-summary p{
    font-size:18px;
    line-height:1.82;
  }

  .related-grid{
    grid-template-columns:1fr;
  }

  .zombies-item{
    flex-direction:column;
  }
}