body {
  background-color: rgba(255, 255, 255, 0.75);
  background-image: url("./images/bg-town.png");
  background-position: center top;
  background-attachment: fixed;
  margin: 0;

  min-height: 100vh;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333333;
  padding: 0;
}

@media (min-width: 768px) {
  body {
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  body {
    background-repeat: repeat;
    background-size: 544px 384px;
  }
}

.site-header {
  background: linear-gradient(135deg, #6fa8dc, #9fc5e8);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: 2em;
}

.subtitle {
  margin-top: 10px;
  font-size: 0.95em;
  opacity: 0.95;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;

  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  backdrop-filter: blur(2px);
}

h2 {
  border-bottom: 2px solid #6fa8dc;
  padding-bottom: 6px;
}

.note {
  font-size: 0.85em;
  color: #666;
}

.game-list {
  display: grid;
  gap: 15px;
}

.game-card {
  display: block;
  padding: 18px;
  border-radius: 10px;
  background-color: #f8fbff;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.game-card h3 {
  margin: 0 0 5px 0;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.screenshots img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.breadcrumb {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.download-area {
  text-align: center;
}

.download-button {
  display: inline-block;
  background: linear-gradient(135deg, #6fa8dc, #9fc5e8);
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.download-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.download-note {
  font-size: 0.85em;
  color: #555;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background-color: #6fa8dc;
  color: white;
  font-size: 0.75em;
  padding: 3px 8px;
  border-radius: 999px;
  margin-right: 5px;
}

.coming-soon {
  font-size: 0.85em;
  color: #777;
  margin-top: 10px;
}

.site-footer {
  text-align: center;
  font-size: 0.8em;
  color: #777;
  padding: 20px;
}

