/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #010a0d;
  color: #eee;
  margin: 0;
  padding: 0;
  text-align: center;
  padding-top: 20px;
}

a {
  color: #1e90ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header */
header {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 10px; /* reduce gap under logo area */
  text-align: center;  /* keep logo centered */
}
header .logo {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 600px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px; /* reduce gap under logo area */
}
#language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  font-size: 0.9rem;
  background-color: #1b2838; /* dark Steam-style background */
  color: #fff;               /* white text */
  border: 1px solid #444;    /* subtle border */
  border-radius: 5px;
  cursor: pointer;
}

/* Change arrow color on some browsers */
#language-selector option {
  background-color: #1b2838;
  color: #fff;
}

/* Optional: hover/focus effect */
#language-selector:hover,
#language-selector:focus {
  border-color: #00ff99;    /* neon highlight */
  outline: none;
}

/* Sections */
section {
  margin: 40px auto;   /* reduce vertical gap between sections */
  padding: 0 20px;     /* keep a bit of space on sides for mobile */
  max-width: 900px;    /* keeps everything nicely contained */
}
h2 {
  color: #ffb347;
  margin-bottom: 10px; /* smaller space under section titles */
}
p {
  max-width: 700px;     /* keeps it from being too wide */
  margin: 0 auto;       /* centers it horizontally */
  line-height: 1.6;     /* improves readability */
  text-align: center;   /* optional — makes text centered */
  margin-top: 0;
  margin-bottom: 15px; /* reduce paragraph bottom spacing */
}

/* Screenshots */
/* Screenshot slider layout */
#screenshots {
  text-align: center;
  position: relative;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.slider img {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

/* Arrows */
.arrow {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
  color: #00ff99; /* optional hover color */
}

.screenshots img {
  max-width: 300px;
  margin: 5px;
  border: 2px solid #444;
  border-radius: 8px;
}

/* Steam Button */
.steam-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #1b2838;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 1rem;
}
.steam-button:hover {
  background: #2a475e;
}

/* Footer */
footer {
  background: #222;
  padding: 1rem;
  font-size: 0.85rem;
  color: #888;
}