/* style/resources-casino-game-guide.css */

/* Base Styles & Global Resets (scoped) */
.page-resources-casino-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-casino-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-casino-game-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-resources-casino-game-guide__hero-section .page-resources-casino-game-guide__section-title {
  color: #FFD700;
}

.page-resources-casino-game-guide p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-casino-game-guide__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-resources-casino-game-guide__light-bg p {
  color: #333333;
}

.page-resources-casino-game-guide__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast */
  color: #ffffff;
}

.page-resources-casino-game-guide__dark-bg p {
  color: #f0f0f0;
}

/* Buttons */
.page-resources-casino-game-guide__btn-primary,
.page-resources-casino-game-guide__btn-secondary,
.page-resources-casino-game-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-casino-game-guide__btn-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-resources-casino-game-guide__btn-primary:hover {
  background-color: #e60000;
  border-color: #e60000;
}

.page-resources-casino-game-guide__btn-secondary {
  background-color: transparent;
  color: #CC0000;
  border: 2px solid #CC0000;
}

.page-resources-casino-game-guide__btn-secondary:hover {
  background-color: #CC0000;
  color: #ffffff;
}

.page-resources-casino-game-guide__btn-tertiary {
  background-color: #FFD700;
  color: #333333;
  border: 2px solid #FFD700;
}

.page-resources-casino-game-guide__btn-tertiary:hover {
  background-color: #e0c200;
  border-color: #e0c200;
}

/* Hero Section */
.page-resources-casino-game-guide__hero-section {
  position: relative;
  text-align: center;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

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

.page-resources-casino-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-casino-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Intro Section */
.page-resources-casino-game-guide__intro-section,
.page-resources-casino-game-guide__games-section,
.page-resources-casino-game-guide__promotions-section,
.page-resources-casino-game-guide__security-section,
.page-resources-casino-game-guide__support-section,
.page-resources-casino-game-guide__faq-section {
  padding: 80px 0;
}

.page-resources-casino-game-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-casino-game-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}