.page-fishing-games {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-fishing-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared handles body padding-top */
  margin-top: 0;
  width: 100%;
}

.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: #2a2a2a; /* Slightly lighter dark background for contrast */
  box-shadow: 0 2px 10px 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: 20px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 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: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px 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;
}

.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: #1a1a1a;
}

.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;
}

/* Left Large Card Area */
.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;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__featured-game {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #2a2a2a;
  border: 2px solid #8B0000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  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.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;
}

/* Right Grid Area */
.page-fishing-games__games-grid-area {
  width: 100%;
}

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

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

.page-fishing-games__games-tab:hover {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-fishing-games__games-tab.active {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

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

/* Game Grid */
.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: 12px;
  overflow: hidden;
  background: #2a2a2a;
  border: 1px solid #4a4a4a;
  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;
  align-items: center;
  text-align: center;
}

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

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

.page-fishing-games__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #4a4a4a;
}

.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;
  padding: 0 8px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Module 1: Home Page Introduction */
.page-fishing-games__introduction-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  color: #ffffff;
  text-align: center;
}

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

.page-fishing-games__heading {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #FFD700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.page-fishing-games__description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.page-fishing-games__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.page-fishing-games__feature-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

/* Module 2: Quick Access Links */
.page-fishing-games__quick-access-section {
  width: 100%;
  padding: 80px 20px;
  background: #222222;
  text-align: center;
  color: #ffffff;
}

.page-fishing-games__sub-heading {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-fishing-games__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-fishing-games__btn-primary {
  background: #FFD700;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-fishing-games__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-fishing-games__btn-secondary:hover {
  background: #FFD700;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}