/* ==== RESET / BASIC STYLING ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'MyGameFont', sans-serif;
  background: #f5f5f5;
  text-align: center;
  margin: 0;
  padding: 20px;
  padding-bottom: 50px;
  color: #222;
  line-height: 1.6;
}

/* ==== MAIN CONTAINER ==== */
.presskit-main-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

/* ==== LOGO ==== */
.presskit-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px; /* smaller for game logos */
  margin-left: auto;
  margin-right: auto;
}

.presskit-logo {
  width: 100%;
  height: auto;
  border-radius: 12px; /* slightly rounded */
  object-fit: contain;
}

/* ==== SITE LINK UNDER LOGO ==== */
.presskit-site-link {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #003366;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
}

.presskit-site-link:hover {
  color: #001a33;
}

/* ==== TITLE ==== */
h1 {
  font-size: 2rem;
  margin: 15px 0;
}

/* ==== GAME DESCRIPTION ==== */
.presskit-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

/* ==== BUTTONS (same as Brand page) ==== */
.presskit-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.presskit-actions a,
.presskit-actions button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Download button */
.presskit-download {
  background-color: #0070f3;
  color: #fff;
  border: none;
}

.presskit-download:hover {
  background-color: #005bb5;
}

/* Contact button */
.presskit-contact {
  background-color: #f3f3f3;
  color: #333;
  border: 1px solid #ccc;
}

.presskit-contact:hover {
  background-color: #e0e0e0;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 600px) {
  .presskit-main-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .presskit-logo-container {
    max-width: 250px;
    margin-bottom: 0.75rem;
  }

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

  .presskit-actions {
    flex-direction: column;
  }

  .presskit-actions a,
  .presskit-actions button {
    width: 100%;
  }
}
