/* style/game-guides-fishing-game-strategy.css */

.page-game-guides-fishing-game-strategy {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-game-guides-fishing-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fishing-game-strategy__hero {
  background: linear-gradient(135deg, #0A192F 0%, #30194F 100%); /* Darker gradient for hero */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-game-guides-fishing-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-game-guides-fishing-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.page-game-guides-fishing-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-game-guides-fishing-game-strategy__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-game-guides-fishing-game-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-game-guides-fishing-game-strategy__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
}

.page-game-guides-fishing-game-strategy__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-guides-fishing-game-strategy__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-guides-fishing-game-strategy__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-game-guides-fishing-game-strategy__section {
  padding: 60px 0;
}

.page-game-guides-fishing-game-strategy__section:nth-child(even) {
  background-color: #1a2a47; /* Slightly lighter dark background */
}

.page-game-guides-fishing-game-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-fishing-game-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-fishing-game-strategy__introduction p,
.page-game-guides-fishing-game-strategy__tips ul,
.page-game-guides-fishing-game-strategy__conclusion p {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: justify;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-strategy__highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Why KV888 Section */
.page-game-guides-fishing-game-strategy__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-fishing-game-strategy__feature-item {
  background-color: #13243F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-guides-fishing-game-strategy__feature-item:hover {
  transform: translateY(-10px);
}

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

.page-game-guides-fishing-game-strategy__feature-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-strategy__feature-item p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Basic Concepts Section */
.page-game-guides-fishing-game-strategy__concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-fishing-game-strategy__concept-item {
  background-color: #13243F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-fishing-game-strategy__concept-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-guides-fishing-game-strategy__concept-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-guides-fishing-game-strategy__concept-item p {
  color: #CCCCCC;
  font-size: 1em;
}

/* Strategies Section */
.page-game-guides-fishing-game-strategy__strategy-item {
  background-color: #13243F;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-guides-fishing-game-strategy__strategy-item:nth-child(even) {
  flex-direction: column-reverse;
}

.page-game-guides-fishing-game-strategy__strategy-title {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-game-guides-fishing-game-strategy__strategy-item p {
  color: #E0E0E0;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-guides-fishing-game-strategy__strategy-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Tips Section */
.page-game-guides-fishing-game-strategy__tips ul {
  list-style: none;
  padding: 0;
}

.page-game-guides-fishing-game-strategy__tips ul li {
  background-color: #13243F;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-game-guides-fishing-game-strategy__tips ul li strong {
  color: #FFD700;
}

.page-game-guides-fishing-game-strategy__link-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides-fishing-game-strategy__link-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Platform Highlight Section */
.page-game-guides-fishing-game-strategy__platform-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-game-guides-fishing-game-strategy__platform-text {
  flex: 1;
  min-width: 300px;
}

.page-game-guides-fishing-game-strategy__platform-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-guides-fishing-game-strategy__platform-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-game-guides-fishing-game-strategy__cta-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FAQ Section */
.page-game-guides-fishing-game-strategy__accordion {
  margin-top: 30px;
}

.page-game-guides-fishing-game-strategy__accordion-item {
  background-color: #13243F;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-fishing-game-strategy__accordion-header {
  color: #FFD700;
  font-size: 1.4em;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-game-guides-fishing-game-strategy__accordion-header:hover {
  background-color: #1a2a47;
}

.page-game-guides-fishing-game-strategy__accordion-header::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-guides-fishing-game-strategy__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-guides-fishing-game-strategy__accordion-content {
  padding: 0 30px 20px;
  color: #E0E0E0;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides-fishing-game-strategy__accordion-content p {
  margin-bottom: 10px;
}

.page-game-guides-fishing-game-strategy__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Conclusion Section */
.page-game-guides-fishing-game-strategy__conclusion {
  text-align: center;
}

.page-game-guides-fishing-game-strategy__conclusion p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-fishing-game-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-fishing-game-strategy__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-fishing-game-strategy__section-title {
    font-size: 2em;
  }
  .page-game-guides-fishing-game-strategy__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-fishing-game-strategy__platform-content {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides-fishing-game-strategy__cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-game-guides-fishing-game-strategy__hero {
    padding: 60px 0;
  }
  .page-game-guides-fishing-game-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-fishing-game-strategy__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-fishing-game-strategy__section {
    padding: 40px 0;
  }
  .page-game-guides-fishing-game-strategy__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-strategy__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-game-guides-fishing-game-strategy__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-guides-fishing-game-strategy__features,
  .page-game-guides-fishing-game-strategy__concept-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-fishing-game-strategy__strategy-item {
    flex-direction: column !important;
  }
  .page-game-guides-fishing-game-strategy__strategy-title {
    font-size: 1.6em;
  }
  .page-game-guides-fishing-game-strategy__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-game-guides-fishing-game-strategy__accordion-header::after {
    right: 20px;
  }
  .page-game-guides-fishing-game-strategy__accordion-content {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-fishing-game-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-fishing-game-strategy__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-guides-fishing-game-strategy__btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-game-guides-fishing-game-strategy__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-fishing-game-strategy__btn--secondary {
    margin-top: 0;
  }
  .page-game-guides-fishing-game-strategy__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-fishing-game-strategy__feature-item h3,
  .page-game-guides-fishing-game-strategy__concept-item h3 {
    font-size: 1.4em;
  }
  .page-game-guides-fishing-game-strategy__strategy-title {
    font-size: 1.4em;
  }
}