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

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-game-guides__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-game-guides__btn--primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-game-guides__btn--primary:hover {
  background-color: #e6c200;
  color: #000066;
  transform: translateY(-3px);
}

.page-game-guides__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
}

.page-game-guides__btn--download {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #000080;
}

.page-game-guides__btn--download:hover {
  background-color: #000066;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-game-guides__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #000080;
  color: #FFD700;
  border: none;
}

.page-game-guides__btn--small:hover {
  background-color: #000066;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-game-guides__text-content {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides__intro, .page-game-guides__general-principles, .page-game-guides__all-guides, .page-game-guides__why-13win, .page-game-guides__cta-download, .page-game-guides__conclusion {
  padding: 80px 0;
}

.page-game-guides__intro {
  background-color: #fdfdfd;
}

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

.page-game-guides__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

.page-game-guides__item-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__item-description {
  font-size: 1em;
  color: #555;
}

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

.page-game-guides__image--full-width {
  width: 100%;
}

.page-game-guides__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__all-guides {
  background-color: #eef2f7;
}

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

.page-game-guides__guide-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-game-guides__guide-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-game-guides__guide-item h3 {
  padding: 20px 25px 10px;
  margin: 0;
}

.page-game-guides__guide-title a {
  font-size: 1.4em;
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides__guide-title a:hover {
  color: #FFD700;
}

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

.page-game-guides__guide-item .page-game-guides__btn {
  margin: 0 25px 25px;
  align-self: flex-start;
}

.page-game-guides__why-13win {
  background-color: #fdfdfd;
}

.page-game-guides__cta-download {
  background-color: #000080;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides__cta-download .page-game-guides__section-title {
  color: #FFD700;
}

.page-game-guides__cta-download .page-game-guides__text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-guides__conclusion {
  text-align: center;
  background-color: #fdfdfd;
}

.page-game-guides__conclusion .page-game-guides__text-content {
  max-width: 900px;
  margin: 0 auto 40px;
}

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

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-game-guides__intro, .page-game-guides__general-principles, .page-game-guides__all-guides, .page-game-guides__why-13win, .page-game-guides__cta-download, .page-game-guides__conclusion {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__text-content {
    font-size: 0.95em;
  }
  .page-game-guides__grid-item {
    padding: 20px;
  }
  .page-game-guides__item-title {
    font-size: 1.4em;
  }
  .page-game-guides__guide-title a {
    font-size: 1.2em;
  }
  .page-game-guides__guide-description {
    font-size: 0.9em;
  }
}