/* style/fishing-games.css */

:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #0A2463;
  --border-color: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  padding-top: 120px; /* Adjusted for fixed header on desktop */
}

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

.page-fishing-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-fishing-games__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__text-center {
  text-align: center;
}

.page-fishing-games__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-fishing-games__dark-bg .page-fishing-games__section-title {
  color: var(--secondary-color);
}

.page-fishing-games__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Buttons */
.page-fishing-games__btn-primary,
.page-fishing-games__btn-secondary,
.page-fishing-games__btn-link,
.page-fishing-games__contact-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games__btn-primary {
  background-color: var(--secondary-color);
  color: var(--bg-dark);
}

.page-fishing-games__btn-primary:hover {
  background-color: #d1a404;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-fishing-games__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__btn-link {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  font-size: 16px;
}

.page-fishing-games__btn-link:hover {
  background-color: #071c4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__contact-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 25px;
  font-size: 16px;
  margin: 0 10px;
}

.page-fishing-games__contact-button:hover {
  background-color: #071c4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Overrides general padding-top for video/hero section */
}

.page-fishing-games__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-fishing-games__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* About Section */
.page-fishing-games__about-section {
  padding: 80px 0;
}

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

.page-fishing-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  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.12);
}

.page-fishing-games__feature-image {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-fishing-games__feature-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* Games Section */
.page-fishing-games__games-section {
  padding: 80px 0;
}

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

.page-fishing-games__game-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: var(--text-light);
  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.2);
}

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

.page-fishing-games__game-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-fishing-games__game-description {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Strategy Section */
.page-fishing-games__strategy-section {
  padding: 80px 0;
}

.page-fishing-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__strategy-item {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 17px;
  line-height: 1.8;
}

.page-fishing-games__strategy-item strong {
  color: var(--primary-color);
}

/* Bonus Section */
.page-fishing-games__bonus-section {
  padding: 80px 0;
}

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

.page-fishing-games__bonus-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-fishing-games__bonus-image {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.page-fishing-games__bonus-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-fishing-games__bonus-description {
  font-size: 16px;
}

/* Register Section */
.page-fishing-games__register-section {
  padding: 80px 0;
}

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

.page-fishing-games__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-fishing-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-fishing-games__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__step-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  padding: 80px 0;
}

.page-fishing-games__why-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-fishing-games__why-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__why-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-fishing-games__why-description {
  font-size: 16px;
}

/* Mobile Section */
.page-fishing-games__mobile-section {
  padding: 80px 0;
}

.page-fishing-games__mobile-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

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

.page-fishing-games__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Contact Section */
.page-fishing-games__contact-section {
  padding: 80px 0;
  text-align: center;
}

.page-fishing-games__contact-methods {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsible Gambling Section */
.page-fishing-games__responsible-gambling {
  padding: 80px 0;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__hero-title {
    font-size: 42px;
  }
  .page-fishing-games__hero-subtitle {
    font-size: 20px;
  }
  .page-fishing-games__section-title {
    font-size: 32px;
  }
  .page-fishing-games__text-block {
    font-size: 16px;
  }
  .page-fishing-games__why-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games {
    padding-top: 100px !important; /* Adjusted for fixed header on mobile */
  }
  .page-fishing-games__container {
    padding: 0 15px;
  }
  .page-fishing-games__hero-section {
    padding: 60px 15px 40px;
    padding-top: 10px !important; /* Mobile override for hero section */
  }
  .page-fishing-games__hero-title {
    font-size: 32px;
  }
  .page-fishing-games__hero-subtitle {
    font-size: 18px;
  }
  .page-fishing-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-link,
  .page-fishing-games__contact-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-fishing-games__text-block {
    font-size: 15px;
  }
  .page-fishing-games__feature-grid,
  .page-fishing-games__game-grid,
  .page-fishing-games__bonus-grid,
  .page-fishing-games__step-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-fishing-games__feature-image {
    height: 200px;
  }
  .page-fishing-games__game-image {
    height: 180px;
  }
  .page-fishing-games__mobile-layout {
    flex-direction: column;
    gap: 30px;
  }
  .page-fishing-games__mobile-content {
    text-align: center;
  }
  .page-fishing-games__mobile-image-wrapper {
    order: -1; /* Image above content on mobile */
  }
  .page-fishing-games__why-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-fishing-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__hero-image,
  .page-fishing-games__feature-image,
  .page-fishing-games__game-image,
  .page-fishing-games__bonus-image,
  .page-fishing-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-fishing-games__contact-methods {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: 28px;
  }
  .page-fishing-games__hero-subtitle {
    font-size: 16px;
  }
  .page-fishing-games__section-title {
    font-size: 24px;
  }
  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary,
  .page-fishing-games__btn-link,
  .page-fishing-games__contact-button {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
  .page-fishing-games__text-block,
  .page-fishing-games__feature-description,
  .page-fishing-games__game-description,
  .page-fishing-games__bonus-description,
  .page-fishing-games__step-description,
  .page-fishing-games__why-description {
    font-size: 14px;
  }
  .page-fishing-games__feature-title,
  .page-fishing-games__game-title,
  .page-fishing-games__bonus-title,
  .page-fishing-games__step-title,
  .page-fishing-games__why-title {
    font-size: 20px;
  }
  .page-fishing-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}