/* Navigation bar styles */
.main-nav {
  width: 100%;
  background: #0f3460;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em 0 0.5em 0;
  box-shadow: 0 2px 8px #0004;
  margin-bottom: 1.5em;
}
.main-nav a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #e94560;
}
.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.5em;
}
.hero-description {
  font-size: 1rem;
  color: #9aa3b2;
  margin-top: 0.5em;
}
.hero-gif {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Ensure character image is above the download button and both are centered */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-img-note { /* Custom classes for images and links moved from inline styles */ }
.character-img {
  width: 240px;
  height: auto;
  max-width: 240px;
  margin: 1.2em auto 0.5em;
  display: block;
  filter: drop-shadow(0 0 12px #0ff6);
}
.splash-img, .gameplay-img, .feature-img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 2em auto 0;
  border-radius: 12px;
  box-shadow: 0 0 18px #0ff4;
}
.gameplay-img, .feature-img {
  margin: 2rem auto 1rem;
}
.privacy-link {
  color: #00d4ff;
  text-decoration: none;
  font-size: 1em;
}
.privacy-link:hover {
  text-decoration: underline;
}
body {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  font-family: 'Orbitron', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
  text-align: center;
  margin-top: 3em;
}
h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
}
.cta {
  background: #e94560;
  color: #fff;
  padding: 0.8em 2em;
  border: none;
  border-radius: 30px;
  font-size: 1.2em;
  margin: 2em 0;
  cursor: pointer;
  box-shadow: 0 0 10px #e94560aa;
  transition: background 0.2s;
}
.cta:hover {
  background: #ff2e63;
}
.features {
  max-width: 500px;
  margin: 1rem auto;
  background: #16213e99;
  border-radius: 16px;
  padding: 1em;
  box-shadow: 0 0 20px #0f346055;
}
/* .features h2 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
} */
.features ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}
.features li {
  margin-bottom: 0.7em;
  padding-left: 1.6em;
  position: relative;
}

.features li::before {
  content: '\1F537'; /* Large blue diamond Unicode */
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.1em;
  color: #00d4ff;
  line-height: 1;
}
.container {
  max-width: 700px;
  background: #16213e99;
  border-radius: 16px;
  padding: 2em 1.5em;
  margin: 3em auto 2em;
  box-shadow: 0 0 20px #0f346055;
}
h1, h2, h3 {
  color: #e94560;
}
a, a:visited {
  color: #00d4ff;
}
ul, ol {
  margin-left: 1.5em;
}
summary {
  font-weight: bold;
  color: #e94560;
}
footer {
  margin-top: auto;
  padding: 1em 0;
  font-size: 0.9em;
  color: #aaa;
  text-align: center;
}
.back-link {
  display: inline-block;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  color: #00d4ff;
  text-decoration: none;
  font-size: 1.1em;
}
.back-link:hover {
  text-decoration: underline;
}
/* 404 styles */
body.notfound {
  background: #ECEFF1;
  color: rgba(0,0,0,0.87);
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
#message {
  background: white;
  max-width: 360px;
  margin: 100px auto 16px;
  padding: 32px 24px 16px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#message h3 {
  color: #888;
  font-weight: normal;
  font-size: 16px;
  margin: 16px 0 12px;
}
#message h2 {
  color: #ffa100;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
}
#message h1 {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  margin: 0 0 16px;
}
#message p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}
#message a {
  display: block;
  text-align: center;
  background: #039be5;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#load {
  color: rgba(0,0,0,0.4);
  text-align: center;
  font-size: 13px;
}
@media (max-width: 600px) {
  body, #message {
    margin-top: 0;
    box-shadow: none;
  }
  body.notfound {
    border-top: 16px solid #ffa100;
  }
}

/* Blog/Posts Styles */
.posts-container {
  margin-top: 2em;
}

.post-content {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #ddd;
}

.post-content h1 {
  margin-bottom: 0.3em;
}

.post-content h2 {
  margin-top: 1.5em;
  margin-bottom: 0.7em;
  font-size: 1.4em;
}

.post-content p {
  margin-bottom: 1em;
}

.post-content ul {
  margin: 1em 0 1.5em 1.5em;
  line-height: 1.8;
}

.post-content ul li {
  margin-bottom: 0.5em;
}

.post-content time {
  display: block;
  margin-bottom: 2em;
}

.post-content .feature-img {
  max-width: 600px;
  width: 100%;
  margin-bottom: 2rem;
}

.post-card {
  background: #0f346066;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #00d4ff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #00d4ff33;
}

.post-header {
  margin-bottom: 1em;
}

.post-title {
  margin: 0 0 0.5em 0;
  font-size: 1.5em;
}

.post-title a {
  color: #e94560;
  text-decoration: none;
  transition: color 0.2s;
}

.post-title a:hover {
  color: #ff2e63;
}

.post-date {
  color: #aaa;
  font-size: 0.9em;
  font-family: Arial, sans-serif;
}

.post-excerpt {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1em;
  font-family: Arial, sans-serif;
}

.post-excerpt p {
  margin: 0;
}

.read-more {
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: color 0.2s;
}

.read-more:hover {
  color: #e94560;
  text-decoration: underline;
}

/* Empty State */
.posts-empty-state {
  text-align: center;
  padding: 3em 2em;
  background: #0f346033;
  border-radius: 12px;
  border: 2px dashed #00d4ff44;
}

.empty-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
  opacity: 0.6;
}

.posts-empty-state h3 {
  color: #00d4ff;
  margin-bottom: 0.5em;
}

.posts-empty-state p {
  color: #aaa;
  font-family: Arial, sans-serif;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Social icon baseline styling */
.social-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 6px;
  flex-shrink: 0;
}

/* Facebook brand blue for its icon */
.social-icon.facebook {
  color: #1877F2; /* Facebook brand color */
}
