
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.4;
  }
}

body {
  margin: 0;
  background-color: black;
  color: #00ff00;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  animation: flicker 2s infinite;
}

.boot-container {
  text-align: center;
  width: 80%;
  max-width: 600px;
}

.boot-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #003300;
  border: 1px solid #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #00ff00;
  animation: load 5s forwards;
}

@keyframes load {
  0% { width: 0%; }
  100% { width: 100%; }
}

.press-enter {
  display: none;
  margin-top: 2rem;
  font-size: 1rem;
  animation: flicker 1.5s infinite;
}


.press-enter::after {
  content: " |";
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}


body, * {
  cursor: url('assets/cursor/green_cursor.cur'), auto;
}


/* Курсор в стиле терминала */
body {
  cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAOCAYAAAD0f5bSAAAAAXNSR0IArs4c6QAAAKdJREFUKFNjZCAS0I0BKmBg+L///z/9WQwMMBQgQNNRIzFBEjvHn//PwMxIiLuw9+vXr+//////+1cDAwMDAPBgYGAADEv5cZGBgYVgpGRkYBoAEQsT6RhjAKaFBQBFRpaFgU5e/v///+eQ3cDJkYGBgdNDR8NBBbhSwkDAwMDwv9A5b1ALzUCPZLKd1hAAAy3u8mwK2ff7AAAAABJRU5ErkJggg=='), auto;
}

/* Кнопка "Домой" крупнее и с подсветкой */
.home-button {
  font-size: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 2px solid #00ff00;
  border-radius: 5px;
  background: transparent;
  color: #00ff00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-button:hover {
  background-color: #003300;
  box-shadow: 0 0 10px #00ff00;
}


body {
  cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAOCAYAAAD0f5bSAAAAAXNSR0IArs4c6QAAAKdJREFUKFNjZCAS0I0BKmBg+L///z/9WQwMMBQgQNNRIzFBEjvHn//PwMxIiLuw9+vXr+//////+1cDAwMDAPBgYGAADEv5cZGBgYVgpGRkYBoAEQsT6RhjAKaFBQBFRpaFgU5e/v///+eQ3cDJkYGBgdNDR8NBBbhSwkDAwMDwv9A5b1ALzUCPZLKd1hAAAy3u8mwK2ff7AAAAABJRU5ErkJggg=='), auto;
}

a.home-button {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.4rem 1rem;
  border: 2px solid #00ff00;
  border-radius: 6px;
  color: #00ff00;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

a.home-button:hover {
  background-color: #003300;
  box-shadow: 0 0 10px #00ff00;
}
