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

.page-slots-free-play-tips__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast with text */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.page-slots-free-play-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-slots-free-play-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-free-play-tips__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-free-play-tips__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e9ecef;
}

.page-slots-free-play-tips__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-slots-free-play-tips__btn--primary {
  background-color: #ffc107;
  color: #333;
}

.page-slots-free-play-tips__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-slots-free-play-tips__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
}

.page-slots-free-play-tips__btn--secondary:hover {
  background-color: #ffc107;
  color: #333;
  transform: translateY(-2px);
}

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

.page-slots-free-play-tips__section h2 {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slots-free-play-tips__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-slots-free-play-tips__section h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slots-free-play-tips__section p {
  margin-bottom: 15px;
  color: #555;
}

.page-slots-free-play-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slots-free-play-tips__grid-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-free-play-tips__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-free-play-tips__feature-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.page-slots-free-play-tips__grid-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 0;
}

.page-slots-free-play-tips__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.page-slots-free-play-tips__step {
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  background-color: #eaf6ff;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slots-free-play-tips__step h4 {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slots-free-play-tips__cta-section {
  position: relative;
  background: linear-gradient(90deg, #007bff, #ffc107);
  color: #fff;
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  overflow: hidden;
}

.page-slots-free-play-tips__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-slots-free-play-tips__cta-section p {
  position: relative;
  z-index: 2;
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #fff;
}

.page-slots-free-play-tips__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slots-free-play-tips__tip-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-bottom: 4px solid #ffc107;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-free-play-tips__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-free-play-tips__tip-item h3 {
  color: #007bff;
  font-size: 1.6em;
  margin-top: 0;
}

.page-slots-free-play-tips__tip-icon {
  width: 100%;
  max-width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.page-slots-free-play-tips__advantage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.page-slots-free-play-tips__advantage-item {
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #007bff;
}

.page-slots-free-play-tips__advantage-item h3 {
  color: #007bff;
  font-size: 1.6em;
  margin-top: 0;
}

.page-slots-free-play-tips__advantage-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
}

.page-slots-free-play-tips__accordion {
  margin-top: 30px;
}

.page-slots-free-play-tips__accordion-item {
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.page-slots-free-play-tips__accordion-header {
  background-color: #007bff;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  margin: 0;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slots-free-play-tips__accordion-header::after {
  content: '+';
  font-weight: bold;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-slots-free-play-tips__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-free-play-tips__accordion-content {
  padding: 15px 20px;
  background-color: #fefefe;
  border-top: 1px solid #eee;
  display: none;
}

.page-slots-free-play-tips__accordion-content p {
  margin: 0;
  color: #555;
}

.page-slots-free-play-tips__cta-bottom {
  text-align: center;
  background: linear-gradient(45deg, #ffc107, #ffa000);
  color: #333;
  padding: 80px 20px;
  border-radius: 8px;
  margin-bottom: 0;
}

.page-slots-free-play-tips__cta-bottom h2 {
  color: #333;
  margin-bottom: 20px;
}

.page-slots-free-play-tips__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-free-play-tips__hero h1 {
    font-size: 2.5em;
  }
  .page-slots-free-play-tips__section h2 {
    font-size: 2em;
  }
  .page-slots-free-play-tips__steps-container, .page-slots-free-play-tips__tips-grid, .page-slots-free-play-tips__advantage-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-free-play-tips__hero {
    min-height: 350px;
    padding: 40px 15px;
  }
  .page-slots-free-play-tips__hero h1 {
    font-size: 2em;
  }
  .page-slots-free-play-tips__hero p {
    font-size: 1em;
  }
  .page-slots-free-play-tips__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }
  .page-slots-free-play-tips__section {
    padding: 40px 15px;
  }
  .page-slots-free-play-tips__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots-free-play-tips__section h3 {
    font-size: 1.5em;
  }
  .page-slots-free-play-tips__steps-container, .page-slots-free-play-tips__tips-grid, .page-slots-free-play-tips__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-slots-free-play-tips__cta-section {
    padding: 30px;
  }
  .page-slots-free-play-tips__cta-section p {
    font-size: 1.1em;
  }
}