/* Główne ustawienia strony - 90s Rap Fanpage Style */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #000000;
  /* Tło z Twoim plikiem graffiti.jpeg */
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('graffiti.jpeg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #00ff00;
  padding: 20px;
  line-height: 1.4;
  font-size: 0.9rem;
  cursor: auto; /* Ustawienie na auto przywraca standardowy kursor */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Nagłówek główny */
h1 {
  color: #00ff00;
  text-shadow: 3px 3px 0px #005500;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #00ff00;
  margin-bottom: 30px;
}

/* Styl okienek - Naprawiona klasa .window */
.window {
  border: 2px solid #00ff00;
  background: rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
}

.window-header {
  background: #00ff00;
  color: #000000;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
}

.window-content {
  padding: 15px;
}

/* Przyciski */
.music-btn {
  background: #000000;
  color: #00ff00;
  border: 2px solid #00ff00;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer; /* Zmienia kursor w łapkę przy najechaniu */
  text-decoration: none;
  display: inline-block;
}

.music-btn:hover {
  background: #00ff00;
  color: #000000;
}

/* Linki i Listy */
a {
  color: #00ff00;
  text-decoration: underline;
  cursor: pointer; /* Zmienia kursor w łapkę przy najechaniu na link */
}

a:hover {
  background-color: #00ff00;
  color: #000000;
}

ul {
  list-style-type: "> ";
  padding-left: 20px;
  color: #00ff00;
}

li {
  margin-bottom: 8px;
}

/* Migotanie tekstu */
.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}