:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --background-color: #0A0A0A;
  --card-bg-color: #111111;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

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

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

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

.page-fishing-games__section-title {
  font-size: 3em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-fishing-games__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-fishing-games__hero-title {
  font-size: clamp(2.5em, 5vw, 4em);
  color: var(--secondary-color);
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(242, 193, 78, 0.4);
  border: none;
}

.page-fishing-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.6);
}

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

.page-fishing-games__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

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

.page-fishing-games__text-block h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.page-fishing-games__image-block {
  flex: 1;
  min-width: 400px;
}

.page-fishing-games__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-fishing-games__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__button-group {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.page-fishing-games__game-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-fishing-games__game-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__game-info p {
  color: var(--text-main-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--card-bg-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--background-color);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-fishing-games__guide-item {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main-color);
}

.page-fishing-games__guide-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: var(--background-color);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-fishing-games__guide-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: var(--background-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: none;
  margin-top: auto;
}

.page-fishing-games__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-fishing-games__guide-image {
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games__promo-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-fishing-games__promo-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__security-support .page-fishing-games__content-wrapper {
  flex-direction: row-reverse;
}

.page-fishing-games__faq-list {
  margin-top: 40px;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main-color);
  font-weight: bold;
  font-size: 1.1em;
}

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: #1a1a1a; /* Slightly lighter dark for hover */
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 1em;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}

.page-fishing-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: #0d0d0d;
  border-radius: 0 0 12px 12px;
  color: var(--text-main-color);
}

.page-fishing-games__final-cta {
  background-color: var(--card-bg-color);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.page-fishing-games__final-cta .page-fishing-games__section-title {
  color: var(--primary-color);
}

.page-fishing-games__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-main-color);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 2.5em;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
  }
  .page-fishing-games__grid-3-col, .page-fishing-games__grid-2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .page-fishing-games__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
  .page-fishing-games__image-block {
    min-width: unset;
    margin-top: 30px;
  }
  .page-fishing-games__security-support .page-fishing-games__content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-fishing-games__hero-section {
    padding: 10px 15px 40px;
  }
  .page-fishing-games__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-fishing-games__hero-description {
    font-size: 1em;
  }
  .page-fishing-games__cta-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games a[class*="button"],
  .page-fishing-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-fishing-games__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__grid-3-col,
  .page-fishing-games__grid-2-col {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__game-card img {
    height: 200px;
  }
  .page-fishing-games__game-info {
    padding: 20px;
  }
  .page-fishing-games__game-title {
    font-size: 1.4em;
  }
  .page-fishing-games__guide-item {
    padding: 25px;
  }
  .page-fishing-games__promo-card {
    padding: 25px;
  }
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-fishing-games__faq-qtext {
    font-size: 0.95em;
  }
  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__section,
  .page-fishing-games__card,
  .page-fishing-games__container,
  .page-fishing-games__content-wrapper,
  .page-fishing-games__image-block,
  .page-fishing-games__text-block,
  .page-fishing-games__game-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
  }
}