.page-game-guides {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #0A2463;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.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:nth-of-type(even) {
  background-color: var(--bg-light);
}

.page-game-guides h1,
.page-game-guides h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-game-guides h2 {
  font-size: 2.2em;
}

.page-game-guides h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-game-guides p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-guides .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}

.page-game-guides .cta-button:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section Specific Styles */
.page-game-guides .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a70 100%);
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-guides .hero-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 40px;
}

.page-game-guides .hero-content {
  flex: 1;
  max-width: 60%;
}

.page-game-guides .hero-content h1 {
  font-size: 3.5em;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-light);
}

.page-game-guides .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-game-guides .hero-image {
  flex: 1;
  max-width: 40%;
}

.page-game-guides .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Game Types Section */
.page-game-guides .game-types-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.page-game-guides .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-guides .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides .game-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-guides .game-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-guides .game-card h3 a {
  text-decoration: none;
  color: inherit;
}

.page-game-guides .game-card p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-game-guides .read-more-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-game-guides .read-more-button:hover {
  background-color: #071a47;
}

/* Strategy Section */
.page-game-guides .strategy-section {
  padding: 80px 0;
}

.page-game-guides .strategy-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.page-game-guides .strategy-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-game-guides .strategy-item h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides .strategy-item p {
  font-size: 1.05em;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Register CTA Section */
.page-game-guides .register-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a70 100%);
  color: var(--text-light);
  padding: 80px 0;
}

.page-game-guides .register-cta-section h2 {
  color: var(--text-light);
  font-size: 2.5em;
}

.page-game-guides .register-cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-game-guides .register-cta-section .cta-button.primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-game-guides .register-cta-section .cta-button.primary:hover {
  background-color: darken(var(--secondary-color), 10%);
}

/* FAQ Section */
.page-game-guides .faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-game-guides .faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-game-guides .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-game-guides .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-game-guides .faq-question:hover {
  background: #f5f5f5;
}

.page-game-guides .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.page-game-guides .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-game-guides .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-game-guides .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 18px 25px;
}

.page-game-guides .faq-answer p {
  margin-bottom: 0;
}

.page-game-guides .faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-game-guides .faq-answer a:hover {
  color: var(--secondary-color);
}

/* Latest Blog Section */
.page-game-guides .latest-blog-section {
  padding: 80px 0;
}

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

.page-game-guides .blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-game-guides .blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.page-game-guides .blog-card h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin: 20px 20px 10px 20px;
}

.page-game-guides .blog-card h3 a {
  text-decoration: none;
  color: inherit;
}

.page-game-guides .blog-card p {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 20px 15px 20px;
  margin-bottom: 0;
}

.page-game-guides .blog-card .read-more-button {
  margin: 15px 20px 20px 20px;
  padding: 8px 18px;
  font-size: 0.9em;
}

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

  .page-game-guides .hero-content,
  .page-game-guides .hero-image {
    max-width: 100%;
  }

  .page-game-guides .hero-content h1 {
    font-size: 2.8em;
  }

  .page-game-guides .hero-image {
    margin-top: 40px;
  }

  .page-game-guides h2 {
    font-size: 1.8em;
  }

  .page-game-guides h3 {
    font-size: 1.4em;
  }

  .page-game-guides .strategy-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-game-guides .strategy-item img {
    margin-bottom: 20px;
  }
}

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

  .page-game-guides .hero-content h1 {
    font-size: 2.2em;
  }

  .page-game-guides .hero-content p {
    font-size: 1em;
  }

  .page-game-guides .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides .game-card-grid,
  .page-game-guides .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides .faq-question {
    padding: 15px 20px;
  }

  .page-game-guides .faq-question h3 {
    font-size: 1.1em;
  }

  .page-game-guides .faq-toggle {
    font-size: 20px;
  }

  .page-game-guides .faq-answer {
    padding: 15px 20px;
  }

  .page-game-guides .strategy-item img {
    width: 150px;
    height: 150px;
  }
}