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

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

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

.page-fishing-games__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-fishing-games__heading {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FF0000; /* Primary color for headings */
}

.page-fishing-games__sub-heading {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #FF0000;
}

.page-fishing-games__paragraph {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games__paragraph--small {
  font-size: 14px;
  color: #cccccc;
  text-align: center;
}

.page-fishing-games__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-fishing-games__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
  word-wrap: normal;
}

.page-fishing-games__btn-primary {
  background-color: #FF0000;
  color: #ffffff;
  border: 2px solid #FF0000;
}

.page-fishing-games__btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}

.page-fishing-games__btn-secondary {
  background-color: #000000;
  color: #FF0000;
  border: 2px solid #FF0000;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #FF0000;
  color: #ffffff;
}

.page-fishing-games__btn-small {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
}

.page-fishing-games__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fishing-games__button-group--center {
  justify-content: center;
}

.page-fishing-games__highlight-box {
  background-color: rgba(255, 0, 0, 0.1);
  border-left: 5px solid #FF0000;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-fishing-games__highlight-box .page-fishing-games__sub-heading {
  color: #FF0000;
  margin-top: 0;
}

.page-fishing-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared đã cho body padding-top, nên hero dùng 0 */
  margin-top: 0;
  width: 100%;
}

.page-fishing-games__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-fishing-games__hero-image {
  width: 100%;
  margin: 0;
  line-height: 0;
}

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

/* LOGO Carousel Section */
.page-fishing-games__logo-carousel-section {
  width: 100%;
  padding: 30px 0;
  background-color: #1a1a1a; /* slightly lighter dark background */
}

.page-fishing-games__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-fishing-games__logo-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for the carousel track */
}

.page-fishing-games__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-fishing-games__logo-item {
  flex-shrink: 0;
  width: 80px; /* Fixed size */
  height: 80px; /* Fixed size */
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow clicks on individual logo items */
}

.page-fishing-games__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto; /* Allow clicks on the link inside */
}

.page-fishing-games__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Game Display Section */
.page-fishing-games__games-section {
  padding: 60px 0;
  background-color: #000000;
}

.page-fishing-games__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-fishing-games__featured-game-area {
  width: 100%;
}

.page-fishing-games__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700; /* Yellow for Jackpot */
  text-align: left;
}

.page-fishing-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.page-fishing-games__games-grid-area {
  width: 100%;
}

.page-fishing-games__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-start;
}

.page-fishing-games__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #cccccc;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-fishing-games__games-tab:hover {
  color: #ffffff;
}

.page-fishing-games__games-tab.active {
  color: #FF0000; /* Primary color for active tab */
}

.page-fishing-games__games-tab.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FF0000;
}

.page-fishing-games__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none; /* Hidden by default */
}

.page-fishing-games__games-grid.active {
  display: grid; /* Active grid is shown */
}

.page-fishing-games__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.page-fishing-games__game-card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 10px 0;
  padding: 0 5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Core Games Section */
.page-fishing-games__core-games-section {
  padding: 60px 0;
  background-color: #000000;
}

.page-fishing-games__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-fishing-games__game-category:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/content order */
}

.page-fishing-games__game-category-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-category-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-fishing-games__game-category-content {
  flex: 2;
}

.page-fishing-games__game-category-content .page-fishing-games__sub-heading {
  color: #FF0000;
  margin-top: 0;
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-fishing-games__promo-card {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__promo-card img {
  
  
  object-fit: contain;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: #FF0000;
  padding: 10px;
}

.page-fishing-games__promo-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-fishing-games__promo-desc {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: center;
}

/* Security Section */
.page-fishing-games__security-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-fishing-games__feature-card {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-card img {
  
  
  object-fit: contain;
  margin: 0 auto 20px auto;
  background-color: #FF0000;
  padding: 8px;
  border-radius: 50%;
}

.page-fishing-games__feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-fishing-games__feature-desc {
  font-size: 15px;
  color: #cccccc;
  text-align: center;
}

/* FAQ Section */
.page-fishing-games__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #0a0a0a;
  border: 1px solid #333333;
}

.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #0a0a0a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-fishing-games__faq-question:hover {
  background-color: #222222;
}

.page-fishing-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FF0000;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X */
}

.page-fishing-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background-color: #000000;
  border-top: 1px solid #333333;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #cccccc;
}

