/* Base styles */
body {
  background-color: #121212;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  justify-content: flex-start; 
}

.logo img {
  width: 60px;
  height: 60px;
  margin-right: 0.5rem;
}

h1 {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.highlight {
  color: #f44336;
}

.description {
  color: #bdbdbd;
  font-size: 1.2rem;
  font-weight: 200;
  margin: 0 0 2rem;
  margin-right: 5rem;
}

.cover-btn {
    margin-top: 5rem;
}

.cta-button {
  background-color: #fff;
  color: #000;
  padding: 1rem 4rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  margin-top: 10rem;
}

.cta-button:hover {
  background-color: #e0e0e0;
}

.note {
  margin-top: 1rem;
  font-weight: 200;
  color: #888;
  font-size: 0.8rem;
}

.screenshot {
  display: block;
  width: 100%;              
  max-width: 780px;       
  height: auto;
  margin: 2rem auto;
}



.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 200;
  color: #888;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding-bottom: 2rem;
}

.footer a {
  color: #888;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}





@media (min-width: 768px) {
  .container {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }


  .text-block {
    flex: 1;
  }

  .screenshot {
    flex: 1;
    max-width: 640px;
  }

  .footer {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}






@media (max-width: 1000px) {
  .container {
    display: flex;
    flex-direction: column;   
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .logo {
    justify-content: center; 
  }
  


.description {
  margin-left: 5rem;
  margin-right: 5rem;
}



}







@media (max-width: 500px) {
  .container {
    display: flex;
    flex-direction: column;   
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .logo {
    justify-content: center; 
  }
  
  h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.description {
  color: #bdbdbd;
  font-size: 1.1rem;
  font-weight: 200;
  margin: 0 0 0rem;
  margin-right: 0rem;
}

.cta-button {
  margin-top: 3rem;
}



  .text-block {
    flex: none;
    width: 100%;
    text-align: center;
  }

  
.screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 2rem auto;
}



  .footer {
    margin-top: 1rem;
    flex-direction: column;
    text-align: center;
    font-size: 1.1rem;
    gap: 2rem;
  }
}

