@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@400;700&display=swap');

:root {
  --primary-color: #a4c4e4; /* A soft blue */
  --background-color: #121212;
  --surface-color: #1e1e1e;
  --text-color: #e0e0e0;
  --text-muted-color: #a0a0a0;
  --accent-color: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('/life-of-guy/assets/images/backgrounds/life-of-guy-cover.webp');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.game-title {
  font-family: 'Russo One', sans-serif;
  font-size: 4rem;
  color: var(--accent-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-muted-color);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.primary-button {
  background-color: var(--primary-color);
  color: #000;
  border: 2px solid var(--primary-color);
}

.primary-button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.secondary-button {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.secondary-button:hover {
  background-color: var(--accent-color);
  color: #000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.section-intro {
  text-align: center;
  color: var(--text-muted-color);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.roadmap-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.roadmap-column h3 {
  font-family: 'Russo One', sans-serif;
  color: var(--accent-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.roadmap-list {
  list-style: none;
}

.roadmap-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.roadmap-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.social-link:hover, .social-link:focus-visible {
  text-decoration: underline;
  color: var(--accent-color);
}

.social-link.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

footer {
  text-align: center;
  padding: 20px;
  color: var(--text-muted-color);
  font-size: 0.9rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .game-title {
    font-size: 3rem; /* Reduce title size on mobile */
  }

  h2 {
    font-size: 2rem; /* Reduce section header size on mobile */
  }
}