body {
  font-family: Arial, sans-serif;
  margin: 20px;
  padding: 0;
  text-align: center;
  background-color: #fef5e2;
}

.container {
  margin: 40px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

h1 {
  font-size: 28px;
  color: #333;
}

p, li {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* --- Screenshots --- */
.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.screenshots img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Disable hover scaling by default (prevents "stuck hover" on mobile) */
.screenshots img:hover {
  transform: none;
}

/* Only enable hover effects on devices that actually support hover (mouse/trackpad) */
@media (hover: hover) and (pointer: fine) {
  .screenshots img {
    transition: transform 0.3s;
  }

  .screenshots img:hover {
    transform: scale(1.15);
  }
}

/* --- App store badges --- */
.app-store {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* allows wrap on medium-small widths */
}

/* Prefer this single source of truth for badge sizing */
.app-store .store-badge {
  height: 60px;
  width: auto;
  display: block;
  max-width: 100%; /* allows shrinking if needed */
}

/* Disable hover opacity by default (mobile-safe) */
.app-store img:hover {
  opacity: 1;
}

/* Only enable hover opacity on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .app-store img {
    transition: opacity 0.3s;
  }

  .app-store img:hover {
    opacity: 0.8;
  }
}

/* narrow screens: stack vertically and shrink */
@media (max-width: 420px) {
  .app-store {
    flex-direction: column;
  }

  .app-store .store-badge {
    height: 50px;
    max-width: 220px;
    width: 100%;
  }
}

/* --- Copyright block --- */
.copyrightContainer {
  display: flex;
  justify-content: center; /* centers .copyrightBlock horizontally */
  margin-top: 24px;
}

.copyrightBlock {
  text-align: center;
  font-size: 0.9rem;
}

.copyrightBottomLinks {
  text-decoration: none;
  margin: 0 4px;
  font-size: 11px;
  color: #885d02;
}

.copyrightBottomLinks:hover {
  text-decoration: underline;
}

.copyrightText {
  color: #aaa;
  margin: 0;
  font-size: 11px;
}

/* --- Header icon + title row --- */
img.icon_header {
  width: 32px;
  height: 32px;
  float: left;
  margin-right: 7px;
  display: inline-block;
}

.titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.titleRowTitle {
  margin: 0;
  line-height: 1;
}
