/* style/fishing-games.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --page-bg: #F4F7FB;
  --text-main: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --dark-text: #333333;
  --light-text: #ffffff;
}

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

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

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

.page-fishing-games__section {
  padding: 60px 20px;
  text-align: center;
}

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

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

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

.page-fishing-games__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-main);
}

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

.page-fishing-games__keyword {
  font-weight: bold;
  color: var(--primary-color);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 60px;
  background-color: var(--primary-color);
  color: var(--light-text);
}

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

.page-fishing-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fishing-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-fishing-games__hero-title {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--light-text);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 4vw, 48px);
}

.page-fishing-games__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: var(--light-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__btn-primary {
  background: var(--button-gradient);
  color: var(--light-text);
  border: none;
}

.page-fishing-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-fishing-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fishing-games__cta-center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Why Choose Section */
.page-fishing-games__why-choose-section {
  background-color: var(--page-bg);
}

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

.page-fishing-games__grid-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

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

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

/* Popular Games Section */
.page-fishing-games__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__list-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease;
}

.page-fishing-games__list-item:hover {
  transform: translateY(-5px);
}

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

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

/* Strategy Section */
.page-fishing-games__strategy-section {
  background-color: var(--page-bg);
}

.page-fishing-games__strategy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__strategy-content img {
  flex: 1 1 45%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  display: block;
}

.page-fishing-games__strategy-text {
  flex: 1 1 45%;
  max-width: 600px;
}

.page-fishing-games__strategy-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Promotions Section */
.page-fishing-games__promotions-section {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.page-fishing-games__promotions-section .page-fishing-games__section-title,
.page-fishing-games__promotions-section .page-fishing-games__text-block {
  color: var(--light-text);
}

.page-fishing-games__promotions-section .page-fishing-games__keyword {
  color: var(--secondary-color);
}

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

.page-fishing-games__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: var(--dark-text);
  border: 1px solid var(--border-color);
}

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

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

.page-fishing-games__card-description a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-fishing-games__card-description a:hover {
  color: var(--secondary-color);
}

/* Join Guide Section */
.page-fishing-games__ordered-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-fishing-games__ordered-list .page-fishing-games__list-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-color);
  padding-top: 25px;
  padding-bottom: 25px;
}

.page-fishing-games__ordered-list .page-fishing-games__list-item::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: var(--light-text);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__ordered-list .page-fishing-games__list-title {
  color: var(--primary-color);
  margin-top: 0;
}

.page-fishing-games__ordered-list .page-fishing-games__list-description {
  color: var(--dark-text);
}

/* FAQ Section */
.page-fishing-games__faq-section {
  background-color: var(--page-bg);
}

.page-fishing-games__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-fishing-games__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fishing-games__faq-item summary.page-fishing-games__faq-question:hover {
  background: #f8f8f8;
}

.page-fishing-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
}

.page-fishing-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
  padding: 0 25px 20px;
  background: #fdfdfd;
  border-radius: 0 0 10px 10px;
  color: var(--dark-text);
}

details.page-fishing-games__faq-item .page-fishing-games__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-fishing-games__conclusion-section {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.page-fishing-games__conclusion-section .page-fishing-games__section-title,
.page-fishing-games__conclusion-section .page-fishing-games__text-block {
  color: var(--light-text);
}

.page-fishing-games__conclusion-section .page-fishing-games__keyword {
  color: var(--secondary-color);
}

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

.page-fishing-games__conclusion-section a:hover {
  color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(26px, 5vw, 42px);
  }

  .page-fishing-games__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__section {
    padding: 40px 15px;
  }

  .page-fishing-games__container {
    padding: 0 10px;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-fishing-games__text-block {
    font-size: 16px;
  }

  /* Hero Section Mobile */
  .page-fishing-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-fishing-games__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fishing-games__hero-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }

  .page-fishing-games__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-fishing-games__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
  }

  .page-fishing-games__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games__hero-cta-buttons,
  .page-fishing-games__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Grid Section Mobile */
  .page-fishing-games__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__grid-item {
    padding: 20px;
  }

  .page-fishing-games__grid-item img {
    
  }

  .page-fishing-games__grid-title {
    font-size: 20px;
  }

  /* List Section Mobile */
  .page-fishing-games__list-item {
    padding: 20px 25px;
  }

  .page-fishing-games__list-title {
    font-size: 20px;
  }

  /* Strategy Section Mobile */
  .page-fishing-games__strategy-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-fishing-games__strategy-content img,
  .page-fishing-games__strategy-text {
    flex: none;
    max-width: 100%;
  }

  .page-fishing-games__strategy-subtitle {
    font-size: 18px;
    margin-top: 20px;
  }

  /* Promotions Section Mobile */
  .page-fishing-games__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__card {
    padding: 20px;
  }

  .page-fishing-games__card-title {
    font-size: 20px;
  }

  /* Join Guide Section Mobile */
  .page-fishing-games__ordered-list .page-fishing-games__list-item {
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-fishing-games__ordered-list .page-fishing-games__list-item::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
    left: 10px;
  }

  .page-fishing-games__ordered-list .page-fishing-games__list-title {
    font-size: 20px;
  }

  /* FAQ Section Mobile */
  details.page-fishing-games__faq-item summary.page-fishing-games__faq-question {
    padding: 15px 20px;
  }

  .page-fishing-games__faq-qtext {
    font-size: 16px;
  }

  .page-fishing-games__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-fishing-games__faq-item .page-fishing-games__faq-answer {
    padding: 0 20px 15px;
  }

  /* General Image & Container Mobile */
  .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__grid-item,
  .page-fishing-games__list-item,
  .page-fishing-games__strategy-content img,
  .page-fishing-games__strategy-text,
  .page-fishing-games__promotion-card,
  .page-fishing-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Handled by .page-fishing-games__container */
    /* padding-right: 15px; */ /* Handled by .page-fishing-games__container */
  }

  .page-fishing-games__text-block, .page-fishing-games__list-description, .page-fishing-games__grid-description, .page-fishing-games__card-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-fishing-games__hero-title {
    font-size: clamp(22px, 8vw, 32px);
  }

  .page-fishing-games__hero-description {
    font-size: 15px;
  }

  .page-fishing-games__section-title {
    font-size: 24px;
  }

  .page-fishing-games__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}