.page-game-tutorials-fishing-game-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so text color is white */
  background-color: #000000;
}

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

/* Hero Section */
.page-game-tutorials-fishing-game-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Rely on body padding for header offset */
  background-color: #000000;
}

.page-game-tutorials-fishing-game-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-game-tutorials-fishing-game-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-game-tutorials-fishing-game-tips__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-game-tutorials-fishing-game-tips__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0; /* Brand color for title */
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-game-tutorials-fishing-game-tips__description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-game-tutorials-fishing-game-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-tutorials-fishing-game-tips__btn-primary,
.page-game-tutorials-fishing-game-tips__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-game-tutorials-fishing-game-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-game-tutorials-fishing-game-tips__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-game-tutorials-fishing-game-tips__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-tutorials-fishing-game-tips__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* General Section Styles */
.page-game-tutorials-fishing-game-tips__intro-section,
.page-game-tutorials-fishing-game-tips__tips-section,
.page-game-tutorials-fishing-game-tips__advanced-section,
.page-game-tutorials-fishing-game-tips__game-selection-section,
.page-game-tutorials-fishing-game-tips__why-keo2-section,
.page-game-tutorials-fishing-game-tips__cta-section,
.page-game-tutorials-fishing-game-tips__faq-section {
  padding: 60px 0;
  background-color: #000000;
}

.page-game-tutorials-fishing-game-tips__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-game-tutorials-fishing-game-tips__text-block {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-game-tutorials-fishing-game-tips__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  object-fit: cover;
}

.page-game-tutorials-fishing-game-tips__image--large {
  max-width: 1000px;
}

.page-game-tutorials-fishing-game-tips__image--full-width {
  max-width: 100%;
}

/* Tips Grid */
.page-game-tutorials-fishing-game-tips__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-tutorials-fishing-game-tips__tip-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-tutorials-fishing-game-tips__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-tutorials-fishing-game-tips__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-tutorials-fishing-game-tips__card-text {
  font-size: 0.95rem;
  color: #cccccc;
  text-align: justify;
}

/* Advanced Section */
.page-game-tutorials-fishing-game-tips__dark-section {
  background-color: #0d0d0d;
}

.page-game-tutorials-fishing-game-tips__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-game-tutorials-fishing-game-tips__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-game-tutorials-fishing-game-tips__list-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-tutorials-fishing-game-tips__list-text {
  font-size: 0.95rem;
  color: #cccccc;
  text-align: justify;
}

/* Why Keo2 Section */
.page-game-tutorials-fishing-game-tips__light-bg {
  background-color: #000000; /* Still dark, but visually distinct from other sections if needed */
}

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

.page-game-tutorials-fishing-game-tips__feature-card {
  background: rgba(38, 169, 224, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-game-tutorials-fishing-game-tips__faq-list {
  margin-top: 40px;
}

.page-game-tutorials-fishing-game-tips__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-tutorials-fishing-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-game-tutorials-fishing-game-tips__faq-question:hover {
  background-color: #2a2a2a;
}

.page-game-tutorials-fishing-game-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-tutorials-fishing-game-tips__faq-item summary {
  list-style: none;
}

.page-game-tutorials-fishing-game-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
}

.page-game-tutorials-fishing-game-tips__faq-answer {
  padding: 15px 25px 20px;
  background-color: #0d0d0d;
  color: #cccccc;
  font-size: 0.95rem;
  text-align: justify;
}

/* Game List */
.page-game-tutorials-fishing-game-tips__game-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-tutorials-fishing-game-tips__game-list .page-game-tutorials-fishing-game-tips__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #EA7C07; /* Use Login color for visual accent */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-tutorials-fishing-game-tips__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-game-tutorials-fishing-game-tips__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }

  .page-game-tutorials-fishing-game-tips__hero-section,
  .page-game-tutorials-fishing-game-tips__intro-section,
  .page-game-tutorials-fishing-game-tips__tips-section,
  .page-game-tutorials-fishing-game-tips__advanced-section,
  .page-game-tutorials-fishing-game-tips__game-selection-section,
  .page-game-tutorials-fishing-game-tips__why-keo2-section,
  .page-game-tutorials-fishing-game-tips__cta-section,
  .page-game-tutorials-fishing-game-tips__faq-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-game-tutorials-fishing-game-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-tutorials-fishing-game-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-game-tutorials-fishing-game-tips__hero-content {
    padding: 0 15px;
  }

  .page-game-tutorials-fishing-game-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-game-tutorials-fishing-game-tips__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-game-tutorials-fishing-game-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-game-tutorials-fishing-game-tips__btn-primary,
  .page-game-tutorials-fishing-game-tips__btn-secondary,
  .page-game-tutorials-fishing-game-tips a[class*="button"],
  .page-game-tutorials-fishing-game-tips 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-left: 15px;
    padding-right: 15px;
  }

  .page-game-tutorials-fishing-game-tips__container,
  .page-game-tutorials-fishing-game-tips__section,
  .page-game-tutorials-fishing-game-tips__card,
  .page-game-tutorials-fishing-game-tips__feature-card,
  .page-game-tutorials-fishing-game-tips__tip-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-tutorials-fishing-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-tutorials-fishing-game-tips__hero-image-wrapper,
  .page-game-tutorials-fishing-game-tips__cta-buttons,
  .page-game-tutorials-fishing-game-tips__faq-list,
  .page-game-tutorials-fishing-game-tips__tips-grid,
  .page-game-tutorials-fishing-game-tips__features-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-game-tutorials-fishing-game-tips__tip-card,
  .page-game-tutorials-fishing-game-tips__feature-card {
    padding: 20px 15px;
  }

  .page-game-tutorials-fishing-game-tips__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-game-tutorials-fishing-game-tips__faq-answer {
    padding: 10px 20px 15px;
  }
}