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

body {
  font-family: 'Nunito', sans-serif;
  background-color: #fff8f2;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 30px 20px 10px;
}

header img {
  width: 120px;
  height: auto;
  border-radius: 20px;
}

header h1 {
  margin: 10px 0 5px;
}

header p {
  color: #666;
  margin: 0;
}

nav {
  text-align: center;
  margin: 10px 0 30px;
  padding: 10px;
}

nav a {
  margin: 0 8px;
  color: #0077cc;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

section h2 {
  color: #444;
  margin-top: 1.5em;
}

section ul {
  padding-left: 1.5em;
}

section a {
  color: #0077cc;
}

section a:hover {
  text-decoration: underline;
}

.screenshots {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
}

.screenshots img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.lang-switch {
  margin-left: 8px;
  font-size: 0.9rem;
  color: #888;
}

.lang-switch a {
  color: #0077cc;
  text-decoration: none;
}

.lang-switch a:hover {
  text-decoration: underline;
}
