.cover-heading {
  font-size: 250pt;
  line-height: 230pt;
  text-align: center;
}

#clock {
  color: #C7EB01;
}

#demo {
  color: #6AEBE8;
}

#date {
  color: #FFFFFF;
  font-size: 120pt;
  line-height: 120pt;
}

html,
body {
  background-color: #000 !important;
}

.settings-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(199, 235, 1, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1000;
}

.settings-icon:hover {
  background-color: rgba(199, 235, 1, 0.4);
  transform: rotate(90deg);
}

.settings-icon svg {
  width: 30px;
  height: 30px;
  fill: #C7EB01;
}

.cover-container {
  max-width: 100% !important;
}

.connection-error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
  padding: 10px 20px;
  text-align: center;
  font-size: 18pt;
  border-top: 2px solid #dc3545;
  animation: pulse 2s infinite;
  margin: 0;
  width: 100%;
}

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