:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --accent-color-login: #EA7C07;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
}

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

.page-fishing-games a {
  text-decoration: none;
  color: var(--primary-color);
}

.page-fishing-games a:hover {
  text-decoration: underline;
}

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

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-fishing-games__section-title--white {
  color: var(--text-color-light);
}

.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);
  background-color: var(--primary-color);
}

.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;
}

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

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games__hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-fishing-games__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--text-color-light);
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-color-login);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button:hover {
  background: #e06c00;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.page-fishing-games__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-fishing-games__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-fishing-games__introduction p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__why-choose {
  padding-bottom: 80px;
}

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

.page-fishing-games__feature-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-color-dark);
}

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

.page-fishing-games__feature-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-fishing-games__game-item {
  background: var(--background-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-color);
}

.page-fishing-games__game-name {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-item p {
  font-size: 16px;
  color: var(--text-color-dark);
}

.page-fishing-games__button-group {
  margin-top: 40px;
}

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

.page-fishing-games__btn-primary:hover {
  background: #1f8ec4;
  text-decoration: none;
}

.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);
  border-color: var(--primary-color);
  text-decoration: none;
}

.page-fishing-games__promotions {
  padding-bottom: 80px;
}

.page-fishing-games__promo-image {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-fishing-games__promo-intro {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
  color: var(--text-color-light);
}

.page-fishing-games__promo-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-fishing-games__promo-item h3 {
  font-size: 22px;
  color: var(--text-color-light);
  margin-bottom: 10px;
}

.page-fishing-games__promo-item p {
  font-size: 16px;
  color: var(--text-color-light);
}

.page-fishing-games__how-to-play {
  padding-bottom: 80px;
}

.page-fishing-games__section-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

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

.page-fishing-games__step-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid var(--border-color);
  color: var(--text-color-dark);
  position: relative;
  padding-top: 70px;
}

.page-fishing-games__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--text-color-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-fishing-games__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__tips-list li {
    background: var(--background-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 17px;
    color: var(--text-color-dark);
}

.page-fishing-games__tips-list li strong {
    color: var(--primary-color);
}

.page-fishing-games__safety-support {
  padding-bottom: 80px;
}

.page-fishing-games__safety-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-fishing-games__safety-text {
  flex: 1;
}

.page-fishing-games__safety-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-fishing-games__safety-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games__safety-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-fishing-games__faq-section {
  padding-bottom: 80px;
}