/* Blog Section */
.page-fishing-games__blog-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-fishing-games__blog-card {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-fishing-games__blog-content {
  padding: 20px;
}

.page-fishing-games__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-fishing-games__blog-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games__blog-title a:hover {
  color: #FF0000;
}

.page-fishing-games__blog-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-fishing-games__blog-date {
  font-size: 14px;
  color: #999999;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-fishing-games__heading {
    font-size: 32px;
  }
  .page-fishing-games__sub-heading {
    font-size: 22px;
  }
  .page-fishing-games__games-layout {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__featured-game-image {
    height: 400px;
  }
  .page-fishing-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-fishing-games__games-tab {
    font-size: 18px;
  }
  .page-fishing-games__game-card-image {
    height: 180px;
  }
  .page-fishing-games__game-category {
    flex-direction: column;
    gap: 20px;
  }
  .page-fishing-games__game-category:nth-child(even) {
    flex-direction: column;
  }
  .page-fishing-games__game-category-image {
    width: 100%;
    min-width: unset;
  }
  .page-fishing-games__promo-grid,
  .page-fishing-games__feature-grid,
  .page-fishing-games__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 0 15px !important;
  }
  .page-fishing-games__section {
    padding: 40px 0;
  }
  .page-fishing-games__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__sub-heading {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .page-fishing-games__paragraph {
    font-size: 15px;
  }
  .page-fishing-games__list {
    padding-left: 20px;
  }
  .page-fishing-games__list li {
    font-size: 15px;
  }
  
  /* HERO Section Mobile */
  .page-fishing-games__hero-section {
    padding-top: 0 !important; /* Đảm bảo không có padding-top thừa */
  }
  .page-fishing-games__hero-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* LOGO Carousel Section Mobile */
  .page-fishing-games__logo-carousel-section {
    padding: 20px 0;
  }
  .page-fishing-games__logo-carousel {
    gap: 12px;
  }
  .page-fishing-games__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-fishing-games__logo-item a {
    padding: 8px;
  }

  /* Game Display Section Mobile */
  .page-fishing-games__games-section {
    padding: 40px 0;
  }
  .page-fishing-games__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__featured-game-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .page-fishing-games__featured-game-image {
    height: 300px;
  }
  .page-fishing-games__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .page-fishing-games__games-tab {
    font-size: 16px;
  }
  .page-fishing-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-fishing-games__game-card-image {
    height: 150px;
  }
  .page-fishing-games__game-card-title {
    font-size: 13px;
    margin: 8px 0 8px 0;
  }

  /* General Image & Container Mobile */
  .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__highlight-box,
  .page-fishing-games__promo-card,
  .page-fishing-games__feature-card,
  .page-fishing-games__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-fishing-games__game-category {
    gap: 20px;
  }
  .page-fishing-games__game-category-image {
    margin-bottom: 15px;
  }
  
  /* Buttons & Button Container Mobile */
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-fishing-games__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }
  .page-fishing-games__button-group--center .page-fishing-games__btn-primary,
  .page-fishing-games__button-group--center .page-fishing-games__btn-secondary {
    width: auto !important;
    max-width: 100% !important;
  }

  /* Other Content Modules Mobile */
  .page-fishing-games__introduction-section,
  .page-fishing-games__quick-access-section,
  .page-fishing-games__core-games-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__security-section,
  .page-fishing-games__faq-section,
  .page-fishing-games__blog-section {
    padding: 30px 0;
  }
  .page-fishing-games__promo-grid,
  .page-fishing-games__feature-grid,
  .page-fishing-games__blog-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .page-fishing-games__promo-card, .page-fishing-games__feature-card, .page-fishing-games__blog-card {
    padding: 20px;
  }
  .page-fishing-games__promo-card img, .page-fishing-games__feature-card img {
    
    
    margin-bottom: 15px;
  }
  .page-fishing-games__promo-title, .page-fishing-games__feature-title, .page-fishing-games__blog-title {
    font-size: 18px;
  }
  .page-fishing-games__promo-desc, .page-fishing-games__feature-desc, .page-fishing-games__blog-excerpt {
    font-size: 14px;
  }

  /* FAQ Mobile */
  .page-fishing-games__faq-question {
    padding: 15px;
  }
  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }
  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px !important;
  }
  .page-fishing-games__faq-answer p {
    font-size: 15px;
  }
}