/* style/slots-fishing.css */

/* Base styles for the page content */
.page-slots-fishing {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-slots-fishing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-fishing__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3e444f 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-fishing__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-slots-fishing__hero-subtitle {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-fishing__section {
  padding: 80px 0;
  text-align: center;
}

.page-slots-fishing__section:nth-of-type(even) {
  background-color: #2a303c;
}

.page-slots-fishing__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slots-fishing__section-description {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-fishing__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slots-fishing__content-grid .page-slots-fishing__text-content {
  flex: 1;
}

.page-slots-fishing__content-grid .page-slots-fishing__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slots-fishing__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-fishing__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #e5dfd3;
}

.page-slots-fishing__text-content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-slots-fishing__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #e5dfd3;
}

.page-slots-fishing__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-slots-fishing__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-slots-fishing__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slots-fishing__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-slots-fishing__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-slots-fishing__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-slots-fishing__game-types {
  background-color: #1A202C;
}

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

.page-slots-fishing__type-card {
  background-color: #2a303c;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slots-fishing__type-card:hover {
  transform: translateY(-5px);
}

.page-slots-fishing__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots-fishing__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-fishing__card-text {
  color: #e5dfd3;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-slots-fishing__type-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 15px;
}

.page-slots-fishing__type-card ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 16px;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.95em;
}

.page-slots-fishing__features {
  background-color: #2a303c;
}

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

.page-slots-fishing__feature-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots-fishing__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots-fishing__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slots-fishing__feature-text {
  color: #e5dfd3;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-slots-fishing__tips {
  background-color: #1A202C;
}

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

.page-slots-fishing__tip-card {
  background-color: #2a303c;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-slots-fishing__tip-card .page-slots-fishing__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slots-fishing__tip-card .page-slots-fishing__card-text {
  color: #e5dfd3;
  font-size: 0.95em;
}

.page-slots-fishing__cta {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  padding: 80px 0;
  text-align: center;
}

.page-slots-fishing__cta-content {
  max-width: 900px;
}

.page-slots-fishing__cta-title {
  font-size: 2.5em;
  color: #1A202C;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slots-fishing__cta-text {
  font-size: 1.2em;
  color: #1A202C;
  margin-bottom: 40px;
}

.page-slots-fishing__cta-text a {
  color: #0000FF; /* Ensure contrast for link on gold background */
  text-decoration: underline;
}

.page-slots-fishing__cta-text a:hover {
  color: #0000AA;
}

.page-slots-fishing__cta-buttons .page-slots-fishing__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
}

.page-slots-fishing__cta-buttons .page-slots-fishing__btn--primary:hover {
  background-color: #3e444f;
  color: #FFD700;
}

.page-slots-fishing__cta-buttons .page-slots-fishing__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border: 2px solid #1A202C;
}

.page-slots-fishing__cta-buttons .page-slots-fishing__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

.highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-fishing__hero-title {
    font-size: 2.8em;
  }
  .page-slots-fishing__section-title {
    font-size: 2.2em;
  }
  .page-slots-fishing__cta-title {
    font-size: 2em;
  }
  .page-slots-fishing__content-grid {
    flex-direction: column;
  }
  .page-slots-fishing__content-grid .page-slots-fishing__text-content, 
  .page-slots-fishing__content-grid .page-slots-fishing__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-slots-fishing__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-slots-fishing__hero, .page-slots-fishing__section, .page-slots-fishing__cta {
    padding: 60px 0;
  }
  .page-slots-fishing__hero-title {
    font-size: 2.2em;
  }
  .page-slots-fishing__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-fishing__section-title {
    font-size: 1.8em;
  }
  .page-slots-fishing__section-description {
    font-size: 1em;
  }
  .page-slots-fishing__type-grid, .page-slots-fishing__feature-grid, .page-slots-fishing__tip-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-fishing__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-fishing__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-fishing__cta-buttons .page-slots-fishing__btn {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-slots-fishing__hero-title {
    font-size: 1.8em;
  }
  .page-slots-fishing__section-title {
    font-size: 1.6em;
  }
  .page-slots-fishing__card-title {
    font-size: 1.5em;
  }
  .page-slots-fishing__feature-title {
    font-size: 1.4em;
  }
  .page-slots-fishing__cta-title {
    font-size: 1.8em;
  }
  .page-slots-fishing__container {
    padding: 0 15px;
  }
  .page-slots-fishing__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}