/* style/fishing-games.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Deep Sky Blue */
  --text-dark: #121212; /* Body background */
  --text-light: #ffffff;
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.2);
}

/* Base styles for the page content */
.page-fishing-games {
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: var(--text-dark);
  padding-top: 120px; /* Adjust for fixed header */
}

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

.page-fishing-games__section-title,
.page-fishing-games__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-fishing-games__section-description,
.page-fishing-games__description {
  font-size: 1.1em;
  color: var(--text-on-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Hero Section */
.page-fishing-games__hero-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0a0a0a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero:8kbet 7777,banca,background]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-fishing-games__hero-section .page-fishing-games__container {
  position: relative;
  z-index: 1;
}

.page-fishing-games__main-title {
  font-size: 3.8em;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-fishing-games__description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 50px;
}

.page-fishing-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.page-fishing-games__btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-primary:hover {
  background: #e0c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.page-fishing-games__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

/* Video Showcase Section */
.page-fishing-games__video-showcase {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: var(--text-on-dark);
}

.page-fishing-games__video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-fishing-games__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
}

.page-fishing-games__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-fishing-games__video-link:hover .page-fishing-games__video-overlay {
  opacity: 1;
}

.page-fishing-games__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(30, 144, 255, 0.8);
  border-radius: 50px;
  white-space: nowrap;
}

.page-fishing-games__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-fishing-games__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-fishing-games__play-now-button:hover {
  background: #e0c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.page-fishing-games__advantages-section {
  background-color: var(--text-dark);
  padding: 60px 20px;
  color: var(--text-on-dark);
}

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

.page-fishing-games__feature-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-fishing-games__feature-text {
  font-size: 1em;
  color: var(--text-light);
  line-height: 1.6;
}

/* Popular Games Section */
.page-fishing-games__popular-games-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: var(--text-on-dark);
}

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

.page-fishing-games__game-card {
  background: var(--card-bg-dark);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-fishing-games__game-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__game-description {
  font-size: 0.95em;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 25px;
}

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

/* Guide Section */
.page-fishing-games__guide-section {
  background-color: var(--text-dark);
  padding: 60px 20px;
  color: var(--text-on-dark);
}

.page-fishing-games__guide-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__guide-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-fishing-games__guide-item p {
  font-size: 1em;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-fishing-games__guide-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-fishing-games__guide-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-fishing-games__guide-list strong {
  color: var(--primary-color);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: var(--text-on-dark);
}

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

.page-fishing-games__promo-card {
  background: var(--card-bg-dark);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  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-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-fishing-games__promo-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-fishing-games__promo-text {
  font-size: 0.95em;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Mobile App Section */
.page-fishing-games__mobile-section {
  background-color: var(--text-dark);
  padding: 60px 20px;
  color: var(--text-on-dark);
}

.page-fishing-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-fishing-games__mobile-text {
  flex: 1;
}

.page-fishing-games__mobile-text p {
  font-size: 1.1em;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-fishing-games__mobile-app-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Security Section */
.page-fishing-games__security-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: var(--text-on-dark);
}

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

.page-fishing-games__security-item {
  background: var(--card-bg-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__security-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-fishing-games__security-item p {
  font-size: 1em;
  color: var(--text-light);
  line-height: 1.6;
}

/* Final CTA Section */
.page-fishing-games__cta-final-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0a0a0a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-fishing-games__cta-final-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:cta:8kbet 7777,banca,background]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-fishing-games__cta-final-section .page-fishing-games__container {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 3em;
  }
  .page-fishing-games__section-title {
    font-size: 2.5em;
  }
  .page-fishing-games__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games__mobile-image-wrapper {
    order: -1; /* Image above text on tablet */
    margin-bottom: 30px;
  }
  .page-fishing-games__mobile-app-image {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-fishing-games__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__main-title {
    font-size: 2.5em;
  }
  .page-fishing-games__section-title {
    font-size: 2em;
  }
  .page-fishing-games__description,
  .page-fishing-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__cta-button,
  .page-fishing-games__play-now-button,
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__features-grid,
  .page-fishing-games__game-cards,
  .page-fishing-games__promo-grid,
  .page-fishing-games__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games__feature-item,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__guide-item,
  .page-fishing-games__security-item {
    padding: 25px;
  }
  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-fishing-games__game-image,
  .page-fishing-games__promo-image {
    height: 160px;
  }
  .page-fishing-games__mobile-app-image {
    max-width: 80%;
  }

  /* Video specific mobile adaptations */
  .page-fishing-games__video-showcase {
    padding: 40px 15px;
  }
  .page-fishing-games__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }
  .page-fishing-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }
  .page-fishing-games__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__main-title {
    font-size: 2em;
  }
  .page-fishing-games__section-title {
    font-size: 1.8em;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__cta-final-section {
    padding: 60px 15px;
  }
  .page-fishing-games__mobile-app-image {
    max-width: 90%;
  }
}

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

/* Ensure all image containers are responsive */
.page-fishing-games__hero-section,
.page-fishing-games__advantages-section,
.page-fishing-games__popular-games-section,
.page-fishing-games__guide-section,
.page-fishing-games__promotions-section,
.page-fishing-games__mobile-section,
.page-fishing-games__security-section,
.page-fishing-games__cta-final-section,
.page-fishing-games__video-showcase,
.page-fishing-games__container,
.page-fishing-games__card,
.page-fishing-games__feature-item,
.page-fishing-games__game-card,
.page-fishing-games__promo-card,
.page-fishing-games__mobile-content,
.page-fishing-games__mobile-image-wrapper,
.page-fishing-games__security-item {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fishing-games__hero-section,
  .page-fishing-games__advantages-section,
  .page-fishing-games__popular-games-section,
  .page-fishing-games__guide-section,
  .page-fishing-games__promotions-section,
  .page-fishing-games__mobile-section,
  .page-fishing-games__security-section,
  .page-fishing-games__cta-final-section,
  .page-fishing-games__video-showcase,
  .page-fishing-games__container,
  .page-fishing-games__card,
  .page-fishing-games__feature-item,
  .page-fishing-games__game-card,
  .page-fishing-games__promo-card,
  .page-fishing-games__mobile-content,
  .page-fishing-games__mobile-image-wrapper,
  .page-fishing-games__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  /* Specific padding adjustment for main container to override section padding */
  .page-fishing-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}