/* style/game-guides-fishing-tips.css */
/* body đã padding-top: var(--header-offset)；trang này cấm viết lại biến đó */
.page-game-guides-fishing-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Màu chữ mặc định cho trang */
  background-color: var(--background-color); /* Thừa hưởng từ body, là #08160F */
}

/* Màu sắc tùy chỉnh */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color-custom: #08160F; /* Màu nền tùy chỉnh */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Kiểu chữ và liên kết chung */
.page-game-guides-fishing-tips__text-block,
.page-game-guides-fishing-tips__list-item {
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-game-guides-fishing-tips__text-block a,
.page-game-guides-fishing-tips__list-item a {
  color: var(--gold-color); /* Liên kết trong văn bản */
  text-decoration: underline;
}

.page-game-guides-fishing-tips__text-block a:hover,
.page-game-guides-fishing-tips__list-item a:hover {
  color: var(--glow-color);
}

.page-game-guides-fishing-tips__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-guides-fishing-tips__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Các phần */
.page-game-guides-fishing-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-fishing-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Khoảng cách bên dưới nội dung */
  padding-top: 10px; /* Khoảng đệm trên nhỏ */
}

.page-game-guides-fishing-tips__hero-image-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 20px; /* Khoảng cách giữa hình ảnh và nội dung */
}

.page-game-guides-fishing-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-game-guides-fishing-tips__hero-content-wrapper {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Đảm bảo nội dung nằm trên hình ảnh nếu có bất kỳ sự chồng chéo nào */
}

.page-game-guides-fishing-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Kích thước font H1 phản hồi */
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}