/* style/casino-baccarat-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #1a1a2e; /* Body background from shared.css */
  --register-login-font-color: #FFFF00;
  --text-color-light-bg: #333333;
  --text-color-dark-bg: #FFFFFF;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
  --card-border-color: #e0e0e0;
}

.page-casino-baccarat-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-casino-baccarat-guide__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

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

.page-casino-baccarat-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-casino-baccarat-guide__hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-color-dark-bg);
  max-width: 900px;
  padding: 20px;
}