/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main dark blue background */
}

.page-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3B8A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,patterns,subtle]'); /* Subtle background pattern */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-guides__hero-subtitle {
  font-size: 1.4em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.page-game-guides__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-game-guides__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A2463; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides__btn--primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-guides__btn--secondary {
  background-color: #1A3B8A; /* Darker blue secondary button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-game-guides__btn--secondary:hover {
  background-color: #2A52B8; /* Lighter blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(26, 59, 138, 0.4);
}

.page-game-guides__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-guides__intro-section, 
.page-game-guides__guides-list-section, 
.page-game-guides__strategy-section, 
.page-game-guides__cta-section {
  padding: 60px 0;
  background-color: #0A2463;
}

.page-game-guides__intro-section p, 
.page-game-guides__strategy-section p, 
.page-game-guides__cta-section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-game-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides__image--fullwidth {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-guides__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides__card {
  background-color: #1A3B8A; /* Darker blue for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-guides__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #0A2463;
}

.page-game-guides__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for card titles */
  padding: 20px 20px 10px;
  margin: 0;
  line-height: 1.4;
}

.page-game-guides__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__card-title a:hover {
  color: #E6C200; /* Darker gold on hover */
}

.page-game-guides__card-description {
  font-size: 0.95em;
  color: #C0C0C0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-game-guides__card .page-game-guides__btn--secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  box-sizing: border-box;
}

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

.page-game-guides__strategy-item {
  background-color: #1A3B8A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-game-guides__strategy-item:hover {
  transform: translateY(-5px);
}

.page-game-guides__strategy-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__strategy-item p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-game-guides__strategy-item .page-game-guides__btn--small {
  margin-top: 20px;
  display: inline-block;
}

.page-game-guides__cta-section {
  text-align: center;
  background-color: #0A2463;
  border-top: 1px solid #FFD700;
  border-bottom: 1px solid #FFD700;
}

.page-game-guides__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__guide-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding: 80px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__intro-section, 
  .page-game-guides__guides-list-section, 
  .page-game-guides__strategy-section, 
  .page-game-guides__cta-section {
    padding: 40px 0;
  }
  .page-game-guides__guide-cards,
  .page-game-guides__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__card .page-game-guides__btn--secondary {
    width: auto;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-guides__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__intro-section p, 
  .page-game-guides__strategy-section p, 
  .page-game-guides__cta-section p {
    font-size: 0.95em;
  }
}