/* style/ban-ca-fish-shooting-guide.css */

:root {
  --primary-color: #1A1A1A;
  --secondary-color: #FFD700;
  --text-color-light: #F8F8F8;
  --text-color-dark: #333333;
  --background-dark: #1A1A1A;
  --background-light: #FFFFFF;
  --card-bg: #2C2C2C;
  --border-color: #444444;
}

.page-ban-ca-fish-shooting-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

.page-ban-ca-fish-shooting-guide a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ban-ca-fish-shooting-guide a:hover {
  color: #FFF;
}

.page-ban-ca-fish-shooting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ban-ca-fish-shooting-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-ban-ca-fish-shooting-guide__section:nth-child(even) {
  background-color: #222222;
}

.page-ban-ca-fish-shooting-guide h1,
.page-ban-ca-fish-shooting-guide h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-ban-ca-fish-shooting-guide h1 {
  font-size: 2.8em;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-ban-ca-fish-shooting-guide h2 {
  font-size: 2.2em;
}

.page-ban-ca-fish-shooting-guide h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-ban-ca-fish-shooting-guide p {
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-ban-ca-fish-shooting-guide__cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-ban-ca-fish-shooting-guide__cta-button:hover {
  background: #FFF;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-ban-ca-fish-shooting-guide__cta-button--large {
  padding: 18px 50px;
  font-size: 1.3em;
}

/* Hero Guide Section */
.page-ban-ca-fish-shooting-guide__hero-guide {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
  padding: 80px 0 60px;
}

.page-ban-ca-fish-shooting-guide__hero-guide p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Content Grid for text and image */
.page-ban-ca-fish-shooting-guide__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 30px;
}

.page-ban-ca-fish-shooting-guide__content-grid.page-ban-ca-fish-shooting-guide__reverse-grid {
  flex-direction: row-reverse;
}

.page-ban-ca-fish-shooting-guide__text-content {
  flex: 1;
}

.page-ban-ca-fish-shooting-guide__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-ban-ca-fish-shooting-guide__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Game Cards */
.page-ban-ca-fish-shooting-guide__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca-fish-shooting-guide__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-ban-ca-fish-shooting-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-ban-ca-fish-shooting-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--secondary-color);
}

.page-ban-ca-fish-shooting-guide__card h3 {
  font-size: 1.3em;
  margin: 20px 15px 10px;
  color: #FFF;
}

.page-ban-ca-fish-shooting-guide__card h3 a {
  color: #FFF;
}

.page-ban-ca-fish-shooting-guide__card p {
  color: #CCCCCC;
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Strategy Items */
.page-ban-ca-fish-shooting-guide__strategy-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-ban-ca-fish-shooting-guide__strategy-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-ban-ca-fish-shooting-guide__strategy-item p {
  color: #E0E0E0;
}

/* Registration Steps */
.page-ban-ca-fish-shooting-guide__steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-ban-ca-fish-shooting-guide__steps li {
  background-color: var(--card-bg);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ban-ca-fish-shooting-guide__step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-ban-ca-fish-shooting-guide__step-icon .page-ban-ca-fish-shooting-guide__small-icon-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%; /* Make placeholder appear round */
}

.page-ban-ca-fish-shooting-guide__step-icon p {
  position: relative;
  z-index: 1;
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-ban-ca-fish-shooting-guide__steps h3 {
  color: #FFF;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-ban-ca-fish-shooting-guide__steps p {
  color: #E0E0E0;
}

/* Promotions List */
.page-ban-ca-fish-shooting-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-ban-ca-fish-shooting-guide__promo-list li {
  background-color: var(--card-bg);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-ban-ca-fish-shooting-guide__promo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-ban-ca-fish-shooting-guide__promo-icon .page-ban-ca-fish-shooting-guide__small-icon-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.page-ban-ca-fish-shooting-guide__promo-content h3 {
  color: #FFF;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-ban-ca-fish-shooting-guide__promo-content p {
  color: #E0E0E0;
  margin-bottom: 0;
}

/* Safety List */
.page-ban-ca-fish-shooting-guide__safety-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca-fish-shooting-guide__safety-list li {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-ban-ca-fish-shooting-guide__safety-list li h3 {
  color: #FFF;
  font-size: 1.3em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-ban-ca-fish-shooting-guide__safety-list li p {
  color: #E0E0E0;
}

.page-ban-ca-fish-shooting-guide__safety-list .page-ban-ca-fish-shooting-guide__small-icon-placeholder {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
}

/* FAQ */
.page-ban-ca-fish-shooting-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg);
  color: #FFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #3A3A3A;
  border-color: var(--secondary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFF;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #222222;
  color: #E0E0E0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.faq-answer p {
  margin: 0;
  padding-top: 10px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ban-ca-fish-shooting-guide__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-ban-ca-fish-shooting-guide__content-grid.page-ban-ca-fish-shooting-guide__reverse-grid {
    flex-direction: column;
  }

  .page-ban-ca-fish-shooting-guide__hero-guide h1 {
    font-size: 2.2em;
  }

  .page-ban-ca-fish-shooting-guide h2 {
    font-size: 1.8em;
  }

  .page-ban-ca-fish-shooting-guide h3 {
    font-size: 1.3em;
  }

  .page-ban-ca-fish-shooting-guide__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-ban-ca-fish-shooting-guide__cta-button--large {
    padding: 15px 40px;
    font-size: 1.1em;
  }

  .page-ban-ca-fish-shooting-guide__game-cards,
  .page-ban-ca-fish-shooting-guide__steps,
  .page-ban-ca-fish-shooting-guide__safety-list {
    grid-template-columns: 1fr;
  }

  .page-ban-ca-fish-shooting-guide__promo-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-ban-ca-fish-shooting-guide__promo-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 576px) {
  .page-ban-ca-fish-shooting-guide__hero-guide h1 {
    font-size: 1.8em;
  }

  .page-ban-ca-fish-shooting-guide h2 {
    font-size: 1.5em;
  }

  .page-ban-ca-fish-shooting-guide__section {
    padding: 40px 0;
  }

  .page-ban-ca-fish-shooting-guide__container {
    padding: 0 15px;
  }

  .page-ban-ca-fish-shooting-guide__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-ban-ca-fish-shooting-guide__cta-button--large {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-ban-ca-fish-shooting-guide__game-cards,
  .page-ban-ca-fish-shooting-guide__steps,
  .page-ban-ca-fish-shooting-guide__safety-list {
    gap: 20px;
  }

  .page-ban-ca-fish-shooting-guide__strategy-item {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 20px;
  }
}