.page-resources-how-to-safely-efficiently-use-hitclub-homepage {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light background */
  background-color: #ffffff; /* Explicitly set for clarity, though body background is var(--secondary-color) which is #FFFFFF */
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__section {
  padding: 60px 0;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__section--intro {
  background-color: #f9f9f9;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__section-title {
  font-size: 32px;
  color: #26A9E0; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__text-block {
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #e0f2f7, #ffffff);
  overflow: hidden;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-image {
  width: 100%;
  margin-bottom: 30px;
  z-index: 1;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with image for better visual flow */
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-title {
  font-size: 42px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__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;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__cta-button--primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__cta-button--primary:hover {
  background: #1e87b6;
  border-color: #1e87b6;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__cta-button--secondary {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__cta-button--secondary:hover {
  background: #d46f07;
  border-color: #d46f07;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(234, 124, 7, 0.4);
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__cta-buttons--center {
  justify-content: center;
}

/* Guide Section */
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content ol,
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content ul {
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content ol {
  list-style-type: decimal;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-content li {
  margin-bottom: 8px;
  color: #555555;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  width: 100%;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-card {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-title {
  font-size: 20px;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-title a:hover {
  text-decoration: underline;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__game-card p {
  font-size: 15px;
  color: #666666;
  text-align: center;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__promo-list,
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__support-contact {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-resources-how-to-safely-efficiently-use-hitclub-homepage__promo-list li,
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__support-contact li {
  background-color: #e6f7ff;
  border-left: 4px solid #26A9E0;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 16px;
  color: #333333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.page-resources-how-to-safely-efficiently-use-hitclub-homepage__section--faq {
  background-color: #f0f2f7;
}