/* style/resources-vipph-introduction.css */
.page-resources-vipph-introduction {
  color: #333333; /* Dark text on default white body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for PC */
}

.page-resources-vipph-introduction__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0A2463;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-vipph-introduction__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-resources-vipph-introduction__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  max-width: 900px;
}

.page-resources-vipph-introduction__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B23C; /* Golden yellow for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-resources-vipph-introduction__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-vipph-introduction__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}

.page-resources-vipph-introduction__section--about {
  background-color: #f9f9f9;
}

.page-resources-vipph-introduction__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-vipph-introduction__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-vipph-introduction__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B23C;
  margin: 15px auto 0;
}

.page-resources-vipph-introduction__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-vipph-introduction__features-grid,
.page-resources-vipph-introduction__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vipph-introduction__feature-card,
.page-resources-vipph-introduction__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vipph-introduction__feature-card:hover,
.page-resources-vipph-introduction__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-vipph-introduction__feature-icon,
.page-resources-vipph-introduction__game-image {
  width: 100%; /* Ensure images take full card width */
  height: auto;
  max-width: 400px; /* Example max width for card images */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-vipph-introduction__feature-title,
.page-resources-vipph-introduction__game-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-resources-vipph-introduction__feature-description,
.page-resources-vipph-introduction__game-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-vipph-introduction__button {
  display: inline-block;
  padding: 15px 30px;
  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;
}

.page-resources-vipph-introduction__button--primary {
  background-color: #E3B23C;
  color: #0A2463;
}

.page-resources-vipph-introduction__button--primary:hover {
  background-color: #f0c55a;
  transform: translateY(-2px);
}

.page-resources-vipph-introduction__button--secondary {
  background-color: #0A2463;
  color: #ffffff;
  border: 2px solid #0A2463;
}

.page-resources-vipph-introduction__button--secondary:hover {
  background-color: #1a3e7a;
  border-color: #1a3e7a;
  transform: translateY(-2px);
}

.page-resources-vipph-introduction__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-vipph-introduction__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-vipph-introduction__list-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #E3B23C;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-resources-vipph-introduction__list-item strong {
  color: #0A2463;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-vipph-introduction__hero-title {
    font-size: 2.2em;
  }

  .page-resources-vipph-introduction__hero-description {
    font-size: 1em;
  }

  .page-resources-vipph-introduction__section-title {
    font-size: 2em;
  }

  .page-resources-vipph-introduction__text-content {
    font-size: 0.95em;
  }

  .page-resources-vipph-introduction__features-grid,
  .page-resources-vipph-introduction__games-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-vipph-introduction__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-vipph-introduction__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-vipph-introduction__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area image resizing */
  .page-resources-vipph-introduction img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-vipph-introduction__hero-title {
    font-size: 1.8em;
  }

  .page-resources-vipph-introduction__section-title {
    font-size: 1.8em;
  }
}