/* style/resources-casino-game-guide.css */
:root {
  --page-resources-casino-game-guide-primary-color: #017439;
  --page-resources-casino-game-guide-secondary-color: #FFFFFF;
  --page-resources-casino-game-guide-dark-bg-text-color: #ffffff;
  --page-resources-casino-game-guide-light-bg-text-color: #333333;
  --page-resources-casino-game-guide-dark-background: #121212;
  --page-resources-casino-game-guide-btn-register: #C30808;
  --page-resources-casino-game-guide-btn-login: #C30808;
  --page-resources-casino-game-guide-btn-text-color: #FFFF00;
}

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

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

.page-resources-casino-game-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

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

.page-resources-casino-game-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-resources-casino-game-guide-secondary-color);
  line-height: 1.2;
}

.page-resources-casino-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-resources-casino-game-guide__btn-primary,
.page-resources-casino-game-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, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-casino-game-guide__btn-primary {
  background-color: var(--page-resources-casino-game-guide-primary-color);
  color: var(--page-resources-casino-game-guide-secondary-color);
  border: 2px solid var(--page-resources-casino-game-guide-primary-color);
}

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

.page-resources-casino-game-guide__btn-secondary {
  background-color: transparent;
  color: var(--page-resources-casino-game-guide-primary-color);
  border: 2px solid var(--page-resources-casino-game-guide-primary-color);
}

.page-resources-casino-game-guide__btn-secondary:hover {
  background-color: var(--page-resources-casino-game-guide-primary-color);
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__content-section {
  padding: 80px 0;
  background-color: var(--page-resources-casino-game-guide-dark-background);
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__dark-bg {
  background-color: var(--page-resources-casino-game-guide-primary-color);
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-casino-game-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-casino-game-guide__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-casino-game-guide__game-card-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: var(--page-resources-casino-game-guide-secondary-color);
  padding: 0 15px;
}

.page-resources-casino-game-guide__game-card-text {
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-casino-game-guide__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--page-resources-casino-game-guide-primary-color);
  color: var(--page-resources-casino-game-guide-secondary-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-casino-game-guide__btn-link:hover {
  background-color: #005a2e;
}

.page-resources-casino-game-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-resources-casino-game-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-resources-casino-game-guide__strategy-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__strategy-text {
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-casino-game-guide__cta-section {
  padding: 100px 0;
  text-align: center;
}

.page-resources-casino-game-guide__cta-title {
  font-size: 3em;
  color: var(--page-resources-casino-game-guide-secondary-color);
  margin-bottom: 25px;
}

.page-resources-casino-game-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-resources-casino-game-guide__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--page-resources-casino-game-guide-primary-color);
  color: var(--page-resources-casino-game-guide-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
}

.page-resources-casino-game-guide__step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-resources-casino-game-guide__video-section {
  padding: 80px 0;
  background-color: var(--page-resources-casino-game-guide-dark-background);
  text-align: center;
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-casino-game-guide__section-title--video,
.page-resources-casino-game-guide__section-description--video {
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__video-wrapper {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-casino-game-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

.page-resources-casino-game-guide__security-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-casino-game-guide__security-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: var(--page-resources-casino-game-guide-secondary-color);
}

.page-resources-casino-game-guide__security-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-resources-casino-game-guide__faq-section {
  padding: 80px 0;
  background-color: var(--page-resources-casino-game-guide-dark-background);
  color: var(--page-resources-casino-game-guide-dark-bg-text-color);
}

.page-resources-casino-game-guide__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-resources-casino-game-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-resources-casino-game-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--page-resources-casino-game-guide-secondary-color);
  transition: background-color 0.3s ease;
}

.page-resources-casino-game-guide__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-casino-game-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-casino-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.page-resources-casino-game-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-casino-game-guide__conclusion-section {
  padding: 100px 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-casino-game-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-casino-game-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-casino-game-guide__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-casino-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-casino-game-guide__hero-description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-resources-casino-game-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-resources-casino-game-guide__btn-primary,
  .page-resources-casino-game-guide__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-casino-game-guide__content-section,
  .page-resources-casino-game-guide__cta-section,
  .page-resources-casino-game-guide__video-section,
  .page-resources-casino-game-guide__faq-section,
  .page-resources-casino-game-guide__conclusion-section {
    padding: 60px 0;
  }
  .page-resources-casino-game-guide__section-title,
  .page-resources-casino-game-guide__cta-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-resources-casino-game-guide__section-description,
  .page-resources-casino-game-guide__cta-description {
    font-size: 0.95em;
    padding: 0 15px;
  }
  .page-resources-casino-game-guide__game-grid,
  .page-resources-casino-game-guide__strategy-grid,
  .page-resources-casino-game-guide__guide-steps,
  .page-resources-casino-game-guide__security-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-resources-casino-game-guide__game-card-image,
  .page-resources-casino-game-guide__strategy-image,
  .page-resources-casino-game-guide__security-icon,
  .page-resources-casino-game-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-casino-game-guide__game-card,
  .page-resources-casino-game-guide__strategy-item,
  .page-resources-casino-game-guide__step-card,
  .page-resources-casino-game-guide__security-item,
  .page-resources-casino-game-guide__video-container,
  .page-resources-casino-game-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-casino-game-guide__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-resources-casino-game-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-casino-game-guide__faq-list {
    padding: 0 15px;
  }
  .page-resources-casino-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-casino-game-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}