/* Import pixel fonts for Deltarune/Undertale vibe */
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Comic+Papyrus&display=swap');
/* Import a demonic-themed font for headings */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
/* Body: Deep maroon background with pixelated texture for hellish vibe */
body {
  background: url('../../Icons/tile_masks.png') repeat;
  background-color: #300000; /* Deep Maroon */
  color: #FFDAB9; /* Soft Peach for readable text, evoking embers */
  font-family: 'VT323', monospace;
  font-size: 16px;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 3px #000;
  cursor: url('https://cur.cursors-4u.net/games/gam-13/gam1232.cur'), auto;
}
@font-face {
  font-family: 'Mario64';
  src: url('../../Fonts/Mario64.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'KiwiSoda';
  src: url('../../Fonts/KiwiSoda.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PixelDart';
  src: url('../../Fonts/PixelDart.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DOOMED';
  src: url('../../Fonts/doomed-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Container: Dark crimson with pixelated stone texture for infernal stone */
#container {
  width: 900px;
  margin: 30px auto;
  background: url('https://www.toptal.com/designers/subtlepatterns/uploads/stone.png') repeat;
  background-color: #200000; /* Dark Crimson */
  border: 6px solid #000;
  box-shadow: 0 0 12px #FF4500; /* Soft Orange-Red glow for hellfire */
  padding: 20px;
  position: relative;
  overflow: hidden;
}
/* Audio Player: Fixed position with vibrant styling */
.audio-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#background-music {
  background: #4B0000; /* Dark Maroon */
  border: 3px solid #000;
  padding: 5px;
  box-shadow: 0 0 8px #FF4500; /* Orange-Red glow */
  width: 200px;
}
.audio-prompt {
  background: #200000; /* Dark Crimson */
  border: 3px solid #000;
  padding: 10px;
  margin-bottom: 10px;
  color: #FFDAB9; /* Soft Peach for text */
  font-family: 'Comic Papyrus', cursive;
  font-size: 14px;
  text-shadow: 2px 2px 3px #000;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 0 8px #FF4500; /* Orange-Red glow */
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}
.audio-prompt:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: #FF4500; /* Orange-Red on hover */
}
/* Marquee: Soft peach scrolling text on dark maroon */
.marquee {
  background: #4B0000; /* Dark Maroon */
  color: #FFDAB9; /* Soft Peach */
  font-family: 'Comic Papyrus', cursive;
  font-size: 14px;
  padding: 8px;
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 2px 2px 3px #000;
}
.marquee span {
  display: inline-block;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* Header: Pixelated banner */
header {
  margin-bottom: 20px;
  position: relative;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Center banner since login box is removed */
}
.banner {
  width: 100%; /* Full width since login box is gone */
  max-width: 700px; /* Limit size to prevent over-scaling */
  height: 140px;
  object-fit: cover;
  border: 4px solid #000;
  filter: drop-shadow(0 0 8px #FF4500); /* Orange-Red glow */
  transition: transform 0.3s;
}
.banner:hover {
  transform: scale(1.05);
}
/* Main Navigation: Gradient with fiery accents */
nav#nav-container {
  background: linear-gradient(to right, #4B0000, #800000); /* Dark Maroon to Maroon */
  border: 5px solid #000;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 10px #FF4500; /* Orange-Red glow */
}
nav#nav-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
nav#nav-container li {
  margin: 0;
  flex: 1;
  border-right: 1px solid #000;
}
nav#nav-container li:last-child {
  border-right: none;
}
nav#nav-container a {
  color: #FFDAB9; /* Soft Peach */
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: 16px;
  padding: 10px 0;
  background: transparent;
  border: none;
  display: block;
  transition: background 0.2s, transform 0.1s, box-shadow 0.1s, text-shadow 0.2s;
  box-shadow: 0 4px 0 #000;
  text-shadow: 2px 2px 3px #000;
  animation: rune-glow 5s ease-in-out infinite;
}
nav#nav-container a:hover {
  animation: none;
  background: rgba(255, 218, 185, 0.2); /* Soft Peach overlay */
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
  text-shadow: 0 0 5px #FFDAB9;
}
@keyframes rune-glow {
  0% { text-shadow: 0 0 5px #FFDAB9, 0 0 10px #FFDAB9, 0 0 15px #FF4500; opacity: 0.8; }
  50% { text-shadow: 0 0 10px #FFDAB9, 0 0 20px #FFDAB9, 0 0 30px #FF4500; opacity: 1; }
  100% { text-shadow: 0 0 5px #FFDAB9, 0 0 10px #FFDAB9, 0 0 15px #FF4500; opacity: 0.8; }
}
/* Social Navigation: Mini icon-based nav bar */
nav#social-nav-container {
  background: linear-gradient(to right, #4B0000, #800000); /* Dark Maroon to Maroon */
  border: 3px solid #000;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 8px #FF4500; /* Orange-Red glow */
}
nav#social-nav-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
nav#social-nav-container li {
  margin: 0;
}
nav#social-nav-container a {
  display: block;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}
nav#social-nav-container img {
  width: 32px;
  height: 32px;
  filter: pixelate(2px);
}
nav#social-nav-container a:hover img {
  transform: scale(1.2);
  filter: brightness(1.3);
  box-shadow: 0 0 8px #FFDAB9; /* Soft Peach glow */
}
/* Two-Column Layout: Fixed widths */
.content {
  display: flex;
  gap: 20px;
}
.left-column {
  width: 33%;
}
.main-column {
  width: 66%;
}
/* Sections: Dark crimson containers */
section {
  background: #200000; /* Dark Crimson */
  border: 4px solid #000;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 12px #FF4500; /* Orange-Red glow */
}
h2 {
  color: #FFDAB9; /* Soft Peach */
  margin: 0 0 15px;
  font-family: 'Creepster', 'DOOMED', cursive;
  font-size: 24px;
  text-align: center;
  text-shadow: 3px 3px 3px #000;
  background: #4B0000; /* Dark Maroon */
  padding: 8px;
  border: 2px solid #000;
  border-radius: 6px;
  position: relative;
}
/* News and Shoutouts: Pixelated items */
.news, .shoutouts {
  color: #FFDAB9; /* Soft Peach */
}
.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: rgba(75, 0, 0, 0.2); /* Dark Maroon overlay */
  padding: 10px;
  border: 3px dotted #FF4500; /* Orange-Red */
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #FFDAB9; /* Soft Peach glow */
}
.news-item img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  border: 3px solid #000;
  filter: pixelate(2px);
}
.news-item a {
  color: #FF4500; /* Orange-Red */
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.news-item a:hover {
  color: #FFDAB9; /* Soft Peach */
  text-shadow: 0 0 5px #FFDAB9;
}
/* Art Section: Vertical list for left column */
.art {
  color: #FFDAB9; /* Soft Peach */
}
.art-list {
  display: flex;
  flex-direction: column;
}
.art-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: rgba(75, 0, 0, 0.2); /* Dark Maroon overlay */
  padding: 10px;
  border: 3px dotted #FF4500; /* Orange-Red */
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 160px; /* Increase box height to accommodate taller images */
}
.art-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #FFDAB9; /* Soft Peach glow */
}
.art-item img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  object-position: center;
  border: 3px solid #000;
  filter: pixelate(2px);
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.art-item img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
  box-shadow: 0 0 10px #FFDAB9; /* Soft Peach glow */
}
/* Twitch: Pixelated frame */
.twitch-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
.twitch-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #000;
  box-shadow: 0 0 15px #FF4500; /* Orange-Red glow */
  filter: saturate(1.8);
}
/* Intro: Readable text */
.intro p,
.introduction p {
  color: #FFDAB9; /* Soft Peach */
  line-height: 1.6;
  background: rgba(255, 69, 0, 0.2); /* Soft Orange-Red overlay */
  padding: 12px;
  border-left: 5px solid #800000; /* Maroon */
  font-family: 'Mario64', 'VT323', monospace;
  font-size: 18px;
  text-shadow: 2px 2px 3px #000;
}
/* Occult Symbols: Thematic icons */
.occult-symbols {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.occult-symbols::before,
.occult-symbols::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('../../Icons/floppy_pixel.gif') no-repeat center;
  background-size: contain;
  opacity: 0.4;
  animation: float-symbol 20s linear infinite;
}
.occult-symbols::after {
  background: url('../../Icons/anarchy_pixel.gif') no-repeat center;
  animation-delay: -10s;
  animation-duration: 25s;
}
@keyframes float-symbol {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { opacity: 0.6; }
  100% { transform: translate(900px, 600px); opacity: 0.2; }
}
/* Mouse VTuber: Animated character */
.mouse-vtuber {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url('../../Icons/vtuber_mouse.gif') no-repeat center;
  background-size: contain;
  z-index: 100;
  pointer-events: none;
}
/* Pawprint: Cursor trail */
.pawprint {
  position: fixed;
  width: 20px;
  height: 20px;
  background: url('../../Icons/pawprint.png') no-repeat center;
  background-size: contain;
  opacity: 0.5;
  animation: fade-paw 2s ease-out forwards;
}
@keyframes fade-paw {
  0% { opacity: 0.5; }
  100% { opacity: 0; }
}