@font-face {
  font-family: 'Reconquista Sensual';
  src: url('Reconquista-Sensual.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* = BODY = */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Arial', serif;
  padding: 20px;
  background-image: url('gifs/spacebggeo2.gif');
  background-color: #0a0000;
}

/* = CONTAINER = */
.container {
  border: 3px ridge #8b0000;
  border-radius: 0;
  padding: 0;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  box-shadow: none;
  overflow: hidden;
  background-color: #12060a;
}

/* = HEADER = */
header {
  background-color: #1a0308;
  padding: 25px 20px 15px 20px;
  border-bottom: 2px ridge #8b0000;
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 6rem;
  margin-top: -5px;
  margin-bottom: 10px;
  font-weight: normal;
  color: #e8e0d8;
  font-family: 'Reconquista Sensual', 'Times New Roman', serif;
  letter-spacing: 2px;
  position: relative;
  z-index: 3;
  text-shadow: 
    2px 2px 0 #000, 
    -2px -2px 0 #000, 
    2px -2px 0 #000, 
    -2px 2px 0 #000,
    4px 4px 0 #8b0000,
    0 0 20px rgba(196, 30, 58, 0.8);
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%, 100% { 
    text-shadow: 
      2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
      4px 4px 0 #8b0000, 0 0 20px rgba(196,30,58,0.8); 
  }
  50% { 
    text-shadow: 
      2px 2px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
      4px 4px 0 #4a0000, 0 0 5px rgba(196,30,58,0.3); 
  }
}

.bat-bite {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  line-height: 0;
}

.bat-bite img {
  display: block;
  margin: 0 auto;
  height: auto;
}

.header-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  margin-top: -10px;
  overflow: hidden;
}

.header-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* = MAIN = */
main {
  padding: 30px 40px;
}

main a {
  color: #c41e3a;
  text-decoration: underline;
}

main a:hover {
  color: #ff2e4d;
  text-shadow: 0 0 8px rgba(255, 46, 77, 0.8);
}

.screenshot {
  width: 100%;
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: 1.5rem;
  margin: 20px 0 10px 0;
  color: #b3001b;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(139, 0, 0, 0.7);
}

p {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #c8c2bd;
  font-weight: bold;
}

/* = LIST = */
ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
}

ul li {
  font-size: 1.1rem;
  padding: 8px 0;
  color: #c8c2bd;
  border-bottom: 1px solid rgba(139, 0, 0, 0.4);
  font-family: 'Times New Roman', serif;
  font-weight: bold;
}

ul li:last-child {
  border-bottom: none;
}

/* = FOOTER = */
footer {
  background-color: #2b0a0f;
  background-position: center;
  padding: 15px 20px;
  border-top: 3px solid rgba(139, 0, 0, 0.5);
  color: #c8c2bd;
  font-size: 0.9rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

footer a {
  display: inline;
  padding: 0;
  background: none;
  border: none;
  color: #c41e3a;
  font-size: 0.9rem;
  text-decoration: underline;
  border-radius: 0;
}

footer a:hover {
  background: none;
  transform: none;
  color: #ff2e4d;
  text-shadow: 0 0 8px rgba(255, 46, 77, 0.8);
}

/*
@media (max-width: 480px) {
  main { padding: 20px; }
  header h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  p { font-size: 1rem; }
  ul li { font-size: 0.95rem; padding: 6px 0; }
  main img { max-width: 120px; }
  a { padding: 10px 25px; font-size: 1rem; width: 100%; }
}
*/

/*
@media (max-width: 350px) {
  main { padding: 15px 10px; }
  header h1 { font-size: 1.6rem; }
}
*/