:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --aux-color: #FFA53A; /* Button gradient start */
  --deep-orange-color: #D96800; /* Button gradient end */
  --card-bg-color: #17191F;
  --bg-color: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
}

/* General Styling */
.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* #FFF3E6 */
  background: var(--bg-color); /* #0D0E12 */
  line-height: 1.6;
}

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

.page-fishing-games__section-title {
  font-size: clamp(28px, 4vw, 42px); /* Responsive H2 */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color); /* #FF8C1A */
  line-height: 1.2;
}

.page-fishing-games__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-fishing-games .highlight {
  color: var(--secondary-color); /* #FFA53A */
  font-weight: 600;
}

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

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  word-wrap: normal;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: linear-gradient(180deg, var(--aux-color) 0%, var(--deep-orange-color) 100%); /* #FFA53A to #D96800 */
  color: var(--text-main); /* #FFF3E6 */
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--primary-color); /* #FF8C1A */
  border: 2px solid var(--border-color); /* #A84F0C */
}

.page-fishing-games__btn-secondary:hover {
  background: rgba(255, 140, 26, 0.1);
  transform: translateY(-3px);
}

.page-fishing-games__card-button {
  background: linear-gradient(180deg, var(--aux-color) 0%, var(--deep-orange-color) 100%); /* #FFA53A to #D96800 */
  color: var(--text-main); /* #FFF3E6 */
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: auto; /* Push button to bottom of card */
}

.page-fishing-games__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(255, 165, 58, 0.3);
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__hero-image {
  width: 100%;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover for desktop */
  max-height: 700px;
  border-radius: 10px;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-fishing-games__main-title {
  font-size: clamp(36px, 5vw, 60px); /* Responsive H1 */
  font-weight: 900;
  color: var(--text-main); /* #FFF3E6 */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

/* Introduction Section */
.page-fishing-games__introduction-section {
  padding: 80px 0;
  background: var(--card-bg-color); /* #17191F */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-fishing-games__text-block {
  flex: 1;
  font-size: 18px;
}

.page-fishing-games__text-block p {
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-fishing-games__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fishing-games__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.3);
}

/* Game Types Section */
.page-fishing-games__game-types-section {
  padding: 80px 0;
  background: var(--bg-color); /* #0D0E12 */
}

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

.page-fishing-games__game-card {
  background: var(--card-bg-color); /* #17191F */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-fishing-games__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-fishing-games__game-card h3 {
  font-size: 24px;
  color: var(--primary-color); /* #FF8C1A */
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-fishing-games__game-card p {
  font-size: 16px;
  color: var(--text-main); /* #FFF3E6 */
  margin: 0 20px 20px;
  flex-grow: 1;
}

/* How To Play Section */
.page-fishing-games__how-to-play-section {
  padding: 80px 0;
  background: var(--primary-color); /* #FF8C1A */
  color: #000000; /* Dark text for contrast */
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-title {
  color: #000000;
}

.page-fishing-games__how-to-play-section .page-fishing-games__section-subtitle,
.page-fishing-games__how-to-play-section .page-fishing-games__description {
  color: #333333;
}

.page-fishing-games__how-to-play-section .highlight {
  color: var(--deep-orange-color); /* #D96800 for highlight on primary color bg */
}

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

.page-fishing-games__step-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__step-icon {
  width: 60px;
  height: 60px;
  background: var(--deep-orange-color); /* #D96800 */
  color: var(--text-main); /* #FFF3E6 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
}

.page-fishing-games__step-description {
  font-size: 16px;
  color: #666666;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Advantages Section */
.page-fishing-games__advantages-section {
  padding: 80px 0;
  background: var(--bg-color); /* #0D0E12 */
}

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

.page-fishing-games__advantage-card {
  background: var(--card-bg-color); /* #17191F */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-fishing-games__advantage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__advantage-card h3 {
  font-size: 22px;
  color: var(--primary-color); /* #FF8C1A */
  margin: 20px 20px 10px;
  line-height: 1.3;
  text-align: center;
}

.page-fishing-games__advantage-card p {
  font-size: 16px;
  color: var(--text-main); /* #FFF3E6 */
  margin: 0 20px 20px;
  text-align: center;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 80px 0;
  background: var(--card-bg-color); /* #17191F */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-fishing-games__promo-card {
  background: var(--bg-color); /* #0D0E12 */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-fishing-games__promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games__promo-card h3 {
  font-size: 24px;
  color: var(--primary-color); /* #FF8C1A */
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-fishing-games__promo-card p {
  font-size: 16px;
  color: var(--text-main); /* #FFF3E6 */
  margin: 0 20px 20px;
  flex-grow: 1;
}

/* Tips Section */
.page-fishing-games__tips-section {
  padding: 80px 0;
  background: var(--bg-color); /* #0D0E12 */
}

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

.page-fishing-games__tip-card {
  background: var(--card-bg-color); /* #17191F */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-fishing-games__tip-card h3 {
  font-size: 22px;
  color: var(--primary-color); /* #FF8C1A */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-fishing-games__tip-card p {
  font-size: 16px;
  color: var(--text-main); /* #FFF3E6 */
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 80px 0;
  background: var(--card-bg-color); /* #17191F */
  border-top: 1px solid var(--border-color);
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color); /* #A84F0C */
  overflow: hidden;
  background: var(--bg-color); /* #0D0E12 */
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}