/* ================= FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Special+Elite&display=swap');

/* ================= CSS VARIABLES ================= */
:root {
  --red:        #ff2a2a;
  --red-glow:   rgba(255, 42, 42, 0.6);
  --green:      #39ff14;
  --green-glow: rgba(57, 255, 20, 0.5);
  --amber:      #ffae00;
  --olive:      #4a5240;
  --black:      #080808;
  --dark:       #0f0f0f;
  --card:       #111111;
  --border:     #222222;
  --text:       #ddd;
  --muted:      #888;
}

/* ================= GLOBAL ================= */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Special Elite', Georgia, serif;
  background-color: var(--black);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--text);
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Staatliches', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: var(--green);
}

p {
  line-height: 1.8;
}

/* ================= HEADER ================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #0d0d0d;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 30px rgba(255, 0, 0, 0.2);
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.5));
}

.site-name {
  font-family: 'Staatliches', sans-serif;
  font-size: 42px;
  font-weight: bold;
  display: block;
  color: #fff;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px var(--red), 0 0 20px rgba(255,42,42,0.3);
}

.site-tagline {
  font-family: 'Special Elite', serif;
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 1px;
}

nav a {
  margin-left: 22px;
  font-family: 'Staatliches', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #ccc;
  text-transform: uppercase;
  transition: .2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .2s;
}

nav a:hover {
  color: var(--green);
}

nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #444;
  color: #eee;
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  text-align: center;
  padding: 140px 20px 100px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,42,42,0.015) 40px,
      rgba(255,42,42,0.015) 80px
    );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 72px;
  margin-bottom: 16px;
  color: #fff;
  text-shadow:
    3px 3px 0px var(--red),
    6px 6px 0px rgba(255,0,0,0.2),
    0 0 40px rgba(255,42,42,0.4);
  line-height: 1.05;
}

.hero p {
  position: relative;
  z-index: 2;
  color: var(--amber);
  margin-bottom: 40px;
  font-size: 20px;
  font-family: 'Special Elite', serif;
  letter-spacing: 2px;
}

.cta-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 14px 32px;
  background: var(--red);
  color: white;
  border-radius: 3px;
  font-family: 'Staatliches', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: .2s;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}

.cta-btn:hover {
  background: #ff4d4d;
  box-shadow: 0 0 24px var(--red-glow), 4px 4px 0px rgba(0,0,0,0.5);
  transform: translateY(-2px);
  color: white;
}

/* ================= THREAT LEVEL ================= */

.threat-level {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0,0,0,0.5);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 16px;
}

.threat-status {
  display: block;
  margin-bottom: 8px;
  font-family: 'Staatliches', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

.threat-bar {
  width: 100%;
  height: 8px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #333;
}

.threat-fill {
  height: 100%;
  width: 50%;
  background: var(--green);
  transition: width .8s ease, background .8s ease;
}

/* ================= FEATURED STRIP ================= */

.featured-strip {
  padding: 60px 40px;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.featured-strip h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 38px;
  color: #fff;
  text-shadow: 2px 2px 0px var(--red);
}

.featured-strip h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 10px auto 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-item {
  background: var(--card);
  padding: 24px 20px;
  text-align: center;
  border-radius: 4px;
  transition: .3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.featured-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.featured-item:hover::before {
  opacity: 1;
}

.featured-item:hover {
  transform: translateY(-6px);
  border-color: #333;
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.25);
}

.featured-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 3px;
}

.featured-item h3 {
  font-size: 17px;
  color: #ddd;
  margin: 0;
}

/* ================= POSTS ================= */

.posts {
  padding: 80px 40px;
  background: var(--black);
}

.posts h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 42px;
  color: #fff;
  text-shadow: 2px 2px 0px var(--red);
}

.posts h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 10px auto 0;
}

#post-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= POST CARD ================= */

.post-card {
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--red) transparent transparent;
  z-index: 2;
  opacity: 0.7;
}

.post-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .5s, filter .5s;
  filter: grayscale(15%) contrast(1.05);
}

.post-card h3 {
  padding: 16px 20px 6px;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
}

