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

.page-game-guides-slot-machine-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-slot-machine-tips__hero {
  position: relative;
  background-image: url('[GALLERY:hero:slot_machine,jackpot,glitter,winning]');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-game-guides-slot-machine-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 46, 54, 0.75); /* #0A2E36 with transparency */
}

.page-game-guides-slot-machine-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-game-guides-slot-machine-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-slot-machine-tips__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #eee;
}

.page-game-guides-slot-machine-tips__hero-cta {
  display: inline-block;
  padding: 15px 35px;
  background-color: #E0B34C; /* Accent color */
  color: #0A2E36; /* Text color on accent */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slot-machine-tips__hero-cta:hover {
  background-color: #f0c35c;
  transform: translateY(-3px);
}

.page-game-guides-slot-machine-tips__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-game-guides-slot-machine-tips__section:nth-of-type(even) {
  background-color: #f2f7f8; /* Light variant of main color for contrast */
}

.page-game-guides-slot-machine-tips__section-title {
  font-size: 2.5em;
  color: #0A2E36; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-guides-slot-machine-tips__subsection-title {
  font-size: 1.8em;
  color: #0A2E36;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E0B34C;
  padding-left: 15px;
}

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

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

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

.page-game-guides-slot-machine-tips__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-game-guides-slot-machine-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-machine-tips__image-caption {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

.page-game-guides-slot-machine-tips__cta-banner {
  background-color: #0A2E36; /* Main color */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.page-game-guides-slot-machine-tips__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #E0B34C; /* Accent color */
}

.page-game-guides-slot-machine-tips__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-guides-slot-machine-tips__cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background-color: #E0B34C; /* Accent color */
  color: #0A2E36; /* Text color on accent */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-game-guides-slot-machine-tips__cta-btn:hover {
  background-color: #f0c35c;
  transform: translateY(-3px);
}

.page-game-guides-slot-machine-tips__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-game-guides-slot-machine-tips__faq-question {
  font-size: 1.4em;
  color: #0A2E36;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides-slot-machine-tips__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #E0B34C;
}

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

.page-game-guides-slot-machine-tips__faq-answer {
  font-size: 1.1em;
  color: #555;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 15px;
  display: none;
}

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

.page-game-guides-slot-machine-tips__conclusion {
  text-align: center;
  padding: 80px 0;
  background-color: #fff;
}

.page-game-guides-slot-machine-tips__conclusion-cta {
  display: inline-block;
  padding: 18px 45px;
  background-color: #0A2E36; /* Main color */
  color: #fff; /* Text color on main color */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

.page-game-guides-slot-machine-tips__conclusion-cta:hover {
  background-color: #1a4e56;
  transform: translateY(-3px);
}

.page-game-guides-slot-machine-tips .highlight {
  color: #E0B34C;
}

/* Floating Ad */
.page-game-guides-slot-machine-tips__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #0A2E36;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%); /* Hidden by default */
  transition: transform 0.5s ease-out;
}

.page-game-guides-slot-machine-tips__floating-ad.show {
  transform: translateX(0);
}

.page-game-guides-slot-machine-tips__floating-ad-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-game-guides-slot-machine-tips__floating-ad-text {
  margin: 0;
  font-size: 1.1em;
  color: #eee;
}

.page-game-guides-slot-machine-tips__floating-ad-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E0B34C;
  color: #0A2E36;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-guides-slot-machine-tips__floating-ad-btn:hover {
  background-color: #f0c35c;
}

.page-game-guides-slot-machine-tips__floating-ad-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.page-game-guides-slot-machine-tips__floating-ad-close:hover {
  color: #E0B34C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-slot-machine-tips__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-slot-machine-tips__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-slot-machine-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-slot-machine-tips__subsection-title {
    font-size: 1.5em;
  }
  .page-game-guides-slot-machine-tips__cta-title {
    font-size: 2.5em;
  }
  .page-game-guides-slot-machine-tips__floating-ad {
    bottom: 15px;
    right: 15px;
    padding: 12px 15px;
  }
  .page-game-guides-slot-machine-tips__floating-ad-text {
    font-size: 1em;
  }
  .page-game-guides-slot-machine-tips__floating-ad-btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slot-machine-tips__hero {
    padding: 100px 15px;
    min-height: 350px;
  }
  .page-game-guides-slot-machine-tips__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-slot-machine-tips__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-slot-machine-tips__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-slot-machine-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-slot-machine-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides-slot-machine-tips__subsection-title {
    font-size: 1.3em;
  }
  .page-game-guides-slot-machine-tips__container p,
  .page-game-guides-slot-machine-tips__container ul li {
    font-size: 1em;
  }
  .page-game-guides-slot-machine-tips__cta-banner {
    padding: 60px 15px;
  }
  .page-game-guides-slot-machine-tips__cta-title {
    font-size: 2em;
  }
  .page-game-guides-slot-machine-tips__cta-description {
    font-size: 1.1em;
  }
  .page-game-guides-slot-machine-tips__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-guides-slot-machine-tips__faq-question {
    font-size: 1.2em;
  }
  .page-game-guides-slot-machine-tips__floating-ad {
    flex-direction: column;
    text-align: center;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 10px;
    gap: 10px;
  }
  .page-game-guides-slot-machine-tips__floating-ad-content {
    flex-direction: column;
    gap: 10px;
  }
  .page-game-guides-slot-machine-tips__floating-ad-close {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slot-machine-tips__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-slot-machine-tips__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-guides-slot-machine-tips__hero-cta {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-slot-machine-tips__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-slot-machine-tips__subsection-title {
    font-size: 1.1em;
  }
  .page-game-guides-slot-machine-tips__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides-slot-machine-tips__cta-description {
    font-size: 0.9em;
  }
  .page-game-guides-slot-machine-tips__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-slot-machine-tips__floating-ad-text {
    font-size: 0.9em;
  }
  .page-game-guides-slot-machine-tips__floating-ad-btn {
    padding: 7px 12px;
    font-size: 0.8em;
  }
}