body {
  background-color: #000000;
  background-image: url('https://web.archive.org/web/20091026223346im_/http://geocities.com/psykopat_2k/bg2.gif');
  color: #FF0000;
  font-family: 'Comic Sans MS', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.site-wrapper {
position:relative;
}

.site-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('mb-background.png') center center;
  background-size: cover;
  z-index: -1;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    0 0,
    20% 0,
    20% 100%,
    80% 100%,
    80% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.navbar {
  position: relative;
  z-index:2;
  background-color: #330000;
  border: 3px double #FF0000;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.navbar a {
  color: #FF9900;
  text-decoration: none;
  margin: 0 10px;
  font-size: 18px;
}

.navbar a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}


.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #111;
  border: 2px solid #FF0000;
  border-radius: 15px;
  box-shadow: 0 0 15px #FF0000;
  text-align: center;
  position: relative;
  z-index: 1;
}


h1 {
  color: #FF0000;
  text-shadow: 2px 2px 0 #990000, 4px 4px 0 #330000;
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'Impact', 'Arial Black', sans-serif;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #FF0000; }
  to { text-shadow: 0 0 20px #FF0000, 0 0 30px #FF3333; }
}

/* Texto */
p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Listas */
ul {
  text-align: left;
  margin: 20px auto;
  width: 300px;
  list-style-type: square;
}

li {
  margin-bottom: 10px;
}

/* Links */
a {
  color: #FF6600;
  text-decoration: none;
}

a:hover {
  color: #FF0000;
  text-decoration: underline;
}

/* Imagens */
img {
  border: none;
  margin: 15px 0;
  max-width: 100%;
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: #666666;
}

.counter {
  background-color: #000000;
  border: 1px solid #FF0000;
  color: #00FF00;
  font-family: 'Courier New', monospace;
  padding: 5px 10px;
  display: inline-block;
  margin: 20px auto;
}


.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #220000;
  padding: 5px 0;
  margin: 10px 0;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  color: #FFCC00;
  padding-right: 100%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.counter {
  font-family: 'Courier New', monospace;
  color: lime;
  background: black;
  padding: 5px 10px;
  border: 1px solid red;
  display: inline-block;
  margin: 10px 0;
  text-shadow: 0 0 5px #00FF00;
  animation: flicker 0.5s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

#visitorCount {
  letter-spacing: 2px;
  font-size: 1.2em;
}

.music-player {
  margin: 20px 0;
  background: #220000;
  padding: 10px;
  border: 1px dashed #FF0000;
}

.bg-left, .bg-right {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc(50% - 400px); 
  z-index: -1;
  background: url('mb-background.png') center center;
  background-size: cover;
}

.bg-left {
  left: 0;
  background-position: left center;
}

.bg-right {
  right: 0;
  background-position: right center;
}