:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #26A9E0; /* Using primary color as dark background for contrast */
  --border-color: #e0e0e0;
  --button-login: #EA7C07;
}

.page-resources-fishing-game-withdrawal-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--secondary-color);
}

.page-resources-fishing-game-withdrawal-guide__hero-section {
  padding-top: var(--header-offset, 120px);
}

.page-resources-fishing-game-withdrawal-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #aed6f1 100%);
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.page-resources-fishing-game-withdrawal-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-fishing-game-withdrawal-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-withdrawal-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-fishing-game-withdrawal-guide__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  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.2);
}

.page-resources-fishing-game-withdrawal-guide__cta-button:hover {
  background: #c76700;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-fishing-game-withdrawal-guide__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-fishing-game-withdrawal-guide__content-section:last-of-type {
  border-bottom: none;
}

.page-resources-fishing-game-withdrawal-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-fishing-game-withdrawal-guide__section-title {
  font-size: 2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-fishing-game-withdrawal-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-fishing-game-withdrawal-guide__sub-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-fishing-game-withdrawal-guide p {
  margin-bottom: 15px;
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__list-item {
  margin-bottom: 10px;
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__dark-bg .page-resources-fishing-game-withdrawal-guide__section-title,
.page-resources-fishing-game-withdrawal-guide__dark-bg .page-resources-fishing-game-withdrawal-guide__sub-title {
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__dark-bg .page-resources-fishing-game-withdrawal-guide__section-title::after {
  background-color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__dark-bg p,
.page-resources-fishing-game-withdrawal-guide__dark-bg li {
  color: var(--text-color-light);
}

.page-resources-fishing-game-withdrawal-guide__flex-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-fishing-game-withdrawal-guide__card {
  flex: 1;
  min-width: 300px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__card:hover {
  transform: translateY(-5px);
}

.page-resources-fishing-game-withdrawal-guide__card-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-fishing-game-withdrawal-guide__card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-fishing-game-withdrawal-guide__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-fishing-game-withdrawal-guide__btn-primary:hover {
  background: #1e87b7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-withdrawal-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-resources-fishing-game-withdrawal-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-fishing-game-withdrawal-guide__btn-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-resources-fishing-game-withdrawal-guide__payment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-resources-fishing-game-withdrawal-guide__payment-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__payment-title {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-fishing-game-withdrawal-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-resources-fishing-game-withdrawal-guide__tip-card {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__tip-title {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-fishing-game-withdrawal-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-fishing-game-withdrawal-guide__image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-fishing-game-withdrawal-guide__issues-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-resources-fishing-game-withdrawal-guide__issues-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__issues-title {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.page-resources-fishing-game-withdrawal-guide__feature-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__feature-title {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-fishing-game-withdrawal-guide__conclusion {
  text-align: center;
  padding-bottom: 40px;
}

.page-resources-fishing-game-withdrawal-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-fishing-game-withdrawal-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-fishing-game-withdrawal-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: var(--bg-light);
  color: var(--text-color-dark);
}

.page-resources-fishing-game-withdrawal-guide__faq-item.active .page-resources-fishing-game-withdrawal-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: var(--bg-light);
  border-radius: 0 0 5px 5px;
}