:root {
  --ph365-primary-color: #F2C14E;
  --ph365-secondary-color: #FFD36B;
  --ph365-card-bg: #111111;
  --ph365-background-color: #0A0A0A;
  --ph365-text-main: #FFF6D6;
  --ph365-border-color: #3A2A12;
  --ph365-glow-color: #FFD36B;
  --ph365-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-ph365-casino-game-strategy {
  background-color: var(--ph365-background-color);
  color: var(--ph365-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles main header offset */
}

.page-blog-ph365-casino-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-ph365-casino-game-strategy__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Desktop header offset */
}

.page-blog-ph365-casino-game-strategy__hero-image-wrapper {
  width: 100%;
  height: 500px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-ph365-casino-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-ph365-casino-game-strategy__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  margin-top: -100px; /* Overlap slightly with image for visual appeal, but text is below image block */
  z-index: 1;
}

.page-blog-ph365-casino-game-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: var(--ph365-secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ph365-casino-game-strategy__hero-description {
  font-size: 1.1em;
  color: var(--ph365-text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-ph365-casino-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-ph365-casino-game-strategy__btn-primary,
.page-blog-ph365-casino-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
}

.page-blog-ph365-casino-game-strategy__btn-primary {
  background: var(--ph365-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ph365-casino-game-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #ffe07a 0%, #e8b12d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-ph365-casino-game-strategy__btn-secondary {
  background: var(--ph365-card-bg); /* Use card background for secondary button */
  color: var(--ph365-primary-color);
  border: 2px solid var(--ph365-primary-color);
}

.page-blog-ph365-casino-game-strategy__btn-secondary:hover {
  background: var(--ph365-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ph365-casino-game-strategy__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--ph365-border-color);
}

.page-blog-ph365-casino-game-strategy__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-ph365-casino-game-strategy__section-title {
  font-size: 2.5em;
  color: var(--ph365-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-ph365-casino-game-strategy__sub-title {
  font-size: 1.8em;
  color: var(--ph365-secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-ph365-casino-game-strategy p {
  margin-bottom: 20px;
  color: var(--ph365-text-main);
}

.page-blog-ph365-casino-game-strategy ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--ph365-text-main);
}

.page-blog-ph365-casino-game-strategy li {
  margin-bottom: 10px;
  color: var(--ph365-text-main);
}