/* style/casino-baccarat-deep-dive.css */

/* Base Styles */
.page-casino-baccarat-deep-dive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-casino-baccarat-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino-baccarat-deep-dive__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-casino-baccarat-deep-dive__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__content-block {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for content blocks */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__content-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-baccarat-deep-dive__content-sub-subtitle {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino-baccarat-deep-dive__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__list li {
  margin-bottom: 10px;
}

.page-casino-baccarat-deep-dive__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for primary buttons */
  color: #0A2647; /* Dark text for auxiliary background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-casino-baccarat-deep-dive__btn-primary:hover {
  background-color: #e6c200;
  color: #0A2647;
}

.page-casino-baccarat-deep-dive__text-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-casino-baccarat-deep-dive__text-link:hover {
  color: #e6c200;
}

/* Hero Section */
.page-casino-baccarat-deep-dive__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
}

.page-casino-baccarat-deep-dive__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-casino-baccarat-deep-dive__hero-section .page-casino-baccarat-deep-dive__container {
  z-index: 1;
}

.page-casino-baccarat-deep-dive__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-baccarat-deep-dive__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Section */
.page-casino-baccarat-deep-dive__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A2647; /* Main color as background */
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-casino-baccarat-deep-dive__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-casino-baccarat-deep-dive__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Sections General */
.page-casino-baccarat-deep-dive__rules-section,
.page-casino-baccarat-deep-dive__bet-types-section,
.page-casino-baccarat-deep-dive__strategy-section,
.page-casino-baccarat-deep-dive__experience-section,
.page-casino-baccarat-deep-dive__faq-section,
.page-casino-baccarat-deep-dive__conclusion-section {
  padding: 80px 0;
}

.page-casino-baccarat-deep-dive__rules-section,
.page-casino-baccarat-deep-dive__strategy-section,
.page-casino-baccarat-deep-dive__faq-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__section-title,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__section-title,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__section-title {
  color: #0A2647; /* Main color for titles on light background */
}

.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__section-description,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__section-description,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__section-description {
  color: #333333;
}

.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__content-block,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__content-block,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__content-block {
  background-color: #f9f9f9;
  color: #333333;
}

.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__content-subtitle,
.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__content-sub-subtitle,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__content-subtitle,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__content-sub-subtitle,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__content-subtitle,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__content-sub-subtitle {
  color: #0A2647;
}

.page-casino-baccarat-deep-dive__rules-section .page-casino-baccarat-deep-dive__list,
.page-casino-baccarat-deep-dive__strategy-section .page-casino-baccarat-deep-dive__list,
.page-casino-baccarat-deep-dive__faq-section .page-casino-baccarat-deep-dive__list {
  color: #333333;
}

.page-casino-baccarat-deep-dive__bet-types-section,
.page-casino-baccarat-deep-dive__experience-section,
.page-casino-baccarat-deep-dive__conclusion-section {
  background-color: #0A2647; /* Main color as background */
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__bet-types-section .page-casino-baccarat-deep-dive__section-title,
.page-casino-baccarat-deep-dive__experience-section .page-casino-baccarat-deep-dive__section-title,
.page-casino-baccarat-deep-dive__conclusion-section .page-casino-baccarat-deep-dive__section-title {
  color: #FFD700;
}

.page-casino-baccarat-deep-dive__bet-types-section .page-casino-baccarat-deep-dive__section-description,
.page-casino-baccarat-deep-dive__experience-section .page-casino-baccarat-deep-dive__section-description,
.page-casino-baccarat-deep-dive__conclusion-section .page-casino-baccarat-deep-dive__section-description {
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__bet-types-section .page-casino-baccarat-deep-dive__content-block,
.page-casino-baccarat-deep-dive__experience-section .page-casino-baccarat-deep-dive__content-block,
.page-casino-baccarat-deep-dive__conclusion-section .page-casino-baccarat-deep-dive__content-block {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__bet-types-section .page-casino-baccarat-deep-dive__content-subtitle,
.page-casino-baccarat-deep-dive__experience-section .page-casino-baccarat-deep-dive__content-subtitle,
.page-casino-baccarat-deep-dive__conclusion-section .page-casino-baccarat-deep-dive__content-subtitle {
  color: #FFD700;
}

.page-casino-baccarat-deep-dive__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-baccarat-deep-dive__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.page-casino-baccarat-deep-dive__table th,
.page-casino-baccarat-deep-dive__table td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  text-align: left;
  color: #ffffff;
}

.page-casino-baccarat-deep-dive__table th {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: bold;
  color: #FFD700;
}

.page-casino-baccarat-deep-dive__cta-button-bottom {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-casino-baccarat-deep-dive__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-casino-baccarat-deep-dive__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino-baccarat-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #ffffff;
  color: #0A2647;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-casino-baccarat-deep-dive__faq-question:hover {
  background-color: #f0f0f0;
}

.page-casino-baccarat-deep-dive__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A2647;
}

.page-casino-baccarat-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-casino-baccarat-deep-dive__faq-item.active .page-casino-baccarat-deep-dive__faq-toggle {
  transform: rotate(45deg);
}

.page-casino-baccarat-deep-dive__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f9f9f9;
  color: #333333;
}

