/* BronzeWorld Website Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  background-image: url('./websiteassets/tilewp.png');
  background-repeat: repeat;
  color: #e0d0b0;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  line-height: 1.8;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 4, 0.95);
  border-bottom: 3px solid #c87020;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  flex-wrap: wrap;
}

nav a {
  color: #f0c040;
  text-decoration: none;
  font-size: 11px;
  padding: 6px 14px;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffd700;
}

nav a.active {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

nav a.playnow {
  color: #c87020;
  border: 2px solid #c87020;
  padding: 6px 18px;
  font-size: 12px;
}

nav a.playnow:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

h1 {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
}

h2 {
  color: #f0c040;
  font-size: 15px;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c87020;
  padding-bottom: 8px;
}

h3 {
  color: #e0b830;
  font-size: 13px;
  margin-top: 24px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

a {
  color: #f0c040;
}

a:hover {
  color: #ffd700;
}

/* Homepage hero */
.hero {
  text-align: center;
  padding: 48px 0 32px;
}

.hero img {
  max-width: 280px;
  margin-bottom: 24px;
  image-rendering: pixelated;
}

.hero .tagline {
  color: #c87020;
  font-size: 11px;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  color: #ffd700;
  border: 2px solid #c87020;
  padding: 14px 32px;
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s, border-color 0.2s;
}

.cta-button:hover {
  background: rgba(200, 112, 32, 0.3);
  border-color: #ffd700;
  color: #ffd700;
}

/* Latest update section */
.latest-update {
  background: rgba(10, 8, 4, 0.7);
  border: 1px solid #c87020;
  padding: 24px;
  margin-top: 40px;
}

/* Map page */
.world-map-container {
  text-align: center;
  margin: 24px 0;
}

.world-map-container img {
  max-width: 100%;
  border: 2px solid #c87020;
  image-rendering: pixelated;
}

/* Guide page — 30% smaller base font */
body.guide-page {
  font-size: 8.4px;
}

body.guide-page h1 { font-size: 15px; }
body.guide-page h2 { font-size: 11px; }
body.guide-page h3 { font-size: 9px; }

/* Guide sections */
.guide-section {
  background: rgba(10, 8, 4, 0.5);
  border: 1px solid rgba(200, 112, 32, 0.3);
  padding: 20px;
  margin-bottom: 24px;
}

/* Guide entry tiles — title on own line */
.guide-entry h4 {
  color: #f0c040;
  font-size: 1em;
  margin-bottom: 6px;
}

.guide-entry p {
  margin-bottom: 0;
}

.guide-entry {
  margin-bottom: 14px;
}

.guide-entry:last-child {
  margin-bottom: 0;
}
