:root {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-dark: #0d0d0d; /* Slightly lighter than body for sections */
  --background-light: #ffffff;
  --card-background-dark-bg: rgba(255, 255, 255, 0.1);
  --card-background-light-bg: #f9f9f9;
  --border-color: #333333;
}

.page-fishing-games-tips-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-fishing-games-tips-guide__hero-section {
  position: relative;
  padding: 180px 20px 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 0, 0, 0.8) 100%), url('[GALLERY:bg:fishing_game_hero_bg,abstract_ocean,8kbet_456]') center center / cover no-repeat;
  color: var(--text-color-dark-bg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-fishing-games-tips-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games-tips-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games-tips-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-fishing-games-tips-guide__cta-button:hover {
  background: #a30000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-tips-guide__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-color-light-bg);
  margin-left: 20px;
}

.page-fishing-games-tips-guide__cta-button--secondary:hover {
  background: #ccb000;
  color: var(--text-color-light-bg);
}

.page-fishing-games-tips-guide__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-fishing-games-tips-guide__cta-button--primary:hover {
  background: #a30000;
}

.page-fishing-games-tips-guide__inline-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games-tips-guide__inline-link:hover {
  color: #ccb000;
  text-decoration: none;
}

.page-fishing-games-tips-guide__introduction-section,
.page-fishing-games-tips-guide__advanced-strategy-section,
.page-fishing-games-tips-guide__responsible-gambling-section {
  padding: 80px 0;
  background: var(--background-light);
  color: var(--text-color-light-bg);
}

.page-fishing-games-tips-guide__dark-section {
  background: var(--background-dark);
  color: var(--text-color-dark-bg);
  padding: 80px 0;
}

.page-fishing-games-tips-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-fishing-games-tips-guide__dark-section .page-fishing-games-tips-guide__section-title {
  color: var(--secondary-color);
}

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

.page-fishing-games-tips-guide__dark-section .page-fishing-games-tips-guide__section-title::after {
  background-color: var(--secondary-color);
}

.page-fishing-games-tips-guide p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-fishing-games-tips-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games-tips-guide__tip-card {
  background: var(--card-background-dark-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-fishing-games-tips-guide__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-tips-guide__card-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-fishing-games-tips-guide__tip-card p {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-fishing-games-tips-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games-tips-guide__sub-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.page-fishing-games-tips-guide__sub-title::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-fishing-games-tips-guide__advantage-list,
.page-fishing-games-tips-guide__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-fishing-games-tips-guide__advantage-list li,
.page-fishing-games-tips-guide__responsible-list li {
  background: var(--card-background-dark-bg);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: var(--text-color-dark-bg);
  border-left: 5px solid var(--primary-color);
}

.page-fishing-games-tips-guide__advantage-list li strong,
.page-fishing-games-tips-guide__responsible-list li strong {
  color: var(--secondary-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-fishing-games-tips-guide__responsible-gambling-section .page-fishing-games-tips-guide__advantage-list li,
.page-fishing-games-tips-guide__responsible-gambling-section .page-fishing-games-tips-guide__responsible-list li {
  background: var(--card-background-light-bg);
  color: var(--text-color-light-bg);
  border-left-color: var(--primary-color);
}

.page-fishing-games-tips-guide__responsible-gambling-section .page-fishing-games-tips-guide__advantage-list li strong,
.page-fishing-games-tips-guide__responsible-gambling-section .page-fishing-games-tips-guide__responsible-list li strong {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-tips-guide__main-title {
    font-size: 3em;
  }
  .page-fishing-games-tips-guide__section-title {
    font-size: 2em;
  }
  .page-fishing-games-tips-guide__sub-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips-guide__hero-section {
    padding: 100px 15px 50px;
    min-height: 400px;
    padding-top: 100px !important; /* Mobile fixed nav bar spacing */
  }
  .page-fishing-games-tips-guide__main-title {
    font-size: 2.2em;
  }
  .page-fishing-games-tips-guide__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-tips-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games-tips-guide__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-fishing-games-tips-guide__introduction-section,
  .page-fishing-games-tips-guide__tips-section,
  .page-fishing-games-tips-guide__advanced-strategy-section,
  .page-fishing-games-tips-guide__platform-advantage-section,
  .page-fishing-games-tips-guide__responsible-gambling-section,
  .page-fishing-games-tips-guide__conclusion-section {
    padding: 50px 0;
  }
  .page-fishing-games-tips-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-fishing-games-tips-guide__sub-title {
    font-size: 1.5em;
  }
  .page-fishing-games-tips-guide p {
    font-size: 1em;
  }
  .page-fishing-games-tips-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-tips-guide__tip-card {
    padding: 20px;
  }
  .page-fishing-games-tips-guide__card-title {
    font-size: 1.5em;
  }
  .page-fishing-games-tips-guide__image,
  .page-fishing-games-tips-guide__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    min-width: unset;
    min-height: unset;
  }
  .page-fishing-games-tips-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games-tips-guide__advantage-list li,
  .page-fishing-games-tips-guide__responsible-list li {
    font-size: 1em;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips-guide__main-title {
    font-size: 1.8em;
  }
  .page-fishing-games-tips-guide__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-tips-guide__sub-title {
    font-size: 1.3em;
  }
  .page-fishing-games-tips-guide__hero-section {
    padding-top: 90px !important;
  }
}