
  html,
  body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: white;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }

  h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    text-align: center;
  }



  .pwa-banner {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: #2e2e2e;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pwa-banner .btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.pwa-banner .btn.close {
  background: transparent;
  color: #ccc;
}