/* style/resources-kl99-casino-security-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-on-dark-bg: #FFFFFF;
  --text-on-light-bg: #333333;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFFFF; /* Adjusted for contrast: #FFFF00 on #C30808 is too low contrast (2.14:1). Using #FFFFFF (8.3:1) */
  --background-color: #000000; /* Body background from shared.css */
}

.page-resources-kl99-casino-security-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark-bg); /* Default text color for the page, as body is dark */
  background-color: var(--background-color);
}

.page-resources-kl99-casino-security-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-kl99-casino-security-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-resources-kl99-casino-security-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-kl99-casino-security-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-kl99-casino-security-guide__hero-content {
  position: relative;
  z-index: 3;
  color: var(--secondary-color);
  max-width: 800px;
  padding: 20px;
}

.page-resources-kl99-casino-security-guide__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-kl99-casino-security-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-kl99-casino-security-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-kl99-casino-security-guide__btn-primary,
.page-resources-kl99-casino-security-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-resources-kl99-casino-security-guide__btn-primary {
  background-color: var(--button-register-bg); /* #C30808 */
  color: var(--button-text-color); /* #FFFFFF for contrast */
  border: 2px solid var(--button-register-bg);
}

.page-resources-kl99-casino-security-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-kl99-casino-security-guide__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color); /* #FFFFFF */
  border: 2px solid var(--secondary-color);
}

.page-resources-kl99-casino-security-guide__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color); /* #017439 */
}

.page-resources-kl99-casino-security-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}