/* style/fishing-games.css */
.page-fishing-games {
  background-color: #121212; /* Dark background from shared.css */
  color: #ffffff; /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

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

.page-fishing-games__dark-section {
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-fishing-games__main-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffc107; /* Auxiliary color for main headings */
}

.page-fishing-games__secondary-heading {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #007bff; /* Primary color for secondary headings */
}

.page-fishing-games__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-fishing-games strong {
  color: #ffc107;
}

/* Buttons */
.page-fishing-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.page-fishing-games__btn-primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-fishing-games__btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-fishing-games__btn-secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-fishing-games__btn-secondary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-fishing-games__btn-tertiary {
  background-color: #ffc107;
  color: #121212;
}

.page-fishing-games__btn-tertiary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-fishing-games__btn-promo {
  background-color: #ff0000; /* Red for promotions */
  color: #ffffff;
}

.page-fishing-games__btn-promo:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
}

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

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

/* HERO Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

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

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

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

/* LOGO Carousel Section */
.page-fishing-games__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-fishing-games__logo-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

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

.page-fishing-games__logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

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

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

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

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

.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: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700; /* Yellow text */
  text-align: left;
}

.page-fishing-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  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.15);
}

.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: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-fishing-games__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  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; /* Red for active tab */
  text-decoration: underline;
}

.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: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px 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 4px 12px 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: 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: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Module 1: Homepage Intro */
.page-fishing-games__intro-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

/* Module 2: Quick Access & Backup Links */
.page-fishing-games__quick-access-section {
  padding: 60px 0;
}

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

.page-fishing-games__link-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-fishing-games__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 123, 255, 0.1);
}

.page-fishing-games__link-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #007bff;
}

.page-fishing-games__link-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 0;
}

/* Module 3: Core Games/Services Introduction */
.page-fishing-games__games-intro-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-fishing-games__game-category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__game-category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__game-category-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-fishing-games__game-category-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-fishing-games__game-category-description {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Module 4: Promotions */
.page-fishing-games__promotions-section {
  padding: 80px 0;
}

.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: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  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;
}

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

.page-fishing-games__promo-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}