.post-card p {
  padding: 0 20px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  font-family: 'Staatliches', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(57,255,20,0.3);
  transition: .2s;
}

.read-more:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.3), 0 0 0 1px rgba(255,42,42,0.15);
}

.post-card:hover .post-image {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}

/* ================= FADE IN ================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ERROR MESSAGE ================= */

.error {
  text-align: center;
  color: var(--red);
  font-size: 18px;
  padding: 40px 20px;
  font-family: 'Staatliches', sans-serif;
  letter-spacing: 1px;
}

/* ================= AFFILIATE NOTICE ================= */

.affiliate-notice {
  background: rgba(255, 174, 0, 0.05);
  border-left: 3px solid var(--amber);
  color: #999;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 3px;
  margin-bottom: 30px;
  font-family: 'Special Elite', serif;
}

.affiliate-notice a {
  color: var(--amber);
  font-weight: bold;
}

/* ================= POST PAGE ================= */

.dynamic-post {
  padding: 70px 20px;
  max-width: 960px;
  margin: auto;
}

.post-container h1 {
  font-size: 52px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px var(--red);
}

.post-container > p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 40px;
  border-left: 3px solid var(--border);
  padding-left: 16px;
}

.post-item {
  margin-bottom: 50px;
  background: #0f0f0f;
  padding: 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.post-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.post-item img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 18px;
  filter: grayscale(10%) contrast(1.05);
}

.post-item h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}

.post-item ul {
  padding-left: 20px;
  color: #aaa;
  font-size: 15px;
  line-height: 2;
}

.post-item ul li::marker {
  color: var(--red);
}

.post-verdict {
  margin-top: 16px;
  font-style: italic;
  color: var(--amber);
  font-size: 15px;
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}

/* ================= EMAIL SIGNUP ================= */

.intel-signup {
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

.intel-signup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,42,42,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.signup-box {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: auto;
}

.signup-box h2 {
  font-size: 42px;
  color: #fff;
  text-shadow: 2px 2px 0px var(--red);
  margin-bottom: 12px;
}

.signup-box p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.signup-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.signup-form input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border: 1px solid #333;
  border-radius: 3px;
  font-size: 15px;
  background: #151515;
  color: #eee;
  font-family: 'Special Elite', serif;
  min-width: 0;
  outline: none;
  transition: border-color .2s;
}

.signup-form input:focus {
  border-color: var(--red);
}

.signup-form button {
  padding: 13px 22px;
  background: var(--red);
  border: none;
  color: white;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Staatliches', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .2s;
  white-space: nowrap;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.4);
}

.signup-form button:hover {
  background: #ff4d4d;
  box-shadow: 0 0 18px var(--red-glow);
}

.small-print {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #555;
}

/* ================= ABOUT PAGE ================= */

.about-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(180deg, #111, #000);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px
  );
  pointer-events: none;
}

.about-hero h1 {
  font-size: 64px;
  margin-bottom: 12px;
  text-shadow: 3px 3px 0px var(--red);
}

.about-hero p {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
}

.about-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h2 {
  font-size: 38px;
  color: #fff;
  text-shadow: 2px 2px 0px var(--red);
  margin-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 10px;
}

.about-block p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.criteria-item {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.criteria-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.criteria-item:hover::before {
  opacity: 1;
}

.criteria-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

.criteria-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.criteria-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.criteria-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.about-cta {
  text-align: center;
}

.about-cta h2 {
  border-bottom: none;
}

/* ================= FOOTER ================= */

footer {
  padding: 36px;
  text-align: center;
  background: #080808;
  border-top: 3px solid #1a1a1a;
}

footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px;
  font-family: 'Special Elite', serif;
}

footer a {
  display: inline-block;
  margin-top: 6px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Staatliches', sans-serif;
  text-transform: uppercase;
}

footer a:hover {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .site-header {
    padding: 14px 20px;
  }

  .site-name {
    font-size: 26px;
  }

  .logo-img {
    height: 70px;
  }

  .site-tagline {
    font-size: 11px;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #222;
    padding-top: 10px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    margin-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 18px;
  }

  nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .featured-strip,
  .posts {
    padding: 40px 20px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

}