/* style/betting-guide-slots-tips.css */
.page-betting-guide-slots-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-betting-guide-slots-tips__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3f478a 100%); /* Dark indigo to slightly lighter */
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-betting-guide-slots-tips__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-guide-slots-tips__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-betting-guide-slots-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-betting-guide-slots-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.5;
}

.page-betting-guide-slots-tips__hero-image-wrapper {
  max-width: 500px;
  margin-top: 40px;
  z-index: 1;
}

.page-betting-guide-slots-tips__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-betting-guide-slots-tips__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-betting-guide-slots-tips__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-betting-guide-slots-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-betting-guide-slots-tips__paragraph a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: none;
}

.page-betting-guide-slots-tips__paragraph a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-betting-guide-slots-tips__tip-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.page-betting-guide-slots-tips__card-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-betting-guide-slots-tips__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.page-betting-guide-slots-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
  text-align: left;
  max-width: 800px;
  width: 100%;
}

.page-betting-guide-slots-tips__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-betting-guide-slots-tips__list strong {
  color: #1A237E;
}

.page-betting-guide-slots-tips__mistake-card {
  background-color: #fff3e0; /* Light orange for warnings */
  border-left: 5px solid #ff9800;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-betting-guide-slots-tips__mistake-card .page-betting-guide-slots-tips__card-title {
  color: #d84315;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-betting-guide-slots-tips__cta {
  text-align: center;
  padding: 50px 20px;
  background-color: #1A237E;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-betting-guide-slots-tips__cta .page-betting-guide-slots-tips__section-title {
  color: #FFD700;
}

.page-betting-guide-slots-tips__cta .page-betting-guide-slots-tips__section-title::after {
  background-color: #fff;
}

.page-betting-guide-slots-tips__cta .page-betting-guide-slots-tips__paragraph {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-betting-guide-slots-tips__cta .page-betting-guide-slots-tips__link {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-betting-guide-slots-tips__cta .page-betting-guide-slots-tips__link:hover {
  text-decoration: underline;
}

.page-betting-guide-slots-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-betting-guide-slots-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guide-slots-tips__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

.page-betting-guide-slots-tips__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-betting-guide-slots-tips__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-guide-slots-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-betting-guide-slots-tips__hero {
    padding: 60px 15px;
  }

  .page-betting-guide-slots-tips__hero-title {
    font-size: 2.5em;
  }

  .page-betting-guide-slots-tips__hero-description {
    font-size: 1em;
  }

  .page-betting-guide-slots-tips__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-betting-guide-slots-tips__tip-card {
    padding: 20px;
  }

  .page-betting-guide-slots-tips__card-title {
    font-size: 1.5em;
  }

  .page-betting-guide-slots-tips__list {
    margin-left: 15px;
  }

  .page-betting-guide-slots-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-guide-slots-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-betting-guide-slots-tips__hero-title {
    font-size: 2em;
  }

  .page-betting-guide-slots-tips__section-title {
    font-size: 1.8em;
  }

  .page-betting-guide-slots-tips__card-title {
    font-size: 1.3em;
  }

  .page-betting-guide-slots-tips__btn {
    width: 100%;
    box-sizing: border-box;
  }
}