* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: linear-gradient(to bottom, #000000, #1a1a2e);
  min-height: 100vh;
  color: white;
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
}

.navbar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.logo {
  width: 100%;
  max-width: 394px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-buttons a {
  white-space: nowrap;
}

.privacy-btn {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .extension-btn {
    display: none;
  }
}

.extension-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: background-color 0.2s ease;
}

.extension-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main-content {
  text-align: center;
  margin-top: 150px;
  padding: 0 40px;
}

.title {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 64px;
}

.chrome-btn {
  background: hsla(256, 62%, 52%, 1);
  color: white;
  padding: 20px 64px;
  border-radius: 8px;
  line-height: 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 23px;
  gap: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.chrome-btn:hover {
  background: hsla(256, 70%, 56%, 1);
}

.chrome-btn:active {
  background: hsla(256, 62%, 42%, 1);
}

.chrome-btn span {
  font-weight: 300;
  font-size: 18px;
}

.rating {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stars {
  color: #ffd700;
}
