.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f5f5f5; /* Default light background for body */
}

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

/* HERO Main Image Area */
.page-fishing-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared 已给 body 留白时用 0 */
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

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

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

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

/* LOGO Carousel Area */
.page-fishing-games__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #000000; /* Dark background for contrast */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__logo-carousel {
  display: flex;
  gap: 25px; /* Increased gap */
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for carousel itself */
  white-space: nowrap; /* Prevent items from wrapping */
}

.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: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow clicks on logo items */
}

.page-fishing-games__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px; /* Adjusted padding */
  box-sizing: border-box;
  pointer-events: auto;
}

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

/* Game Showcase Area */
.page-fishing-games__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #f5f5f5; /* Light background */
}

.page-fishing-games__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.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 25px 0;
  color: #FFD700; /* Gold text */
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__featured-game {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #FFD700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__featured-game-image {
  width: 100%;
  height: 550px; /* Increased height */
  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: 10px 0;
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
  position: relative;
}

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

.page-fishing-games__games-tab.active {
  color: #FFD700; /* Gold text for active tab */
  border-bottom: 3px solid #FFD700;
}

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

.page-fishing-games__games-grid.active {
  display: grid;
}

.page-fishing-games__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__game-card-image {
  width: 100%;
  height: 220px; /* Slightly increased height */
  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: 600;
  margin: 12px 0 10px 0; /* Adjusted margin */
  padding: 0 8px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* General Content Sections */
.page-fishing-games__intro-section, 
.page-fishing-games__popular-games-section, 
.page-fishing-games__guide-section, 
.page-fishing-games__promotions-section, 
.page-fishing-games__support-section, 
.page-fishing-games__faq-section, 
.page-fishing-games__news-section {
  padding: 80px 0;
}

.page-fishing-games__main-title {
  font-size: 42px;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__description {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-fishing-games__section-title {
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.page-fishing-games__section-description {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #666666;
}

/* Color Schemes for Sections */
.page-fishing-games__light-bg {
  background-color: #f5f5f5;
  color: #333333;
}

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

.page-fishing-games__dark-bg .page-fishing-games__section-title,
.page-fishing-games__dark-bg .page-fishing-games__game-item-title,
.page-fishing-games__dark-bg .page-fishing-games__promo-title,
.page-fishing-games__dark-bg .page-fishing-games__faq-question h3,
.page-fishing-games__dark-bg .page-fishing-games__news-title a,
.page-fishing-games__dark-bg .page-fishing-games__news-date {
  color: #ffffff;
}

.page-fishing-games__dark-bg .page-fishing-games__section-description,
.page-fishing-games__dark-bg .page-fishing-games__game-item-text,
.page-fishing-games__dark-bg .page-fishing-games__promo-text,
.page-fishing-games__dark-bg .page-fishing-games__faq-answer p {
  color: #cccccc;
}

/* Buttons */
.page-fishing-games__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000; /* Black text for gold button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-fishing-games__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-fishing-games__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-fishing-games__btn-secondary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

/* Popular Games Section */
.page-fishing-games__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-fishing-games__game-item {
  background: #1a1a1a; /* Darker background for game cards */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-fishing-games__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__game-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-fishing-games__game-item-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-fishing-games__game-item-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-fishing-games__more-games-text {
  text-align: center;
  font-size: 17px;
  margin-top: 50px;
  color: #ffffff;
}

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

.page-fishing-games__step-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__step-icon {
  margin-bottom: 20px;
}

.page-fishing-games__step-icon img {
  
  
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.page-fishing-games__step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-fishing-games__step-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-fishing-games__tips-block {
  background: #f0f0f0;
  border-left: 5px solid #FFD700;
  padding: 30px;
  margin-top: 60px;
  border-radius: 8px;
}

.page-fishing-games__tips-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-fishing-games__tips-list {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  padding-left: 20px;
}

.page-fishing-games__tips-list strong {
  color: #000000;
}

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

.page-fishing-games__promo-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 30px;
}

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

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

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

.page-fishing-games__promo-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-fishing-games__promo-footer-text {
  text-align: center;
  font-size: 17px;
  margin-top: 50px;
  color: #ffffff;
}

.page-fishing-games__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-fishing-games__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Support Section */
.page-fishing-games__support-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-fishing-games__support-info {
  flex: 1;
}

.page-fishing-games__support-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.page-fishing-games__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-fishing-games__contact-list li {
  font-size: 17px;
  line-height: 2;
  color: #555555;
}

.page-fishing-games__contact-list strong {
  color: #000000;
}

.page-fishing-games__support-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 30px;
}

.page-fishing-games__support-image {
  flex: 1;
  text-align: center;
}

.page-fishing-games__support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-fishing-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__faq-item.active .page-fishing-games__faq-question {
  background: #333333;
  border-radius: 8px 8px 0 0;
}

.page-fishing-games__faq-question:hover {
  background: #1a1a1a;
}

.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: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

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

.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;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
}

.page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

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

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

.page-fishing-games__news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-fishing-games__news-title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  line-height: 1.4;
}

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

.page-fishing-games__news-title a:hover {
  color: #FFD700;
}

.page-fishing-games__news-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0 20px 15px 20px;
}

.page-fishing-games__news-date {
  display: block;
  font-size: 13px;
  color: #999999;
  margin: 0 20px 20px 20px;
}

.page-fishing-games__all-news-button {
  text-align: center;
  margin-top: 60px;
}

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

