.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color, #FFF3E6); /* Default text color for dark background */
  background-color: var(--site-bg, #0D0E12); /* Ensure body background is dark */
  line-height: 1.6;
}

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-main-color, #FFF3E6);
  line-height: 1.3;
}

.page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF3E6);
}

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

.page-fishing-games__hero-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF3E6);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--accent-color, #FFA53A) 0%, var(--deep-orange-color, #D96800) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  background: linear-gradient(180deg, var(--glow-color, #FFB04D) 0%, var(--accent-color, #FFA53A) 100%);
}

/* Dark section styling */
.page-fishing-games__dark-section {
  background-color: var(--card-bg-color, #17191F);
}

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

.page-fishing-games__card {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color, #FFF3E6);
}

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

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color, #FF8C1A);
}

.page-fishing-games__card p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
}

/* Game Cards Wrapper */
.page-fishing-games__game-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games__game-card {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color, #A84F0C);
}

.page-fishing-games__game-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-fishing-games__game-card p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, var(--accent-color, #FFA53A) 0%, var(--deep-orange-color, #D96800) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, var(--glow-color, #FFB04D) 0%, var(--accent-color, #FFA53A) 100%);
}

/* Steps List */
.page-fishing-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__steps-list li {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: var(--primary-color, #FF8C1A);
  color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.page-fishing-games__step-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 10px;
}

.page-fishing-games__steps-list p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__steps-list a {
  color: var(--accent-color, #FFA53A);
  text-decoration: underline;
}

.page-fishing-games__steps-list a:hover {
  color: var(--glow-color, #FFB04D);
}

/* Strategy Section */
.page-fishing-games__strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
  text-align: left;
}

.page-fishing-games__tips-list {
  list-style: none;
  padding: 0;
}

.page-fishing-games__tips-list li {
  margin-bottom: 25px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__tip-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 8px;
}

.page-fishing-games__strategy-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-color, #A84F0C);
}

/* Promotions Section */
.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__promo-list li {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__promo-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 10px;
}

.page-fishing-games__promo-list p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
}

/* Security Section */
.page-fishing-games__security-features {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-fishing-games__security-features li {
  background-color: var(--card-bg-color, #17191F);
  border: 1px solid var(--border-color, #A84F0C);
  border-radius: 8px;
  padding: 25px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__feature-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 10px;
}

.page-fishing-games__security-features p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #A84F0C);
  overflow: hidden;
  background: var(--card-bg-color, #17191F);
  color: var(--text-main-color, #FFF3E6);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(var(--primary-color-rgb, 255, 140, 26), 0.1);
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--card-bg-color-rgb, 23, 25, 31), 0.8);
  border-radius: 0 0 8px 8px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__faq-answer p {
  font-size: 16px;
  color: var(--text-main-color, #FFF3E6);
}

.page-fishing-games__faq-answer a {
  color: var(--accent-color, #FFA53A);
  text-decoration: underline;
}

.page-fishing-games__faq-answer a:hover {
  color: var(--glow-color, #FFB04D);
}

/* Global link styles for dark background */
.page-fishing-games a {
  color: var(--primary-color, #FF8C1A);
  text-decoration: none;
}

.page-fishing-games a:hover {
  color: var(--accent-color, #FFA53A);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__text-block {
    font-size: 17px;
  }
  .page-fishing-games__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__strategy-text {
    order: 2;
  }
  .page-fishing-games__strategy-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__main-title {
    font-size: 28px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__section {
    padding: 40px 15px;
  }
  .page-fishing-games__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .page-fishing-games__text-block {
    font-size: 15px;
  }
  .page-fishing-games__grid-cards, .page-fishing-games__game-cards-wrapper, .page-fishing-games__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__card, .page-fishing-games__game-card, .page-fishing-games__security-features li {
    padding: 20px;
  }
  .page-fishing-games__card-title, .page-fishing-games__game-title, .page-fishing-games__step-title, .page-fishing-games__tip-title, .page-fishing-games__promo-title, .page-fishing-games__feature-title {
    font-size: 18px;
  }
  .page-fishing-games__card p, .page-fishing-games__game-card p, .page-fishing-games__steps-list p, .page-fishing-games__tips-list p, .page-fishing-games__promo-list p, .page-fishing-games__security-features p {
    font-size: 15px;
  }
  .page-fishing-games__game-card img {
    height: 200px;
  }
  .page-fishing-games__steps-list li {
    padding-left: 60px;
  }
  .page-fishing-games__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
    left: 15px;
    top: 15px;
  }
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px;
  }
  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 15px 15px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .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;
  }
  .page-fishing-games__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

/* Color variables for easier management */
:root {
  --primary-color: #FF8C1A;
  --primary-color-rgb: 255, 140, 26;
  --accent-color: #FFA53A;
  --accent-color-rgb: 255, 165, 58;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg-color: #17191F;
  --site-bg: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}