.page-casino-baccarat-deep-dive__faq-item.active .page-casino-baccarat-deep-dive__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 20px;
}

.page-casino-baccarat-deep-dive__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Conclusion Section */
.page-casino-baccarat-deep-dive__conclusion-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino-baccarat-deep-dive__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-casino-baccarat-deep-dive__conclusion-section .page-casino-baccarat-deep-dive__container {
  z-index: 1;
  position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-baccarat-deep-dive__hero-title {
    font-size: 3em;
  }
  .page-casino-baccarat-deep-dive__section-title {
    font-size: 2em;
  }
  .page-casino-baccarat-deep-dive__content-subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-casino-baccarat-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino-baccarat-deep-dive__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-casino-baccarat-deep-dive__hero-title {
    font-size: 2.5em;
  }

  .page-casino-baccarat-deep-dive__hero-description {
    font-size: 1em;
  }

  .page-casino-baccarat-deep-dive__section-title {
    font-size: 1.8em;
  }

  .page-casino-baccarat-deep-dive__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-casino-baccarat-deep-dive__content-block {
    padding: 20px;
  }

  .page-casino-baccarat-deep-dive__content-subtitle {
    font-size: 1.4em;
  }

  .page-casino-baccarat-deep-dive__video-section,
  .page-casino-baccarat-deep-dive__rules-section,
  .page-casino-baccarat-deep-dive__bet-types-section,
  .page-casino-baccarat-deep-dive__strategy-section,
  .page-casino-baccarat-deep-dive__experience-section,
  .page-casino-baccarat-deep-dive__faq-section,
  .page-casino-baccarat-deep-dive__conclusion-section {
    padding: 50px 0;
  }

  .page-casino-baccarat-deep-dive__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-casino-baccarat-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness */
  .page-casino-baccarat-deep-dive video,
  .page-casino-baccarat-deep-dive__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-baccarat-deep-dive__video-section,
  .page-casino-baccarat-deep-dive__video-container,
  .page-casino-baccarat-deep-dive__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-casino-baccarat-deep-dive__btn-primary,
  .page-casino-baccarat-deep-dive a[class*="button"],
  .page-casino-baccarat-deep-dive a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino-baccarat-deep-dive__cta-buttons,
  .page-casino-baccarat-deep-dive__button-group,
  .page-casino-baccarat-deep-dive__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-casino-baccarat-deep-dive__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-casino-baccarat-deep-dive__hero-title {
    font-size: 2em;
  }
  .page-casino-baccarat-deep-dive__section-title {
    font-size: 1.5em;
  }
  .page-casino-baccarat-deep-dive__content-subtitle {
    font-size: 1.2em;
  }
  .page-casino-baccarat-deep-dive__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }
}