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

.page-resources-game-types__hero {
  background: linear-gradient(135deg, #0A246A 0%, #3B5998 100%); /* Dark blue to a slightly lighter blue */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-game-types__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_patterns,blue_gradient,tech_glow]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-game-types__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-resources-game-types__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F39C12; /* Amber gold for highlight */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-game-types__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-types__button {
  display: inline-block;
  background-color: #F39C12; /* Amber gold */
  color: #0A246A; /* Dark blue for text */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.page-resources-game-types__button:hover {
  background-color: #e08c0f; /* Slightly darker amber */
  transform: translateY(-2px);
}

.page-resources-game-types__button--primary {
  background-color: #F39C12;
  color: #0A246A;
}

.page-resources-game-types__button--primary:hover {
  background-color: #e08c0f;
}

.page-resources-game-types__button--highlight {
  background-color: #0A246A;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-resources-game-types__button--highlight:hover {
  background-color: #071a47;
  border-color: #f7b14a;
}

.page-resources-game-types__content-section {
  padding: 60px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
  position: relative;
  border-radius: 10px;
}

.page-resources-game-types__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
}

.page-resources-game-types__heading {
  font-size: 2em;
  color: #0A246A; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #F39C12; /* Amber gold underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-resources-game-types__sub-heading {
  font-size: 1.5em;
  color: #0A246A; /* Dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-game-types p {
  margin-bottom: 1em;
  text-align: justify;
}

.page-resources-game-types__list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-resources-game-types__list li {
  margin-bottom: 0.5em;
}

.page-resources-game-types__article-image {
  text-align: center;
  margin: 40px 0;
}

.page-resources-game-types__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-game-types__back-link-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-resources-game-types__back-link {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-game-types__back-link:hover {
  color: #F39C12;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-game-types__title {
    font-size: 2.2em;
  }
  .page-resources-game-types__subtitle {
    font-size: 1em;
  }
  .page-resources-game-types__heading {
    font-size: 1.8em;
  }
  .page-resources-game-types__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-game-types__hero {
    padding: 60px 20px;
  }
  .page-resources-game-types__content-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-game-types__title {
    font-size: 1.8em;
  }
  .page-resources-game-types__subtitle {
    font-size: 0.9em;
  }
  .page-resources-game-types__heading {
    font-size: 1.5em;
  }
  .page-resources-game-types__sub-heading {
    font-size: 1.2em;
  }
  .page-resources-game-types__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-resources-game-types__hero {
    padding: 40px 15px;
  }
  .page-resources-game-types__content-section {
    padding: 30px 10px;
  }
}