body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff4e8;
  color: #4b3528;
}

/* Header with game logo */
.game-header {
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-sizing: border-box;
  overflow: hidden;

  background-color: #e9a178;
  background-image: radial-gradient(
    circle at center,
    #f6c5a8 0%,
    #e9a178 65%,
    #d98961 100%
  );
}

/* Game logo */
.game-logo {
  display: block;
  width: auto;
  max-width: 650px;
  max-height: 260px;
  object-fit: contain;

  filter: drop-shadow(0 8px 8px rgba(91, 55, 37, 0.28));
  transition: transform 0.25s ease;
}

/* Logo hover effect */
.game-logo:hover {
  transform: scale(1.03);
}

/* Navigation bar */
nav {
  background-color: #d97b55;
  text-align: center;
  padding: 15px;
}

/* Navigation links */
nav a {
  color: white;
  text-decoration: none;
  margin: 0 18px;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Navigation hover effect */
nav a:hover {
  background-color: #fff4e8;
  color: #a64f32;
}

/* Main content area */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Each section box */
section {
  background-color: #fffdf9;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120, 75, 50, 0.12);
}

/* Section titles */
section h2 {
  margin-top: 0;
  color: #b85f3d;
}

/* Paragraph text */
section p {
  font-size: 18px;
  line-height: 1.6;
  color: #5b4032;
}

/* Demo placeholder */
.demo-placeholder {
  background-color: #fff8f1;
  border: 2px dashed #e3a17f;
  border-radius: 12px;
  padding: 35px;
  text-align: center;
}

/* YouTube video container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Screenshot layout */
.screenshot-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}

/* Remove extra space after last screenshot */
.screenshot-row:last-child {
  margin-bottom: 0;
}

/* Left side text */
.screenshot-text {
  flex: 1;
}

/* Screenshot subtitles */
.screenshot-text h3 {
  color: #8f4f36;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Right side image */
.screenshot-image {
  flex: 1;
}

/* Screenshot image */
.screenshot-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120, 75, 50, 0.18);
}

/* Info and Download combined box */
.info-download-box {
  display: flex;
  gap: 30px;
  background-color: #fff8f1;
  padding: 25px;
  border-radius: 8px;
  align-items: flex-start;
}

/* Left side: More Info */
.more-info-column {
  flex: 1;
}

/* Right side: Download */
.download-column {
  flex: 1;
}

.more-info-column h3,
.download-column h3 {
  margin-top: 0;
  color: #8f4f36;
}

.more-info-column p,
.download-column p {
  font-size: 17px;
  margin: 10px 0;
}

/* Download clickable box */
.download-card {
  display: block;
  background-color: #d97b55;
  color: white;
  text-decoration: none;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(120, 75, 50, 0.2);

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

/* Download box hover effect */
.download-card:hover {
  background-color: #b85f3d;
  transform: translateY(-2px);
}

/* Big text inside download box */
.download-title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Small text inside download box */
.download-text {
  display: block;
  font-size: 16px;
}

/* Text under download box */
.download-note {
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
  color: #6b4a3a;
}

/* Developer profile layout */
.developer-profile {
  display: flex;
  align-items: center;
  gap: 30px;
}

.developer-image {
  flex: 0 0 180px;
}

.developer-image img {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120, 75, 50, 0.18);
}

/* Right side developer introduction */
.developer-info {
  flex: 2;
}

.developer-info h3 {
  margin-top: 0;
  color: #8f4f36;
  font-size: 24px;
}

/* Footer */
footer {
  background-color: #d97b55;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
}

footer p {
  margin: 0;
}
