/* style/fishing-games-skill-guide.css */

/* Variables */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --bg-dark: #121212; /* From shared.css body background */
  --register-btn-bg: #C30800;
  --register-login-font: #FFFF00;
}

.page-fishing-games-skill-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if specific section needs it */
}

.page-fishing-games-skill-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for desktop */
  background-color: #000; /* Dark background for video */
}

.page-fishing-games-skill-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-fishing-games-skill-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

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

.page-fishing-games-skill-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-fishing-games-skill-guide__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games-skill-guide__video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  cursor: pointer; /* Indicate clickability */
}

.page-fishing-games-skill-guide__section {
  padding: 60px 0;
  background-color: var(--bg-dark); /* Ensure content sections have consistent dark background */
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games-skill-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-skill-guide__content-block {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content blocks */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-skill-guide__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-fishing-games-skill-guide p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-on-dark);
}

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

/* Buttons */
.page-fishing-games-skill-guide__btn-primary,
.page-fishing-games-skill-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-fishing-games-skill-guide__btn-primary {
  background-color: var(--register-btn-bg); /* Use specific color for primary CTA */
  color: var(--register-login-font); /* Use specific font color for primary CTA */
  border: 2px solid var(--register-btn-bg);
  margin-right: 15px;
}

.page-fishing-games-skill-guide__btn-primary:hover {
  background-color: #a30606; /* Darken on hover */
  border-color: #a30606;
}

.page-fishing-games-skill-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games-skill-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-fishing-games-skill-guide__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: rgba(1, 116, 57, 0.1); /* Light tint of primary color */
}

.page-fishing-games-skill-guide__cta-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: var(--text-on-dark);
}

.page-fishing-games-skill-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* FAQ Section */
.page-fishing-games-skill-guide__faq-list {
  margin-top: 30px;
}