/* Светлая тема в стиле Google Play (портировано из gp.vue) */
:root {
  color-scheme: light;
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #e8eaed;
  color: #202124;
  -webkit-font-smoothing: antialiased;
}

.play-store-container {
  background-color: #ffffff;
  color: #202124;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Главный блок */
.app-content {
  padding: 24px 16px 16px;
}

.app-hero {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  flex-shrink: 0;
  object-fit: cover;
}

.app-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  min-width: 0;
}

.app-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.app-developer {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 12px;
  color: #5f6368;
  margin-top: 2px;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  color: #5f6368;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.score {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}

.star {
  width: 16px;
  height: 16px;
}

.dot {
  opacity: 0.6;
}

/* Кнопка установки */
.install-slot {
  margin: 0 0 24px;
}

.install-btn {
  width: 100%;
  padding: 11px;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.15s;
}

.note {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6368;
  background: #f1f3f4;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0;
}

/* Скриншоты */
.screenshots-section {
  margin-bottom: 24px;
}

.screenshots-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-carousel::-webkit-scrollbar {
  display: none;
}

.screenshot-img {
  height: 240px;
  width: auto;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: cover;
  background: #f1f3f4;
}

/* Описание */
.description-section {
  margin-bottom: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.description-text {
  font-size: 14px;
  color: #444746;
  line-height: 1.5;
  max-height: 80px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.description-text.expanded {
  max-height: 2000px;
}

.description-text p {
  margin: 0;
}

.expand-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0 0;
  cursor: pointer;
  font-family: inherit;
}

/* Отзывы */
.reviews-section {
  margin-bottom: 32px;
}

.review-card {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dadce0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #5f6368;
  flex-shrink: 0;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-section .review-card + .review-card {
  margin-top: 12px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.review-stars {
  font-size: 12px;
  color: #e8eaed;
  -webkit-text-stroke: 1px #fbbc04;
  margin-top: 2px;
}

.review-text {
  font-size: 14px;
  color: #444746;
  margin: 0;
  line-height: 1.4;
}
