/* Cascadou Press Kit Styles */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
}
header {
  background: #222;
  color: #fff;
  padding: 1.5rem 1rem 1rem 1rem;
  text-align: center;
}
header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.steam-link {
  display: inline-block;
  background: #1b2838;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.steam-link:hover {
  background: #66c0f4;
  color: #222;
}
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
}

.links h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #1b2838;
}
.copy-link-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  max-width: 480px;
  margin-bottom: 1rem;
}
.copy-link-container input[type="text"] {
  flex: 1;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fff;
  color: #222;
}
.copy-link-container button {
  padding: 0.45rem 1.1rem;
  font-size: 1rem;
  background: #1b2838;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.copy-link-container button:active,
.copy-link-container button:focus {
  background: #66c0f4;
  color: #222;
  outline: none;
}
.about h2,
.trailer h2,
.screenshots h2,
.art-assets h2 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #1b2838;
}
.about p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.screenshot-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.15s;
}
.screenshot-grid img:hover {
  transform: scale(1.04);
}
.art-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.art-grid img {
  max-width: 180px;
  max-height: 120px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  padding: 0.5rem;
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  padding: 1.5rem 0 1rem 0;
}
/* Modal styles for full-screen screenshot */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.modal-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.close {
  position: absolute;
  top: 2.5vh;
  right: 3vw;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 1.3rem;
  }
  main {
    padding: 0 0.3rem;
  }
  .art-grid img {
    max-width: 120px;
    max-height: 80px;
  }
}
