body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111;
  text-align: center;
}

header {
  padding: 2rem 1rem 1rem;
}

.top-bar {
  background: #0078d7;  /* or whatever matches your theme */
  padding: 0.5rem 0;
  text-align: center;
  max-height: 60px;
}

.top-bar ms-store-badge {
  transform: scale(0.5) translateY(-45px);   /* Adjust: try 0.6–0.9 as needed */
  transform-origin: center;
  display: inline-block;
}

.logo {
  width: 100%;
  max-width: 400px; /* Prevents it from growing too big on desktop */
  height: auto;
  display: block;
  margin: 0 auto; /* Optional: center the image */
}

.main-heading {
  font-family: 'Poppins', serif;
  font-size: 4rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  color: #111; /* Adjust as needed */
  text-align: center;
}

.intro h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.intro p {
  max-width: 600px;
  margin: 0.5rem auto 2rem;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .main-heading {
    font-size: 2.2rem; /* Adjust based on visual balance */
  }
  
  .logo {
	  max-width: 300px;
  }
  
  .intro h2 {
	  font-size: 1.3rem;
  }
  
  .intro p {
	  font-size: 1rem;
  }
 
}

.screenshot img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.features {
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
}

.features h3 {
  font-size: 1.5rem;
  text-align: center;
}

.features ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  line-height: 1.8;
}


.video-container {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.store-button ms-store-badge {
	display: inline-block;
	transform: scale(0.8);        /* shrink to 80% */
	transform-origin: center;
}
	

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: bold;
}

footer {
  background: #0078d7;
  color: #fff;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 3rem;
}