/* style/resources-slot-game-guide.css */

/* Base styles for the page content */
.page-resources-slot-game-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-resources-slot-game-guide__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-slot-game-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-slot-game-guide__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-slot-game-guide__back-link:hover {
  color: #FCBC45;
}

.page-resources-slot-game-guide__main-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-slot-game-guide__intro-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slot-game-guide__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 40px auto 0;
}

/* Article Content */
.page-resources-slot-game-guide__article-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-slot-game-guide__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-slot-game-guide__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-slot-game-guide__section h3 {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-slot-game-guide__section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-resources-slot-game-guide__section ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-slot-game-guide__section li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #444444;
}

.page-resources-slot-game-guide__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Call to Action Buttons */
.page-resources-slot-game-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 25px;
  cursor: pointer;
}

.page-resources-slot-game-guide__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-slot-game-guide__cta-button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-resources-slot-game-guide__cta-button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-slot-game-guide__cta-button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-slot-game-guide__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-resources-slot-game-guide__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-slot-game-guide__cta-button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-resources-slot-game-guide__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-slot-game-guide__cta-button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Conclusion Section */
.page-resources-slot-game-guide__section--conclusion {
  text-align: center;
  background-color: #f0f0f0;
}

/* Return Link */
.page-resources-slot-game-guide__return-link-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
}

.page-resources-slot-game-guide__return-link {
  display: inline-block;
  font-size: 1.1em;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-resources-slot-game-guide__return-link:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-slot-game-guide__main-title {
    font-size: 2em;
  }

  .page-resources-slot-game-guide__intro-description,
  .page-resources-slot-game-guide__section p,
  .page-resources-slot-game-guide__section li {
    font-size: 1em;
  }

  .page-resources-slot-game-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-slot-game-guide__section h3 {
    font-size: 1.2em;
  }

  .page-resources-slot-game-guide__article-content {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-slot-game-guide__hero-section {
    padding: 40px 15px 30px;
  }

  .page-resources-slot-game-guide__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-slot-game-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area images must be responsive */
  .page-resources-slot-game-guide img {
    max-width: 100%;
    height: auto;
  }
}