@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&display=swap');

:root {
  /* Play Store Color Palette */
  --primary-green: #01875f;
  --primary-blue: #1a73e8;
  --accent-orange: #ff6f00;
  --background-white: #ffffff;
  --background-gray: #f8f9fa;
  --surface-white: #ffffff;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-tertiary: #9aa0a6;
  --border-light: #dadce0;
  --shadow-light: rgba(60, 64, 67, 0.3);
  --shadow-medium: rgba(60, 64, 67, 0.15);
  --rating-yellow: #ffc107;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-gray);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ensure all images are visible */
img {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}

img[src*="images/"] {
  display: block !important;
  visibility: visible !important;
}

/* Debug styles for images */
img:not([src]) {
  background-color: #ffcccc;
  border: 2px solid red;
}

img[src=""] {
  background-color: #ffcccc;
  border: 2px solid red;
}

/* Top Navigation */
.top-nav {
  background-color: var(--surface-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px var(--shadow-medium);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.nav-left .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-left .logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.app-name {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-center {
  flex: 1;
  max-width: 600px;
  margin: 0 24px;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--background-gray);
  border-radius: 24px;
  padding: 8px 16px;
  border: 1px solid var(--border-light);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--text-primary);
  padding: 8px 12px;
}

.search-input::placeholder {
  color: var(--text-tertiary);
}

.search-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
}

.nav-right {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background-color: #1557b0;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
}

.btn-install {
  background-color: var(--primary-green);
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 24px;
}

.btn-install:hover {
  background-color: #016d4f;
  box-shadow: 0 4px 12px rgba(1, 135, 95, 0.3);
  color: white;
  text-decoration: none;
}

.btn-share {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-share:hover {
  background-color: var(--background-gray);
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  margin: 24px 0;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.hero-content {
  display: flex;
  gap: 32px;
  align-items: center;
}

.app-logo {
  margin-bottom: 16px;
}

.main-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: contain;
}

.hero-info h1 {
  font-family: 'Google Sans', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.developer {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  color: var(--rating-yellow);
  font-size: 18px;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background-color: var(--background-gray);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  flex: 1;
  max-width: 300px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-light);
}

/* Section Headers */
.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

/* About Section */
.about-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.about-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.update-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.update-info p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.update-info strong {
  color: var(--text-primary);
}

/* Features Section */
.features-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--background-gray);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Gameplay Section */
.gameplay-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.gameplay-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gameplay-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gameplay-intro h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.gameplay-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gameplay-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.gameplay-feature {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--background-gray);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gameplay-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.gameplay-feature .feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.gameplay-feature h4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gameplay-feature p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.gameplay-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
}

.stat-number {
  font-family: 'Google Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

/* Videos Section */
.videos-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.videos-section .section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
  text-align: center;
}

.videos-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.video-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  position: relative;
  z-index: 3;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background-color: white;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 24px;
  text-align: center;
  z-index: 4;
}

.video-overlay h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.video-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.video-info h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.video-info p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.video-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.video-stats .stat {
  background-color: var(--primary-blue);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.video-item {
  background-color: var(--background-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.play-button-small {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-blue);
  transition: all 0.2s ease;
  position: relative;
  z-index: 3;
}

.video-item:hover .play-button-small {
  transform: scale(1.1);
  background-color: white;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 3;
}

.video-details {
  padding: 16px;
}

.video-details h4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.video-details p {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.4;
}

/* Bonus Section */
.bonus-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.bonus-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bonus-content {
  color: white;
}

.bonus-info h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bonus-amount {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.bonus-plus {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.bonus-spins {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.bonus-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}

.bonus-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.bonus-feature .feature-icon {
  font-size: 20px;
}

.bonus-action {
  text-align: center;
}

.bonus-timer {
  margin-bottom: 24px;
}

.timer-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.9;
}

.timer-display {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 60px;
}

.timer-number {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
}

.btn-bonus {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #ff6b35;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.btn-bonus:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.bonus-terms {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.bonus-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-animation {
  position: relative;
  width: 200px;
  height: 200px;
}

.coin-stack {
  position: absolute;
  top: 20px;
  left: 20px;
  animation: float 3s ease-in-out infinite;
}

.coin {
  display: block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #b8860b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 4px;
  animation: coinSpin 4s linear infinite;
}

.coin:nth-child(2) {
  animation-delay: 0.5s;
}

.coin:nth-child(3) {
  animation-delay: 1s;
}

.slot-machine {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  animation: slotSpin 2s ease-in-out infinite;
}

.reel {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

@keyframes coinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes slotSpin {
  0%, 100% { transform: rotateX(0deg); }
  50% { transform: rotateX(180deg); }
}

/* Screenshots Section */
.screenshots-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.screenshots-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.screenshots-carousel::-webkit-scrollbar {
  height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}

.screenshot-item {
  flex-shrink: 0;
  width: 200px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.screenshot-item {
  position: relative;
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 16px;
  text-align: center;
}

.screenshot-overlay h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.screenshot-overlay p {
  font-size: 12px;
  opacity: 0.9;
}

/* Games Section */
.games-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.game-category {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--background-gray);
  transition: transform 0.2s ease;
}

.game-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.game-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.game-category h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.game-category p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.game-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat {
  background-color: var(--primary-blue);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.overall-rating {
  font-family: 'Google Sans', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--text-primary);
}

.stars-large {
  color: var(--rating-yellow);
  font-size: 24px;
}

.total-reviews {
  color: var(--text-secondary);
  font-size: 16px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-item {
  padding: 20px;
  border-radius: 12px;
  background-color: var(--background-gray);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.reviewer-name {
  font-weight: 500;
  color: var(--text-primary);
}

.review-date {
  color: var(--text-tertiary);
  font-size: 14px;
}

.review-rating {
  color: var(--rating-yellow);
  font-size: 16px;
}

.review-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  background-color: var(--surface-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  background-color: var(--background-gray);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #e8f0fe;
}

.faq-question h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-toggle {
  font-size: 20px;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-white);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -2px 8px var(--shadow-medium);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s ease;
  color: var(--text-tertiary);
}

.nav-item.active {
  color: var(--primary-blue);
}

.nav-icon {
  font-size: 20px;
}

.nav-label {
  font-size: 12px;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--surface-white);
  border-top: 1px solid var(--border-light);
  margin-top: 80px;
  padding: 32px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}

.footer-brand {
  font-family: 'Google Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-info p {
  color: var(--text-tertiary);
  font-size: 12px;
  margin: 4px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 12px 16px;
  }
  
  .nav-center {
    display: none;
  }
  
  .main-content {
    padding: 0 16px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-info h1 {
    font-size: 28px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gameplay-features {
    grid-template-columns: 1fr;
  }
  
  .gameplay-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-main {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .bonus-visual {
    order: -1;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .screenshots-carousel {
    gap: 12px;
  }
  
  .screenshot-item {
    width: 160px;
    height: 240px;
  }
  
  .rating-summary {
    flex-direction: column;
    text-align: center;
  }
  
  .overall-rating {
    font-size: 36px;
  }
  
  .update-info {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 8px 12px;
  }
  
  .app-name {
    font-size: 18px;
  }
  
  .hero-section {
    padding: 24px;
    margin: 16px 0;
  }
  
  .hero-info h1 {
    font-size: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-install {
    width: 100%;
  }
  
  .features-section,
  .about-section,
  .screenshots-section,
  .games-section,
  .reviews-section,
  .faq-section {
    padding: 24px;
    margin-bottom: 16px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .gameplay-stats {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshot-item {
    width: 140px;
    height: 210px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}