/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark backgrounds */
  background-color: #1A1A2E;
}

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

.page-game-guides__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides__section--why {
  background-color: #2A2A3E;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #E0B34E;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B34E;
  border-radius: 2px;
}

.page-game-guides__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D1D1D1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-game-guides__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3A2A4E 100%);
  padding: 80px 0;
  color: #E5E5D1;
  text-align: left;
}

.page-game-guides__hero .page-game-guides__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-game-guides__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  color: #E0B34E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-guides__hero-subtitle {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D1D1D1;
}

.page-game-guides__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-game-guides__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-game-guides__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-right: 15px;
  margin-top: 10px;
  white-space: nowrap;
}

.page-game-guides__btn--primary {
  background-color: #E0B34E;
  color: #1A1A2E;
}

.page-game-guides__btn--primary:hover {
  background-color: #FFC966;
  transform: translateY(-2px);
}

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

.page-game-guides__btn--secondary:hover {
  background-color: #E0B34E;
  color: #1A1A2E;
  transform: translateY(-2px);
}

.page-game-guides__btn--card {
  background-color: #E0B34E;
  color: #1A1A2E;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
  margin-right: 0;
}

.page-game-guides__btn--card:hover {
  background-color: #FFC966;
  transform: translateY(-2px);
}

.page-game-guides__btn--list {
  background-color: #E0B34E;
  color: #1A1A2E;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
  margin-right: 0;
}

.page-game-guides__btn--list:hover {
  background-color: #FFC966;
  transform: translateY(-2px);
}

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

.page-game-guides__guide-card {
  background-color: #2A2A3E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides__card-title {
  font-size: 1.6em;
  color: #E0B34E;
  margin-bottom: 15px;
}

.page-game-guides__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #D1D1D1;
  flex-grow: 1;
}

/* Tips Section */
.page-game-guides__section--tips {
  background-color: #1A1A2E;
}

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

.page-game-guides__tip-item {
  background-color: #2A2A3E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-game-guides__tip-title {
  font-size: 1.5em;
  color: #E0B34E;
  margin-bottom: 15px;
}

.page-game-guides__tip-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #D1D1D1;
}

/* Detailed Guides List */
.page-game-guides__section--detailed-guides {
  background-color: #2A2A3E;
}

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

.page-game-guides__list-item {
  background-color: #1A1A2E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-game-guides__list-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-game-guides__list-title a:hover {
  color: #FFC966;
  text-decoration: underline;
}

.page-game-guides__list-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #D1D1D1;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* CTA Section */
.page-game-guides__section--cta {
  background: linear-gradient(45deg, #1A1A2E, #3A2A4E);
  padding: 80px 0;
}

.page-game-guides__cta-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__cta-title {
  font-size: 2.8em;
  color: #E0B34E;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-game-guides__cta-text {
  font-size: 1.2em;
  color: #D1D1D1;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero .page-game-guides__container {
    flex-direction: column;
    text-align: center;
  }

  .page-game-guides__hero-content {
    max-width: 100%;
  }

  .page-game-guides__hero-title {
    font-size: 2.8em;
  }

  .page-game-guides__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-guides__hero-image-wrapper {
    justify-content: center;
    margin-top: 40px;
  }

  .page-game-guides__hero-image {
    max-width: 80%;
  }

  .page-game-guides__btn {
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides__section-title {
    font-size: 2em;
  }

  .page-game-guides__cta-title {
    font-size: 2.2em;
  }

  .page-game-guides__grid, .page-game-guides__tips-grid, .page-game-guides__list-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__section {
    padding: 40px 0;
  }

  .page-game-guides__hero {
    padding: 60px 0;
  }

  .page-game-guides__hero-title {
    font-size: 2.2em;
  }

  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }

  .page-game-guides__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }

  .page-game-guides__hero-image {
    max-width: 90%;
  }

  .page-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-guides__cta-title {
    font-size: 1.8em;
  }

  .page-game-guides__text-block {
    font-size: 0.95em;
  }

  .page-game-guides__card-title, .page-game-guides__tip-title {
    font-size: 1.4em;
  }

  .page-game-guides__list-title {
    font-size: 1.2em;
  }
}

@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 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .page-game-guides__section-title {
    font-size: 1.5em;
  }

  .page-game-guides__cta-title {
    font-size: 1.6em;
  }

  .page-game-guides__grid, .page-game-guides__tips-grid, .page-game-guides__list-grid {
    grid-template-columns: 1fr;
  }
}