.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: 20px;
}

.page-game-guides-highlight {
  color: #FFD700;
}

.page-game-guides-bold {
  font-weight: bold;
  color: #1A237E;
}

.page-game-guides-link-underline {
  text-decoration: underline;
  color: #1A237E;
}

.page-game-guides-hero {
  background: linear-gradient(135deg, #1A237E 0%, #3f478a 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-game-guides-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.page-game-guides-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFFFFF; /* High contrast for dark background */
}

.page-game-guides-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
  color: #e0e0e0;
}

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

.page-game-guides-btn-primary {
  background-color: #FFD700;
  color: #1A237E; /* Dark blue text on gold background */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-guides-btn-secondary {
  background-color: #1A237E;
  color: #FFD700; /* Gold text on dark blue background */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-game-guides-btn-secondary:hover {
  background-color: #0d1246;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
}

.page-game-guides-btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #1A237E;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-game-guides-btn-small:hover {
  background-color: #0d1246;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides-section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-guides-section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}

.page-game-guides-introduction {
  padding: 80px 0;
  background-color: #fff;
}

.page-game-guides-introduction p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #444;
}

.page-game-guides-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-guides-feature-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-game-guides-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-game-guides-feature-item h3 {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-game-guides-feature-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

.page-game-guides-why-kuwin789 {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-game-guides-two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-game-guides-two-column-reversed {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
}

.page-game-guides-text-content {
  flex: 1;
  min-width: 300px;
}

.page-game-guides-text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-guides-text-content h3 {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-text-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-game-guides-text-content ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-game-guides-list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-game-guides-image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-game-guides-detail-pages {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-game-guides-guide-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-guides-guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-game-guides-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-guides-card-title {
  font-size: 1.5em;
  color: #1A237E;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-game-guides-card-title a {
  color: #1A237E;
  text-decoration: none;
}

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

.page-game-guides-card-description {
  font-size: 1em;
  color: #666;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-game-guides-guide-card .page-game-guides-btn-small {
  align-self: flex-start;
  margin: 0 20px 20px 20px;
}

.page-game-guides-general-strategies {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-game-guides-general-strategies h3 {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-general-strategies p {
  color: #444;
  margin-bottom: 15px;
}

.page-game-guides-responsible-gaming {
  padding: 80px 0;
  background-color: #fff;
}

.page-game-guides-responsible-gaming p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #444;
}

.page-game-guides-responsible-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-guides-tip-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-game-guides-tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.page-game-guides-tip-item h4 {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-game-guides-tip-item p {
  font-size: 0.95em;
  color: #555;
  text-align: center;
}

.page-game-guides-cta-section {
  background: linear-gradient(90deg, #1A237E, #3f478a);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-game-guides-cta-section .page-game-guides-section-title {
  color: #fff;
}

.page-game-guides-cta-section .page-game-guides-section-title::after {
  background-color: #FFD700;
}

.page-game-guides-cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-guides-cta-buttons {
  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.3em;
  }
  .page-game-guides-section-title {
    font-size: 2em;
  }
  .page-game-guides-two-column, .page-game-guides-two-column-reversed {
    flex-direction: column;
  }
  .page-game-guides-image-content {
    order: -1; /* Image first on small screens for reversed layout */
  }
}

@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-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-introduction, .page-game-guides-why-kuwin789, .page-game-guides-detail-pages, .page-game-guides-general-strategies, .page-game-guides-responsible-gaming, .page-game-guides-cta-section {
    padding: 60px 0;
  }
  .page-game-guides-features-grid, .page-game-guides-guides-grid, .page-game-guides-responsible-tips {
    grid-template-columns: 1fr;
  }
  .page-game-guides-card-img {
    height: 180px;
  }
  .page-game-guides-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-guides-hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-game-guides-btn-secondary {
    margin-top: 0;
  }
  .page-game-guides-section-title {
    font-size: 1.5em;
  }
}