/* Version 1 */
body {
margin: 0;
font-family: Arial, sans-serif;
color: #111;
background: #f5f5f5;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 30px; /* was 20px */
}

/* =========================
NAVBAR
========================= */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 22px;
font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 15px;
  position: static;
  width: auto;
  background: none;
  padding: 0;
  border: none;
}

.nav-links.active {
  display: flex;
}

/* NAV BUTTONS */
.nav-links a {
  margin-left: 0;
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  background: #9cedfa;
  transition: 0.2s;
}
.logo a {
  text-decoration: none;
  color: black;
}
.nav-links a:hover {
background: #7ed9e8;
}

/* =========================
HERO
========================= */
.hero {
padding: 80px 0;
background: #f5f5f5;
}

.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.hero-text {
flex: 1;
}
/* SCREENSHOTS GRID */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.screenshots-grid img {
  width: 100%;
  border-radius: 10px;
}

.hero-text h1 {
font-size: 48px;
margin-bottom: 15px;
}

.features-list {
padding-left: 20px;
}

.features-list li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}
/* SCORING IMAGE */
.scoring-image {
  text-align: center;
  margin-top: 30px;
}

.scoring-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
}
/* IMAGE PANEL */
.hero-image {
flex: 0 0 380px;
text-align: center;
background: #66c7d1;
padding: 30px 15px;
border-radius: 10px;
}

.hero-image img {
max-width: 280px;
width: 100%;
}

/* STORE BUTTONS */
.store-buttons {
margin-top: 25px;
display: flex;
align-items: center;
gap: 15px;
}

.store-buttons img {
height: 45px;
display: block;
}

/* =========================
BUTTON LINKS SECTION
========================= */
.quick-links {
padding: 50px 0;
text-align: center;
background: white;
}

.buttons-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
}

.btn {
background: #9cedfa;
padding: 12px 20px;
text-decoration: none;
color: black;
border-radius: 6px;
font-weight: bold;
transition: 0.2s;
}

.btn:hover {
background: #7ed9e8;
}

/* HAMBURGER (default hidden on desktop) */
/* HAMBURGER (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
/* HAMBURGER */
/* SHOW hamburger */
.menu-toggle {
  display: block;
}
  /* NAVBAR */
.nav-content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

  .logo {
    text-align: center;
  }
.screenshots-grid {
  grid-template-columns: repeat(2, 1fr);
}
  .nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background: white;
  margin-top: 10px;
}

.nav-links.active {
  display: flex;
}

  .nav-links a {
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
  }

  /* HERO */
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .features-list {
    text-align: left;
    padding-left: 20px;
  }
.scoring-image img {
  max-width: 100%;
}
  /* IMAGE */
  .hero-image {
    width: 100%;
    margin-top: 20px;
  }

  .hero-image img {
    max-width: 220px;
  }

  /* STORE BUTTONS */
  .store-buttons {
    justify-content: center;
  }
}