/* style/fishing-games.css */

/* Base styles for the page */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Inherited from body, explicit for clarity */
}

.page-fishing-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fishing-games__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #26A9E0;
  letter-spacing: -0.02em;
}

.page-fishing-games h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.page-fishing-games h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #26A9E0;
  letter-spacing: -0.02em;
}

.page-fishing-games h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
  line-height: 1.3;
}

.page-fishing-games p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-fishing-games a {
  color: #26A9E0;
  text-decoration: none;
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.page-fishing-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-primary:hover {
  background-color: #1a7fb8;
  border-color: #1a7fb8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #1a7fb8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px 20px 60px;
  overflow: hidden;
  text-align: center;
}

.page-fishing-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-fishing-games__description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Section common styles */
.page-fishing-games__intro-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__faq-section {
  padding: 80px 0;
  color: #333333;
  background-color: #FFFFFF;
}

.page-fishing-games__intro-section p,
.page-fishing-games__guide-section p,
.page-fishing-games__promotions-section p,
.page-fishing-games__faq-section p {
  color: #333333;
}

.page-fishing-games__features-section,
.page-fishing-games__strategies-section,
.page-fishing-games__download-section,
.page-fishing-games__conclusion-section {
  padding: 80px 0;
  color: #ffffff;
  background-color: #1a1a1a;
}

.page-fishing-games__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-fishing-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Features Grid */
.page-fishing-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__card-title {
  color: #26A9E0;
  font-size: 24px;
  margin-bottom: 10px;
}

.page-fishing-games__feature-card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Guide List */
.page-fishing-games__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #333333;
}

.page-fishing-games__guide-list li {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333333;
}

.page-fishing-games__guide-list li strong {
  color: #26A9E0;
}

/* Strategy List */
.page-fishing-games__strategy-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-fishing-games__strategy-list li {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

.page-fishing-games__strategy-list li strong {
  color: #26A9E0;
}

/* Promotions List */
.page-fishing-games__promo-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #333333;
}

.page-fishing-games__promo-list li {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333333;
}

.page-fishing-games__promo-list li strong {
  color: #26A9E0;
}

/* Download Section */
.page-fishing-games__download-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-fishing-games__download-text {
  flex: 1;
  min-width: 300px;
}

.page-fishing-games__download-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-fishing-games__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  width: 400px; /* Specific width for desktop layout */
  height: 267px; /* Specific height for desktop layout */
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-fishing-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #26A9E0;
  background-color: #eaf7ff;
}

.page-fishing-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 17px;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-fishing-games__faq-answer p {
  color: #555555;
  margin-bottom: 0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section .page-fishing-games__cta-button {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-content {
    padding: 15px;
  }

  .page-fishing-games h1 {
    font-size: clamp(30px, 4.5vw, 50px);
  }

  .page-fishing-games__description {
    font-size: 18px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(26px, 3.5vw, 40px);
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }

  .page-fishing-games__download-content {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__download-image {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-section {
    min-height: 450px;
    padding: 10px 15px 40px;
  }

  .page-fishing-games h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .page-fishing-games__description {
    font-size: 16px;
  }

  .page-fishing-games__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-fishing-games p,
  .page-fishing-games__guide-list li,
  .page-fishing-games__strategy-list li,
  .page-fishing-games__promo-list li,
  .page-fishing-games__faq-answer p {
    font-size: 16px;
  }

  .page-fishing-games h3 {
    font-size: 20px;
  }

  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px; /* Add some spacing between stacked buttons */
  }

  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__strategies-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__download-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__conclusion-section {
    padding: 40px 0;
  }

  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games__faq-item summary {
    font-size: 18px;
    padding: 15px 20px;
  }

  .page-fishing-games__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-fishing-games__download-image {
    width: 100%;
    order: 0;
  }

  .page-fishing-games__download-text {
    width: 100%;
  }

  .page-fishing-games__app-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-fishing-games__hero-content {
    width: 100%;
  }
}