/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #202124;
  line-height: 1.5;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  background-color: white;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Status Bar */
.status-bar {
  background-color: #000;
  color: white;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  height: 25px;
}

.status-icons-left, .status-icons-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-icons-left i {
  font-size: 14px;
}

.circle-icon {
  display: inline-block;
  background-color: #00caf2;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
}

.small-circle {
  font-size: 6px;
}

.status-icons-right {
  display: flex;
  align-items: center;
  gap: 3px;
}

.signal-bars {
  position: relative;
  width: 16px;
  height: 14px;
}

.signal-bars:before {
  content: '';
  display: block;
  width: 15px;
  height: 13px;
  border: 2px solid white;
  border-left: none;
  border-bottom: none;
  position: absolute;
  top: 0;
  right: 0;
}

/* Navigation Bar */
.nav-bar {
  background-color: #202124;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.address-bar {
  flex: 1;
  background-color: #303134;
  border-radius: 20px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 10px;
  color: white;
  font-size: 14px;
}

.url {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Google Play Header */
.google-play-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e0e0e0;
  background-color: white;
}

.google-play-logo img {
  height: 40px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: #5f6368;
}

.profile-icon {
  font-size: 30px;
  color: #c5c5c5;
}

/* App Details */
.app-details {
  display: flex;
  padding: 20px 15px;
  gap: 15px;
  align-items: center;
}

.app-icon img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
}

.app-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.app-title {
  font-size: 28px;
  font-weight: 500;
}

.app-subtitle {
  color: #5f6368;
  font-size: 14px;
}

/* App Stats */
.app-stats {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.rating {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating i {
  color: #ffc107;
}

.comments, .age-info, .subtitle {
  color: #5f6368;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.downloads {
  font-size: 16px;
  font-weight: 500;
}

.age-rating {
  font-size: 16px;
  font-weight: 500;
  background-color: #f5f5f5;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

/* Action Buttons */
.install-button-link {
  display: block;
  width: 100%;
  text-decoration: none;
  margin-bottom: 15px;
}

.install-button {
  background-color: #01875f;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
}

.secondary-actions {
  display: flex;
  justify-content: space-around;
  color: #01875f;
  font-size: 14px;
}

.share-action, .wishlist-action {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Screenshot */
.screenshot {
  padding: 0 10px;
  margin-bottom: 15px;
}

.screenshot img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
}

/* Game Introduction */
.game-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #e0e0e0;
}

.game-intro h2 {
  font-size: 18px;
  font-weight: 500;
}

.game-intro i {
  color: #5f6368;
  font-size: 20px;
}

/* Game Description */
.game-description {
  padding: 10px 15px 20px;
  color: #5f6368;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

/* Bottom Navigation */
.bottom-nav {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: white;
  position: fixed;
  bottom: 45px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #5f6368;
  font-size: 12px;
}

.nav-item i {
  font-size: 20px;
}

.nav-item.active {
  color: #01875f;
}

/* Bottom Bar */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 80px;
  background-color: white;
  border-top: 1px solid #e0e0e0;
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
}

.bottom-bar i {
  font-size: 20px;
  color: #5f6368;
}
