/* Screenshot gallery styles */
.mga-screenshots {
  margin: 1.5rem 0 1.2rem 0;
  text-align: center;
}
.mga-screenshots h3 {
  margin-bottom: 1rem;
  color: #388e3c;
  font-size: 1.25rem;
}
.mga-screenshots-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.mga-screenshot {
  width: 260px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  background: #fff;
  border: 2px solid #aee571;
  object-fit: cover;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mga-screenshot:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .mga-screenshot {
    width: 180px;
  }
}
@media (max-width: 600px) {
  .mga-screenshots-row {
    gap: 0.5rem;
  }
  .mga-screenshot {
    width: 100px;
  }
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #aee571 0%, #6ad1e3 100%);
  margin: 0;
  padding: 0;
  color: #2d2d2d;
}
.mga-header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  background: #f7fbbd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.mga-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 1.2rem;
  color: #ff9800;
  margin-top: 0.5rem;
}
.mga-main {
  max-width: 900px;
  margin: 1.5rem auto 1.5rem auto;
  background: #f7fbbd;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mga-hero h2 {
  color: #ff9800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 2px 0 #fffde4;
}
.mga-hero p {
  font-size: 1.1rem;
  color: #555;
}
/* Modern features grid */
.mga-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.mga-feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1rem 1rem 1rem;
  border: 2px solid #aee571;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mga-feature:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.02);
}
.mga-feature-icon {
  font-size: 2.2rem;
  margin-top: 0.2rem;
  color: #ff9800;
  flex-shrink: 0;
}
.mga-feature h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.08rem;
  color: #388e3c;
}
.mga-feature p {
  margin: 0;
  font-size: 0.98rem;
  color: #444;
}
/* Gallery and themes grid */
.mga-gallery {
  margin: 1.2rem 0;
}
.mga-themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mga-theme {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ff9800;
}
.mga-theme img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 0.7rem;
  background: #aee571;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  border: 2px solid #ff9800;
}
.mga-theme h4 {
  margin: 0.5rem 0 0.3rem 0;
  color: #388e3c;
  font-size: 1.1rem;
}
.mga-theme p {
  font-size: 0.98rem;
  color: #444;
}
@media (max-width: 900px) {
  .mga-main {
    max-width: 100vw;
    padding: 1rem;
    border-radius: 0;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .mga-main {
    padding: 0.5rem;
    gap: 0.7rem;
  }
  .mga-themes-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .mga-header {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}
.mga-cta {
  text-align: center;
  margin: 2rem 0 1rem 0;
}
.mga-play-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 32px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s;
  border: 2px solid #aee571;
}
.mga-play-btn:hover {
  background: #fb8c00;
}
.mga-footer {
  text-align: center;
  margin-top: 2rem;
  color: #388e3c;
  font-size: 0.95rem;
}
.mga-footer a {
  color: #ff9800;
  text-decoration: none;
  margin-right: 1rem;
}
.privacy-container {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2rem;
}
