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

/* Custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

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

.page-fishing-games-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
  text-align: justify;
}

.page-fishing-games-strategy__text-block a {
  color: var(--gold-color);
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  min-height: 600px;
  overflow: hidden;
}

.page-fishing-games-strategy__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
}

.page-fishing-games-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-fishing-games-strategy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-fishing-games-strategy__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-strategy__hero-description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-fishing-games-strategy__btn-primary,
.page-fishing-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  box-sizing: border-box;
}

.page-fishing-games-strategy__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-fishing-games-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__btn-secondary {
  background: var(--card-bg);
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-fishing-games-strategy__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--card-bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-fishing-games-strategy__introduction-section,
.page-fishing-games-strategy__strategy-section,
.page-fishing-games-strategy__conclusion-section {
  padding: 60px 0;
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-fishing-games-strategy__dark-section {
  background-color: var(--deep-green);
}

.page-fishing-games-strategy__types-section,
.page-fishing-games-strategy__advanced-strategy-section,
.page-fishing-games-strategy__tips-tricks-section,
.page-fishing-games-strategy__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-fishing-games-strategy__game-card,
.page-fishing-games-strategy__strategy-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.page-fishing-games-strategy__game-card:hover,
.page-fishing-games-strategy__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-strategy__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  padding: 15px;
  margin: 0;
}

.page-fishing-games-strategy__card-description {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-fishing-games-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-fishing-games-strategy__list-item {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-strategy__list-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fishing-games-strategy__list-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-fishing-games-strategy__faq-list {
  margin-top: 40px;
}

.page-fishing-games-strategy__faq-item {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-fishing-games-strategy__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games-strategy__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-fishing-games-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--glow-color);
}

.page-fishing-games-strategy__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

.page-fishing-games-strategy__faq-answer p {
  margin: 0;
}

/* CTA Final */
.page-fishing-games-strategy__cta-final {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games-strategy__cta-content {
  padding: 40px 20px;
}

.page-fishing-games-strategy__cta-title {
  font-size: 2em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-fishing-games-strategy__cta-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Floating Buttons */
.page-fishing-games-strategy__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-fishing-games-strategy__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 120px;
  box-sizing: border-box;
}

.page-fishing-games-strategy__floating-btn--register {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-fishing-games-strategy__floating-btn--register:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__floating-btn--login {
  background: var(--gold-color);
  color: var(--deep-green);
}

.page-fishing-games-strategy__floating-btn--login:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-strategy__section-title {
    font-size: 2em;
  }
  .page-fishing-games-strategy__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-fishing-games-strategy__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
  }
}

@media (max-width: 768px) {
  .page-fishing-games-strategy__hero-content {
    padding: 15px;
    max-width: 90%;
  }
  .page-fishing-games-strategy__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-fishing-games-strategy__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }
  .page-fishing-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games-strategy__btn-primary,
  .page-fishing-games-strategy__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fishing-games-strategy__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games-strategy__text-block {
    font-size: 1em;
  }
  .page-fishing-games-strategy__game-list,
  .page-fishing-games-strategy__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games-strategy__card-title {
    font-size: 1.3em;
  }
  .page-fishing-games-strategy__faq-item summary {
    font-size: 1.1em;
    padding: 12px 15px;
  }
  .page-fishing-games-strategy__faq-answer {
    padding: 12px 15px;
  }
  .page-fishing-games-strategy__cta-final {
    padding: 0;
  }
  .page-fishing-games-strategy__cta-content {
    padding: 30px 15px;
  }
  .page-fishing-games-strategy__cta-title {
    font-size: 1.6em;
  }
  .page-fishing-games-strategy__cta-description {
    font-size: 1em;
  }

  /* Mobile responsive for images */
  .page-fishing-games-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fishing-games-strategy__section,
  .page-fishing-games-strategy__card,
  .page-fishing-games-strategy__container,
  .page-fishing-games-strategy__game-card,
  .page-fishing-games-strategy__strategy-card,
  .page-fishing-games-strategy__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games-strategy__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games-strategy__floating-buttons {
    flex-direction: row;
    bottom: 15px;
    right: 15px;
    left: 15px;
    width: auto;
    justify-content: space-around;
  }
  .page-fishing-games-strategy__floating-btn {
    flex-grow: 1;
    min-width: unset;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-strategy__floating-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .page-fishing-games-strategy__floating-btn {
    width: 100%;
  }
}