@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Navigation */

.navbar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f766e;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-weight: 600;
}

.nav-links a:hover {
  color: #0f766e;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #0f766e, #134e4a);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
}

.tagline {
  opacity: .9;
}

.btn {
  display: inline-block;
  background: white;
  color: #0f766e;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
}

/* Sections */

.featured,
.welcome,
.about,
.products,
.games,
.suggestions,
.reviews {
  padding: 60px 20px;
  text-align: center;
}

.featured,
.welcome,
.about {
  background: white;
}

.products h2,
.about h2,
.contact h2,
.games h2,
.reviews h2,
.suggestions h2 {
  margin-bottom: 25px;
  color: #0f766e;
}

/* Products */

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.product-card {
  background: white;
  width: 320px;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.price {
  font-size: 1.8rem;
  color: #0f766e;
  font-weight: bold;
  margin: 15px 0;
}

/* Buttons */

button {
  background: #0f766e;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
}

button:hover {
  opacity: .9;
}

/* Contact */

.contact {
  background: #0f766e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* Games */

.game-section {
  background: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

#board {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.cell {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

/* Suggestions */

#suggestionInput {
  width: 300px;
  height: 100px;
  padding: 10px;
}

#suggestionList {
  list-style: none;
}

/* Footer */

.footer {
  background: #134e4a;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Back To Top */

#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f766e;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
}