/* style/resources-game-strategy.css */
.page-resources-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-game-strategy .hero-section {
  background: linear-gradient(135deg, #0A2463, #E3B505);
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-resources-game-strategy .hero-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-game-strategy .back-to-home {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-game-strategy .back-to-home:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-game-strategy h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-resources-game-strategy .subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-game-strategy .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-game-strategy .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-game-strategy .btn-primary {
  background-color: #E3B505; /* Auxiliary color */
  color: #0A2463; /* Main color for contrast */
}

.page-resources-game-strategy .btn-primary:hover {
  background-color: #f2c73d;
  transform: translateY(-2px);
}

.page-resources-game-strategy .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources-game-strategy .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-resources-game-strategy .content-area {
  padding: 40px 20px;
  background-color: #fff;
}

.page-resources-game-strategy .article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-resources-game-strategy h2 {
  font-size: 2em;
  color: #0A2463; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E3B505; /* Auxiliary color */
  padding-bottom: 10px;
}

.page-resources-game-strategy h3 {
  font-size: 1.5em;
  color: #0A2463; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-strategy p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
  color: #444;
}

.page-resources-game-strategy ul,
.page-resources-game-strategy ol {
  margin-bottom: 1em;
  padding-left: 25px;
  color: #444;
}

.page-resources-game-strategy ul li,
.page-resources-game-strategy ol li {
  margin-bottom: 0.5em;
  font-size: 1em;
}

.page-resources-game-strategy .article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategy .call-to-action-block {
  background-color: #0A2463; /* Main color */
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}

.page-resources-game-strategy .call-to-action-block h3 {
  color: #E3B505; /* Auxiliary color */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-game-strategy .call-to-action-block p {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-resources-game-strategy .call-to-action-block .btn {
  margin: 0 10px;
}

.page-resources-game-strategy .return-link {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-game-strategy h1 {
    font-size: 2em;
  }
  .page-resources-game-strategy h2 {
    font-size: 1.6em;
  }
  .page-resources-game-strategy h3 {
    font-size: 1.3em;
  }
  .page-resources-game-strategy .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-game-strategy .btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-game-strategy .back-to-home {
    position: static;
    display: block;
    text-align: left;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy .article-container {
    padding: 15px;
  }
  .page-resources-game-strategy .btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-resources-game-strategy .hero-section {
    padding: 60px 0 40px;
  }
  .page-resources-game-strategy h1 {
    font-size: 1.8em;
  }
  .page-resources-game-strategy .subtitle {
    font-size: 1em;
  }
}