  body {
  margin: 0;
  padding: 0;
  background-image: url(hero.webp);
  background-size: cover;
  }

  .transparent-bar {
  background-color: rgba(79, 79, 79, 0.566);
  width: 100%;
  height: 10vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: auto;
  padding: 0 20px;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  .logo {
  width: 48px;
  height: 48px;
  margin-left: 16px;
  }
  .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.576);
  filter: brightness(60%) blur(5px);
  }

  .brand-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-left: 10px;
  color: rgb(230, 220, 220);
  }
  .center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 48px;
  }
  .center-text-sm {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: rgb(255, 255, 255);
    font-size: 36px;
    margin-top: 10px;
  }
  .download-button {
    position: relative;
    margin-top: 20px;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    text-decoration: none;
    cursor: default;
    background-image: radial-gradient(#ff0000, #bf3f10);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    animation: flash 1s infinite alternate;
  }
  .chicken-peck {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
  }
  .links {
  margin-left: auto;
  white-space: nowrap;
  padding: 40px;
  }
  .nav-link {
  margin-left: 20px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  }
  .nav-link:hover {
  text-decoration: underline;
  }
  .section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  .section-content {
    font-family: 'Roboto', sans-serif;
    color: #666;
  }
  .section-content p {
    margin-bottom: 20px;
  }
  .section-content ul {
    list-style-type: none;
    padding: 0;
  }
  .link-as-text {
    color: inherit;
    text-decoration: none;
    cursor: text;
  }
  .link-as-text:hover {
    color: inherit;
  }
  .section-content ul li {
    margin-bottom: 10px;
  }
  .footer {
  background-color: rgba(24, 24, 24, 0.88);
    color: #fff;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-variant-emoji: emoji;
    font-stretch: expanded;
    text-align: center;
    font-size: 24px;
  }
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  .txt-compatible {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #c9c9c9;
  }