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

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-fishing-games__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  width: 100%;
  height: 700px; /* Fixed height for hero */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
}

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-fishing-games__hero-section .page-fishing-games__container {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.page-fishing-games__main-title {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-fishing-games__hero-description {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.page-fishing-games__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A2038;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-fishing-games__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__cta-button--promo {
  background: #0A2038;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 30px;
}

.page-fishing-games__cta-button--promo:hover {
  background: #1a3a5a;
  color: #ffffff;
  border-color: #ffffff;
}

.page-fishing-games__cta-button--final {
  margin-top: 50px;
  padding: 20px 60px;
  font-size: 24px;
}

.page-fishing-games__cta-center {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Section Styling */
.page-fishing-games__intro-section,
.page-fishing-games__promotions-section,
.page-fishing-games__security-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-fishing-games__features-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__strategy-section,
.page-fishing-games__get-started-section,
.page-fishing-games__cta-section {
  padding: 80px 0;
  background-color: #0A2038; /* Dark blue background */
  color: #ffffff; /* Light text for dark background */
}

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

.page-fishing-games__feature-item,
.page-fishing-games__promo-card,
.page-fishing-games__step-item {
  background: #0e2a47; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fishing-games__promo-card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fishing-games__promo-card h3 {
  color: #0A2038;
}

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

.page-fishing-games__feature-item img,
.page-fishing-games__promo-card img,
.page-fishing-games__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block; /* Ensure it behaves as a block element */
}

.page-fishing-games__feature-item h3,
.page-fishing-games__step-item h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-fishing-games__feature-item p,
.page-fishing-games__step-item p {
  font-size: 16px;
  line-height: 1.7;
  flex-grow: 1; /* Allow paragraph to take available space */
}

/* Game List */
.page-fishing-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
}

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

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

.page-fishing-games__game-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-fishing-games__game-info h3 {
  font-size: 24px;
  color: #0A2038;
  margin-bottom: 10px;
}

.page-fishing-games__game-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 12px 25px;
  background: #0A2038;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-fishing-games__game-button:hover {
  background: #FFD700;
  color: #0A2038;
}

/* Strategy Section */
.page-fishing-games__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-fishing-games__strategy-text {
  flex: 2;
}

.page-fishing-games__strategy-text h3 {
  font-size: 28px;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fishing-games__strategy-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games__strategy-image {
  flex: 1;
  min-width: 400px; /* Ensure image has a minimum width */
}

.page-fishing-games__strategy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Promotions Section */
.page-fishing-games__promo-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #0A2038;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-fishing-games__promo-button:hover {
  background: #e6c200;
}

/* Security Section */
.page-fishing-games__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.page-fishing-games__security-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-fishing-games__security-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-fishing-games__security-badges {
  text-align: center;
  margin-top: 50px;
}

.page-fishing-games__security-badges img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 48px;
  }
  .page-fishing-games__hero-description {
    font-size: 18px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__strategy-content {
    flex-direction: column;
    align-items: center;
  }
  .page-fishing-games__strategy-image {
    min-width: unset;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    height: 600px;
    padding-top: var(--header-offset, 120px) !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__main-title {
    font-size: 38px;
  }
  .page-fishing-games__hero-description {
    font-size: 16px;
  }
  .page-fishing-games__cta-button {
    padding: 15px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__cta-button--final {
    padding: 18px 40px;
    font-size: 20px;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    padding-top: 40px;
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }
  .page-fishing-games__features-grid,
  .page-fishing-games__game-list,
  .page-fishing-games__promo-grid,
  .page-fishing-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__promo-card,
  .page-fishing-games__step-item,
  .page-fishing-games__game-card {
    padding: 20px;
  }
  .page-fishing-games__feature-item h3,
  .page-fishing-games__game-info h3,
  .page-fishing-games__step-item h3 {
    font-size: 22px;
  }
  .page-fishing-games__strategy-text h3 {
    font-size: 24px;
  }
  .page-fishing-games__security-list {
    font-size: 16px;
  }
  /* Mobile image/video/button overrides */
  .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__hero-section,
  .page-fishing-games__intro-section,
  .page-fishing-games__features-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__strategy-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__get-started-section,
  .page-fishing-games__security-section,
  .page-fishing-games__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-fishing-games__cta-center {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-fishing-games__promo-button,
  .page-fishing-games__game-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-fishing-games__promo-grid,
  .page-fishing-games__steps-grid {
    flex-wrap: wrap !important;
    gap: 20px;
  }
  .page-fishing-games__features-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 32px;
  }
  .page-fishing-games__hero-description {
    font-size: 15px;
  }
  .page-fishing-games__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__feature-item h3,
  .page-fishing-games__game-info h3,
  .page-fishing-games__step-item h3 {
    font-size: 20px;
  }
  .page-fishing-games__strategy-text h3 {
    font-size: 20px;
  }
}