/* style/fishing-games.css */
:root {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --dark-background: #1a1a1a;
  --light-text: #ffffff;
  --dark-text: #333333;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

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

.page-fishing-games section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-medium);
}

.page-fishing-games section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-fishing-games h1,
.page-fishing-games h2,
.page-fishing-games h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-fishing-games h1 {
  font-size: 3.2em;
  color: var(--light-text);
  margin-bottom: 20px;
}

.page-fishing-games h2 {
  font-size: 2.5em;
}

.page-fishing-games h3 {
  font-size: 1.8em;
  color: var(--dark-text);
  text-align: left;
}

.page-fishing-games p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-fishing-games ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games ol {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-fishing-games li {
  margin-bottom: 10px;
}

.page-fishing-games a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fishing-games a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-fishing-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a30000 100%); /* Adjusted for better contrast */
  color: var(--light-text);
}

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

.page-fishing-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fishing-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fishing-games .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-fishing-games .hero-content a {
  color: var(--light-text);
}

.page-fishing-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
}

.page-fishing-games .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games .cta-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
}

.page-fishing-games .cta-button-secondary:hover {
  background: #a30000;
  border-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-fishing-games .btn-small:hover {
  background: var(--secondary-color);
  color: var(--dark-text);
  transform: translateY(-1px);
}

.page-fishing-games .section-intro, .page-fishing-games .section-why-choose, .page-fishing-games .section-how-to, .page-fishing-games .section-security, .page-fishing-games .section-mobile, .page-fishing-games .section-contact {
  background-color: var(--gray-light);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .section-game-types, .page-fishing-games .section-promotions, .page-fishing-games .section-tips {
  background-color: var(--light-text);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .section-faq {
  background-color: var(--gray-light);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-fishing-games .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-fishing-games .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Game Cards */
.page-fishing-games .game-cards, .page-fishing-games .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-fishing-games .game-card, .page-fishing-games .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-fishing-games .game-card:hover, .page-fishing-games .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-fishing-games .game-card img, .page-fishing-games .promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-medium);
  margin-bottom: 15px;
}

.page-fishing-games .game-card h3, .page-fishing-games .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
  text-align: center;
  padding: 0 15px;
}

.page-fishing-games .game-card p, .page-fishing-games .promo-card p {
  font-size: 0.95em;
  color: var(--dark-text);
  padding: 0 15px;
  text-align: center;
}

.page-fishing-games .promo-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--dark-text);
}

/* FAQ Section */
.page-fishing-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.page-fishing-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-fishing-games .faq-question:hover {
  background: var(--gray-light);
}

.page-fishing-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--dark-text);
  text-align: left;
}

.page-fishing-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-fishing-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-fishing-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: var(--gray-light);
}

.page-fishing-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 20px;
  border-top: 1px solid var(--gray-medium);
}

.page-fishing-games .faq-answer p {
  margin-bottom: 0;
  font-size: 0.95em;
  color: var(--dark-text);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-fishing-games h1 {
    font-size: 2.8em;
  }
  .page-fishing-games h2 {
    font-size: 2em;
  }
  .page-fishing-games h3 {
    font-size: 1.6em;
  }
  .page-fishing-games .hero-section {
    padding: 60px 15px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1.1em;
  }
  .page-fishing-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-fishing-games section {
    padding: 40px 0;
  }
  .page-fishing-games .section-intro, .page-fishing-games .section-why-choose, .page-fishing-games .section-how-to, .page-fishing-games .section-security, .page-fishing-games .section-mobile, .page-fishing-games .section-contact,
  .page-fishing-games .section-game-types, .page-fishing-games .section-promotions, .page-fishing-games .section-tips, .page-fishing-games .section-faq {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games h1 {
    font-size: 2.2em;
  }
  .page-fishing-games h2 {
    font-size: 1.8em;
  }
  .page-fishing-games h3 {
    font-size: 1.4em;
  }
  .page-fishing-games .hero-image img {
    border-radius: 8px;
  }
  .page-fishing-games .hero-content p {
    font-size: 1em;
  }
  .page-fishing-games .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-fishing-games .game-cards, .page-fishing-games .promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-fishing-games .game-card img, .page-fishing-games .promo-card img {
    height: 200px;
  }
  .page-fishing-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-fishing-games .faq-toggle {
    font-size: 20px;
  }
  .page-fishing-games .container {
    padding: 0 15px;
  }
  .page-fishing-games .section-intro, .page-fishing-games .section-why-choose, .page-fishing-games .section-how-to, .page-fishing-games .section-security, .page-fishing-games .section-mobile, .page-fishing-games .section-contact,
  .page-fishing-games .section-game-types, .page-fishing-games .section-promotions, .page-fishing-games .section-tips, .page-fishing-games .section-faq {
    padding: 20px;
  }
}