/* style/fishing-games.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-dark: #0D0E12;
  --text-light: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

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

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, main offset from body */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
}

.page-fishing-games__hero-content {
  max-width: 900px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__section {
  padding: 60px 0;
}

.page-fishing-games__section-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-fishing-games__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-fishing-games__sub-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.page-fishing-games__grid-layout--2-col {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-fishing-games__grid-layout--3-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__card-content {
  padding: 25px;
}

.page-fishing-games__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__card-text {
  font-size: 1rem;
  color: var(--text-light);
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-fishing-games__dark-section {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-fishing-games__feature-item {
  text-align: center;
  padding: 20px;
}

.page-fishing-games__feature-icon {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__feature-title {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-fishing-games__feature-text {
  font-size: 1rem;
  color: var(--text-light);
}

.page-fishing-games__image-fullwidth {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  display: block;
}

.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__list-item {
  background-color: var(--card-bg);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__benefit-card {
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__benefit-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-fishing-games__benefit-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__benefit-text {
  font-size: 1rem;
  color: var(--text-light);
}

.page-fishing-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-fishing-games__step-item {
  background-color: var(--card-bg);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--border-color);
}

.page-fishing-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding-left: 60px; /* Adjust for counter */
}

.page-fishing-games__step-text {
  font-size: 1.1rem;
  color: var(--text-light);
  padding-left: 60px; /* Adjust for counter */
}

.page-fishing-games__faq-list {
  margin-top: 30px;
}

.page-fishing-games__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-fishing-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
}

.page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-question {
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--secondary-color);
}

.page-fishing-games__faq-item[open] .page-fishing-games__faq-toggle {
  content: '−';
}

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

.page-fishing-games__faq-item summary {
  list-style: none;
}

.page-fishing-games .highlight {
  color: var(--glow-color);
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-fishing-games__section-title {
    font-size: 2.2rem;
  }
  .page-fishing-games__hero-image {
    height: 500px;
  }
  .page-fishing-games__step-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__hero-image {
    height: 350px;
    margin-bottom: 20px;
  }
  .page-fishing-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-fishing-games__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-fishing-games__sub-title {
    font-size: 1.5rem;
  }
  .page-fishing-games__text-block,
  .page-fishing-games__card-text,
  .page-fishing-games__feature-text,
  .page-fishing-games__list-item,
  .page-fishing-games__benefit-text,
  .page-fishing-games__step-text,
  .page-fishing-games__faq-answer p {
    font-size: 0.95rem;
  }
  .page-fishing-games__grid-layout,
  .page-fishing-games__grid-layout--2-col,
  .page-fishing-games__grid-layout--3-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card {
    padding: 0;
  }
  .page-fishing-games__card-image {
    height: 200px;
  }
  .page-fishing-games__card-title {
    font-size: 1.3rem;
  }
  .page-fishing-games__feature-title {
    font-size: 1.4rem;
  }
  .page-fishing-games__benefit-title {
    font-size: 1.2rem;
  }
  .page-fishing-games__step-item::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  .page-fishing-games__step-title {
    padding-left: 55px;
    font-size: 1.3rem;
  }
  .page-fishing-games__step-text {
    padding-left: 55px;
  }
  .page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-fishing-games__faq-toggle {
    font-size: 1.5rem;
  }
  .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image and video responsiveness */
  .page-fishing-games img,
  .page-fishing-games video,
  .page-fishing-games__video {
    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,
  .page-fishing-games__video-section,
  .page-fishing-games__video-container,
  .page-fishing-games__video-wrapper,
  .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;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-fishing-games__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-fishing-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}