.page-game-guides-slot-machine-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-guides-slot-machine-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-guides-slot-machine-guide .hero-section {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slot-machine-guide .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-slot-machine-guide .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-game-guides-slot-machine-guide .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-game-guides-slot-machine-guide .btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-game-guides-slot-machine-guide .btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #001a33;
  transform: translateY(-2px);
}

.page-game-guides-slot-machine-guide .btn-secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-left: 15px;
}

.page-game-guides-slot-machine-guide .btn-secondary:hover {
  background-color: #001a33;
  border-color: #e6b800;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-game-guides-slot-machine-guide .section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides-slot-machine-guide .subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-game-guides-slot-machine-guide .content-area {
  padding: 60px 0;
}

.page-game-guides-slot-machine-guide .introduction-section, 
.page-game-guides-slot-machine-guide .types-of-slots-section, 
.page-game-guides-slot-machine-guide .how-slots-work-section, 
.page-game-guides-slot-machine-guide .strategy-section, 
.page-game-guides-slot-machine-guide .responsible-gambling-section, 
.page-game-guides-slot-machine-guide .faq-section {
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-slot-machine-guide p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1em;
}

.page-game-guides-slot-machine-guide ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555;
}

.page-game-guides-slot-machine-guide ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-game-guides-slot-machine-guide ul li strong {
  color: #003366;
}

.page-game-guides-slot-machine-guide .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-game-guides-slot-machine-guide .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-machine-guide .call-to-action-section {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slot-machine-guide .call-to-action-section .section-title {
  color: #FFCC00;
}

.page-game-guides-slot-machine-guide .call-to-action-section .section-title::after {
  background-color: #ffffff;
}

.page-game-guides-slot-machine-guide .cta-buttons .btn-lg {
  padding: 15px 35px;
  font-size: 1.2em;
  margin: 0 10px;
}

.page-game-guides-slot-machine-guide .faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.page-game-guides-slot-machine-guide .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-game-guides-slot-machine-guide .faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-game-guides-slot-machine-guide .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
}

.page-game-guides-slot-machine-guide .faq-question.active::after {
  content: '-';
}

.page-game-guides-slot-machine-guide .faq-answer {
  font-size: 1.05em;
  color: #666;
  display: none;
  margin-top: 10px;
}

.page-game-guides-slot-machine-guide .faq-answer.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-slot-machine-guide .hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-slot-machine-guide .hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-guides-slot-machine-guide .section-title {
    font-size: 2em;
  }
  .page-game-guides-slot-machine-guide .subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slot-machine-guide .hero-section {
    padding: 80px 0;
  }
  .page-game-guides-slot-machine-guide .hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-slot-machine-guide .hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-slot-machine-guide .btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-game-guides-slot-machine-guide .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-guides-slot-machine-guide .cta-buttons .btn-lg {
    display: block;
    width: 100%;
    margin: 15px 0;
  }
  .page-game-guides-slot-machine-guide .section-title {
    font-size: 1.8em;
  }
  .page-game-guides-slot-machine-guide .subsection-title {
    font-size: 1.3em;
  }
  .page-game-guides-slot-machine-guide p, .page-game-guides-slot-machine-guide ul li {
    font-size: 1em;
  }
}