:root {
  --primary-color: #26A9E0; /* 淡蓝色 */
  --secondary-color: #FFFFFF; /* 白色 */
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --login-button-color: #EA7C07; /* 登录按钮橙色 */
  --background-color-body: #FFFFFF; /* 从shared.css获取body背景色 */
  --border-color: #e0e0e0;
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s ease;
  --header-offset: 120px; /* Default value, will be overridden by shared.css if defined */
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  background-color: var(--background-color-body);
}

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

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games__text-block {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: #555555;
}

.page-fishing-games__card {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow-light);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.page-fishing-games__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-speed);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background: #1e87b7; /* Darken primary color */
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-login {
  background: var(--login-button-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-button-color);
}

.page-fishing-games__btn-login:hover {
  background: #c36506; /* Darken login button color */
  border-color: #c36506;
}

.page-fishing-games__cta-center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #A5DFF9 100%);
  padding-top: var(--header-offset, 120px);
  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;
  z-index: 1;
}

.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: var(--box-shadow-light);
}

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

.page-fishing-games__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-fishing-games__main-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-fishing-games__cta-button {
  padding: 18px 45px;
  font-size: 20px;
  border-width: 2px;
}

.page-fishing-games__introduction {
  background-color: var(--secondary-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-fishing-games__why-choose {
  background-color: #f8fcfd;
}

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

.page-fishing-games__game-types {
  background-color: var(--secondary-color);
}

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

.page-fishing-games__game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__game-card .page-fishing-games__btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.page-fishing-games__promotions {
  background-color: #f8fcfd;
}

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

.page-fishing-games__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__promo-card .page-fishing-games__btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

.page-fishing-games__game-guide {
  background-color: var(--secondary-color);
}

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

.page-fishing-games__guide-step .page-fishing-games__btn-primary,
.page-fishing-games__guide-step .page-fishing-games__btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.page-fishing-games__guide-step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}