/* style/resources-live-casino-guide.css */
.page-resources-live-casino-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Inherit from body or shared */
}

/* Color contrast rules */
.page-resources-live-casino-guide__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-resources-live-casino-guide__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

.page-resources-live-casino-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  position: relative;
  overflow: hidden;
}

.page-resources-live-casino-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}

.page-resources-live-casino-guide__hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-live-casino-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-resources-live-casino-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register and Login font color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-live-casino-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-live-casino-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-live-casino-guide__btn-primary,
.page-resources-live-casino-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-live-casino-guide__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-live-casino-guide__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-3px);
}

.page-resources-live-casino-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-resources-live-casino-guide__btn-secondary:hover {
  background-color: rgba(255, 255, 0, 0.1);
  transform: translateY(-3px);
}

.page-resources-live-casino-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-live-casino-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-live-casino-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: inherit; /* Inherit from section background */
}

.page-resources-live-casino-guide__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section background */
}

.page-resources-live-casino-guide__list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}