/* === Gorecore Blog Theme === */

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=VT323&display=swap');

body {
  background-color: #050505;
  background-image: 
    url('https://i.imgur.com/ZC7UZxN.png'), /* grunge texture */
    radial-gradient(circle at center, #1a0000 0%, #000000 100%);
  background-blend-mode: overlay;
  background-attachment: fixed;
  color: #d6d6d6;
  font-family: 'VT323', monospace;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur104.cur'), auto;
}

/* Header */
h1, h2, h3 {
  font-family: 'UnifrakturCook', cursive;
  color: #ff1e3c;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #850000;
  letter-spacing: 2px;
  animation: flicker 3s infinite;
}

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  border-bottom: 1px dashed rgba(255, 0, 0, 0.4);
  padding-bottom: 0.4em;
  margin-bottom: 0.7em;
}

/* Blood Flicker Animation */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.3;
  }
}

/* Links */
a {
  color: #ff1e3c;
  text-decoration: none;
  text-shadow: 0 0 5px #ff0033;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff7b92;
  text-shadow: 0 0 10px #ff0033, 0 0 20px #b80000;
  letter-spacing: 2px;
}

/* Articles */
article {
  max-width: 800px;
  margin: 80px auto;
  background-color: rgba(10, 0, 0, 0.8);
  border: 2px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
  padding: 50px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Blood drip effect */
article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,0,0,0.2) 0%, rgba(255,0,0,0) 80%);
  mix-blend-mode: screen;
  animation: drip 6s infinite;
}

@keyframes drip {
  0% { transform: translateY(-10%); opacity: 0.3; }
  50% { transform: translateY(10%); opacity: 0.7; }
  100% { transform: translateY(-10%); opacity: 0.3; }
}

/* Glitch text effect */
.glitch {
  position: relative;
  color: #ff1e3c;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red, -2px 0 blue; }
  20% { text-shadow: -2px 0 red, 2px 0 blue; }
  40% { text-shadow: 3px 0 red, -3px 0 blue; }
  60% { text-shadow: -1px 0 red, 1px 0 blue; }
  100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

/* Images */
img {
  max-width: 100%;
  border: 2px solid #400000;
  border-radius: 8px;
  filter: grayscale(100%) contrast(130%) brightness(80%);
  transition: 0.5s ease;
}

img:hover {
  filter: grayscale(0%) brightness(100%) contrast(120%) saturate(180%);
  transform: scale(1.02) rotate(-1deg);
}

/* Blockquotes */
blockquote {
  font-style: italic;
  background: rgba(255, 0, 0, 0.05);
  border-left: 3px solid #ff1e3c;
  padding: 15px 20px;
  margin: 25px 0;
  color: #d6d6d6;
  text-shadow: 0 0 6px #ff0000;
}

/* Footer */
footer {
  text-align: center;
  color: #777;
  font-size: 15px;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  letter-spacing: 1px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff1e3c, #2b0000);
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #0a0000;
}
