/* ------------------------------
   Variables & Base
------------------------------ */

:root {
  --text-main: #222;
  --text-muted: #555;
  --bg-main: #fafafa;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu, Cantarell,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em 0;
}

p {
  margin: 0 0 1em 0;
  color: var(--text-muted);
  max-width: 60ch;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------
   Header / Navigation
------------------------------ */

.site-header {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 26px;
}

/* ------------------------------
   Hero
------------------------------ */

.hero {
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  padding: 5rem;
  max-width: 960px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero .slogan {
  font-size: 1.05rem;
  color: var(--text-main);
}

/* ------------------------------
   Sections
------------------------------ */

.section {
  padding: 4rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* ------------------------------
   Layers grid (Yellowstone)
------------------------------ */

.layers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.layer img {
  width: 100%;
  display: block;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.layer h3 {
  font-size: 1.1rem;
}

.tag {
  font-size: 0.85rem;
  font-weight: 600;
}

.tag.free {
  color: #2f6f44;
}

.tag.premium {
  color: #3a5f8c;
}
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.play-badge {
  height: 44px;
  width: auto;
  opacity: 0.85;
}

.play-badge:hover {
  opacity: 1;
}

.apk-option a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.apk-option a:hover {
  background: #f6f6f6;
}

.option-note {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  opacity: 0.7;
}


.buy-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.buy-button:hover {
  background: #000;
  color: #fff;
}



/* ------------------------------
  APK-download
------------------------------ */
.download-note {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ------------------------------
   Footer
------------------------------ */

footer {
  padding: 2rem 4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 768px) {
  .hero-content,
  .section,
  footer {
    padding: 2rem;
  }
  }

