:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-fishing-games {
  color: var(--text-main); /* Main text color for dark body background */
  background-color: var(--deep-navy); /* Ensure consistency if body bg is overridden */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-fishing-games__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-fishing-games__section:last-of-type {
  border-bottom: none;
}

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

.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-fishing-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-fishing-games__paragraph {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-fishing-games__center-text {
  text-align: center;
}

/* 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 */
  background: var(--deep-navy);
}

.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%; /* Ensure it takes full width within max-width */
}

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

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

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

.page-fishing-games__main-title {
  font-size: clamp(2.2em, 3.5vw, 3em); /* H1 font size control */
  font-weight: 800;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-description {
  font-size: 1.15em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main);
  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.2);
  border: none;
  cursor: pointer;
}

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

/* Quick Access Section */
.page-fishing-games__quick-access-section {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-fishing-games__quick-access-section .page-fishing-games__section-title {
  color: var(--gold-color);
}

.page-fishing-games__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-fishing-games__grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--button-gradient);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-height: 80px;
}

.page-fishing-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Game Showcase Section */
.page-fishing-games__game-showcase-section {
  background-color: var(--deep-navy);
}

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

.page-fishing-games__game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-fishing-games__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  padding: 20px 15px 10px;
  text-align: center;
}

.page-fishing-games__card-description {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 0 15px 20px;
  flex-grow: 1; /* Make description take available space */
  text-align: justify;
}

.page-fishing-games__card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fishing-games__card-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: var(--primary-color);
}