/* style/fishing-games-weapon-upgrades.css */
.page-fishing-games-weapon-upgrades {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-fishing-games-weapon-upgrades__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-fishing-games-weapon-upgrades__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-fishing-games-weapon-upgrades__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold highlight */
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-weapon-upgrades__hero-title .highlight {
  color: #FFD700;
}

.page-fishing-games-weapon-upgrades__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-fishing-games-weapon-upgrades__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 0;
}

.page-fishing-games-weapon-upgrades__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-weapon-upgrades__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.page-fishing-games-weapon-upgrades__section--alt-bg {
  background-color: #222B3D; /* Slightly lighter dark background */
}

.page-fishing-games-weapon-upgrades__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-fishing-games-weapon-upgrades__section-title .highlight {
  color: #FFD700;
}

.page-fishing-games-weapon-upgrades__content-block {
  font-size: 1.05em;
  color: #CCCCCC;
}

.page-fishing-games-weapon-upgrades__content-block p {
  margin-bottom: 15px;
}

.page-fishing-games-weapon-upgrades__content-block ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games-weapon-upgrades__content-block li {
  margin-bottom: 10px;
}

.page-fishing-games-weapon-upgrades__content-block strong {
  color: #FFD700;
}

.page-fishing-games-weapon-upgrades__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-fishing-games-weapon-upgrades__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-fishing-games-weapon-upgrades__weapon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-fishing-games-weapon-upgrades__weapon-card {
  background-color: #1A202C;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-fishing-games-weapon-upgrades__weapon-card:hover {
  transform: translateY(-5px);
}

.page-fishing-games-weapon-upgrades__weapon-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-fishing-games-weapon-upgrades__weapon-name {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-fishing-games-weapon-upgrades__weapon-description {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-fishing-games-weapon-upgrades__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.page-fishing-games-weapon-upgrades__image-left,
.page-fishing-games-weapon-upgrades__image-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.page-fishing-games-weapon-upgrades__image-left .page-fishing-games-weapon-upgrades__content-image {
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-fishing-games-weapon-upgrades__image-right .page-fishing-games-weapon-upgrades__content-image {
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-fishing-games-weapon-upgrades__content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.page-fishing-games-weapon-upgrades__section--cta-footer {
  background: linear-gradient(45deg, #1A202C 0%, #0028ff 100%); /* Blue tint for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-fishing-games-weapon-upgrades__cta-content {
  max-width: 800px;
}

.page-fishing-games-weapon-upgrades__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games-weapon-upgrades__cta-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-fishing-games-weapon-upgrades__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-weapon-upgrades__cta-button--secondary {
  background-color: #333B4A; /* Darker button */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-fishing-games-weapon-upgrades__cta-button--secondary:hover {
  background-color: #444E5D;
  color: #FFFFFF;
}

.page-fishing-games-weapon-upgrades__cta-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-fishing-games-weapon-upgrades__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-fishing-games-weapon-upgrades__hero {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    padding: 100px 40px;
  }

  .page-fishing-games-weapon-upgrades__hero-content {
    text-align: left;
    flex: 1;
  }

  .page-fishing-games-weapon-upgrades__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

  .page-fishing-games-weapon-upgrades__hero-title {
    font-size: 4em;
  }

  .page-fishing-games-weapon-upgrades__section-title {
    font-size: 3em;
  }

  .page-fishing-games-weapon-upgrades__image-left {
    flex-direction: row;
    align-items: center;
  }

  .page-fishing-games-weapon-upgrades__image-right {
    flex-direction: row-reverse;
    align-items: center;
  }

  .page-fishing-games-weapon-upgrades__image-left .page-fishing-games-weapon-upgrades__content-image {
    margin-bottom: 0;
  }

  .page-fishing-games-weapon-upgrades__image-right .page-fishing-games-weapon-upgrades__content-image {
    margin-bottom: 0;
  }

  .page-fishing-games-weapon-upgrades__cta-footer {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    padding: 100px 40px;
  }

  .page-fishing-games-weapon-upgrades__cta-content {
    flex: 1;
  }

  .page-fishing-games-weapon-upgrades__cta-image-wrapper {
    flex: 1;
  }

  .page-fishing-games-weapon-upgrades__cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .page-fishing-games-weapon-upgrades__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-weapon-upgrades__section-title {
    font-size: 2em;
  }
  .page-fishing-games-weapon-upgrades__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games-weapon-upgrades__cta-title {
    font-size: 2em;
  }
  .page-fishing-games-weapon-upgrades__cta-buttons {
    flex-direction: column;
  }
  .page-fishing-games-weapon-upgrades__cta-button {
    width: 100%;
  }
}