.app-detail {
  padding-bottom: 2rem;
}

.app-hero {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 1px 1px 5px #e0e0e0;
  background: #fff;
  padding: 20px;
}

.app-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #f8f4f0;
  color: #7a665a;
  font-size: 2.2rem;
  overflow: hidden;
}

.app-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-hero__lead {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #555;
}

.app-hero__summary {
  color: #666;
  line-height: 1.8;
}

.app-section p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

.app-feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #555;
}

.app-feature-list li {
  margin-bottom: 0.5rem;
}

.platform-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d7e6eb;
  background: #f6fbfd;
  color: #3a626c;
  font-size: 0.95rem;
}

.screenshot-item {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 1px 1px 4px #e0e0e0;
  overflow: hidden;
  margin: 0;
  background: #fff;
}

.screenshot-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top;
}

.screenshot-item figcaption {
  margin: 0;
  padding: 10px 12px;
  color: #666;
  font-size: 0.95rem;
}

.download-section {
  margin-bottom: 1.5rem;
}

.download-section__title {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

.direct-download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.direct-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #109ca4;
  background: #109ca4;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.direct-download-btn:hover {
  color: #fff;
  text-decoration: none;
  background: #0d8a91;
  border-color: #0d8a91;
}

.direct-download-btn__icon {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.download-btn:hover {
  color: #333;
  text-decoration: none;
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.download-btn__icon {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.download-btn--appstore {
  border-color: #000;
}

.download-btn--appstore:hover {
  background: #f9f9f9;
}

.download-btn--appstore .download-btn__icon {
  color: #000;
}

.download-btn--playstore {
  border-color: #3ddc84;
}

.download-btn--playstore:hover {
  background: #f0fff8;
}

.download-btn--playstore .download-btn__icon {
  color: #3ddc84;
}

.download-btn__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.download-btn__label-small {
  font-size: 0.75rem;
  color: #999;
  font-weight: normal;
}

.download-btn__label-main {
  font-size: 0.95rem;
  color: inherit;
}
}

.qr-section {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
}

.qr-section__lead {
  color: #666;
  text-align: center;
}

.qr-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.qr-item {
  text-align: center;
}

.qr-image {
  margin-bottom: 12px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  display: inline-block;
}

.qr-image img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.qr-label {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.app-links {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .app-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-hero__icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    font-size: 2rem;
  }
}