.page-fishing-games__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background: #FFD700;
  color: #000000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-fishing-games__floating-btn:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games__floating-btn--register {
  background: #000000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games__floating-btn--register:hover {
  background: #FFD700;
  color: #000000;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 38px;
  }

  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__games-layout {
    grid-template-columns: 1fr;
  }

  .page-fishing-games__featured-game-image {
    height: 450px;
  }

  .page-fishing-games__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-fishing-games__game-card-image {
    height: 180px;
  }

  .page-fishing-games__support-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__support-image {
    order: -1; /* Image above text on tablet */
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .page-fishing-games__container {
    padding: 20px 15px;
  }

  /* HERO Main Image Area */
  .page-fishing-games__hero-section {
    padding-top: 0 !important; /* Ensure no double padding on mobile */
  }

  /* LOGO Carousel Area */
  .page-fishing-games__logo-carousel-section {
    padding: 20px 15px;
  }

  .page-fishing-games__logo-carousel {
    gap: 15px;
    padding: 5px 0;
  }

  .page-fishing-games__logo-item {
    width: 80px !important; /* Fixed 80px, prevent 100% */
    height: 80px !important;
    max-width: 80px !important;
  }

  .page-fishing-games__logo-item a {
    padding: 8px;
  }

  /* Game Showcase Area */
  .page-fishing-games__games-section {
    padding: 40px 15px;
  }

  .page-fishing-games__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__featured-game-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-fishing-games__featured-game-image {
    height: 300px;
  }

  .page-fishing-games__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .page-fishing-games__games-tab {
    font-size: 16px;
    padding: 8px 0;
  }

  .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: 10px 0 8px 0;
    padding: 0 5px;
  }

  /* General Content Sections */
  .page-fishing-games__intro-section, 
  .page-fishing-games__popular-games-section, 
  .page-fishing-games__guide-section, 
  .page-fishing-games__promotions-section, 
  .page-fishing-games__support-section, 
  .page-fishing-games__faq-section, 
  .page-fishing-games__news-section {
    padding: 50px 0;
  }

  .page-fishing-games__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-fishing-games__description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-fishing-games__section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* Buttons */
  .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: 12px 20px;
    font-size: 16px;
  }

  .page-fishing-games__btn-primary {
    padding: 12px 25px;
  }

  .page-fishing-games__btn-secondary {
    padding: 10px 20px;
  }

  .page-fishing-games__intro-section .page-fishing-games__btn-primary {
    margin-top: 20px;
  }

  /* Button containers */
  .page-fishing-games__cta-buttons,
  .page-fishing-games__button-group,
  .page-fishing-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Popular Games Section */
  .page-fishing-games__game-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__game-item {
    padding: 20px;
  }

  .page-fishing-games__game-item img {
    
  }

  .page-fishing-games__game-item-title {
    font-size: 20px;
  }

  .page-fishing-games__game-item-text {
    font-size: 15px;
  }

  /* Guide Section */
  .page-fishing-games__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__step-item {
    padding: 25px;
  }

  .page-fishing-games__step-title {
    font-size: 18px;
  }

  .page-fishing-games__step-text {
    font-size: 15px;
  }

  .page-fishing-games__tips-block {
    padding: 20px;
    margin-top: 40px;
  }

  .page-fishing-games__tips-title {
    font-size: 20px;
  }

  .page-fishing-games__tips-list {
    font-size: 15px;
  }

  /* Promotions Section */
  .page-fishing-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__promo-card {
    padding-bottom: 20px;
  }

  .page-fishing-games__promo-card img {
    height: 200px;
  }

  .page-fishing-games__promo-title {
    font-size: 20px;
    padding: 0 15px;
  }

  .page-fishing-games__promo-text {
    font-size: 15px;
    padding: 0 15px;
  }

  /* Support Section */
  .page-fishing-games__support-info p {
    font-size: 15px;
  }

  .page-fishing-games__support-subtitle {
    font-size: 22px;
  }

  .page-fishing-games__contact-list li {
    font-size: 16px;
  }

  /* FAQ Section */
  .page-fishing-games__faq-list {
    margin-top: 30px;
  }

  .page-fishing-games__faq-item {
    margin-bottom: 10px;
  }

  .page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-question h3 {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
    margin-left: 15px;
  }

  .page-fishing-games__faq-item.active .page-fishing-games__faq-answer {
    padding: 15px 20px !important;
  }

  .page-fishing-games__faq-answer p {
    font-size: 15px;
  }

  /* News Section */
  .page-fishing-games__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__news-card img {
    
  }

  .page-fishing-games__news-title {
    font-size: 18px;
    margin: 15px 15px 8px 15px;
  }

  .page-fishing-games__news-excerpt {
    font-size: 14px;
    margin: 0 15px 10px 15px;
  }

  .page-fishing-games__news-date {
    margin: 0 15px 15px 15px;
  }

  .page-fishing-games__all-news-button {
    margin-top: 40px;
  }

  /* Floating Buttons */
  .page-fishing-games__floating-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row;
    gap: 8px;
  }

  .page-fishing-games__floating-btn {
    width: 100px;
    height: 45px;
    font-size: 14px;
  }
}

/* Global image responsiveness (excluding specific fixed size logos) */
.page-fishing-games img:not(.page-fishing-games__logo-item img) {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-fishing-games img:not(.page-fishing-games__logo-item 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__game-list,
  .page-fishing-games__guide-steps,
  .page-fishing-games__promo-grid,
  .page-fishing-games__news-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}