:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color: #333333;
  --heading-color: #000000;
  --dark-section-bg: #26A9E0; /* Using primary color for dark sections */
  --dark-section-text: #FFFFFF;
  --card-bg: #FFFFFF;
  --border-color: #e0e0e0;
  --login-button-color: #EA7C07; /* Specified for login, but primary used for general CTA */
}

.page-fishing-games {
  font-family: Arial, sans-serif;
  color: var(--text-color); /* Default text color for light body background */
  line-height: 1.6;
  background-color: var(--secondary-color); /* Explicitly set for clarity, though shared.css might set body */
  overflow-x: hidden; /* Prevent content overflow */
}

/* 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: var(--header-offset, 120px); /* Fixed Header Offset */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

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

.page-fishing-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1000px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--dark-section-text);
}

.page-fishing-games__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--dark-section-text);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  font-weight: bold;
}

.page-fishing-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-section-text);
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__cta-button:hover {
  background: #1e87bb;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button--centered {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 300px;
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

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

.page-fishing-games__section-title {
  font-size: 2.2em;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-fishing-games__section-description {
  font-size: 1.1em;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Dark Section Styling */
.page-fishing-games__dark-section {
  background: var(--dark-section-bg);
  color: var(--dark-section-text);
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__section-description,
.page-fishing-games__dark-section .page-fishing-games__text-block p,
.page-fishing-games__dark-section .page-fishing-games__step-title,
.page-fishing-games__dark-section .page-fishing-games__step-item p,
.page-fishing-games__dark-section .page-fishing-games__promo-title,
.page-fishing-games__dark-section .page-fishing-games__promo-text,
.page-fishing-games__dark-section .page-fishing-games__highlight {
  color: var(--dark-section-text);
}

.page-fishing-games__dark-section a {
  color: var(--dark-section-text);
  text-decoration: underline;
}

.page-fishing-games__dark-section a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Introduction Section */
.page-fishing-games__introduction-section .page-fishing-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.page-fishing-games__introduction-section .page-fishing-games__text-block {
  flex: 1;
}

.page-fishing-games__introduction-section .page-fishing-games__image-block {
  flex: 1;
  min-width: 200px;
}

.page-fishing-games__introduction-section .page-fishing-games__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-fishing-games__features {
  margin-top: 60px;
}

.page-fishing-games__features-title {
  font-size: 1.8em;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-fishing-games__feature-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-fishing-games__feature-icon {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.page-fishing-games__feature-heading {
  font-size: 1.4em;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.page-fishing-games__feature-item p {
  color: var(--text-color);
  font-size: 1em;
  text-align: center;
}

/* Registration Section */
.page-fishing-games__registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-fishing-games__step-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--dark-section-text);
  font-weight: 600;
}

.page-fishing-games__step-item p {
  color: var(--dark-section-text);
  font-size: 1em;
}