/* style/blog-winning-strategies-for-online-table-games.css */
:root {
  --primary-color: #FFFFFF;
  --secondary-color: #025BE8;
  --font-color: #404040;
  --register-color: #1266EC;
  --login-color: #E5EEFD;
  --background-color: #F3F3F3;
  --footer-bg-color: #191E2D;
  --header-offset: 120px; /* Default for desktop, adjusted by shared.css media queries */
}

.page-blog-winning-strategies-for-online-table-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--font-color);
  background-color: var(--background-color);
}

.page-blog-winning-strategies-for-online-table-games__hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-winning-strategies-for-online-table-games__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-winning-strategies-for-online-table-games__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.page-blog-winning-strategies-for-online-table-games__hero-text-container {
  padding: 0 20px;
  max-width: 800px;
}

.page-blog-winning-strategies-for-online-table-games__main-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-winning-strategies-for-online-table-games__intro-text {
  font-size: 1.2em;
  color: var(--font-color);
  margin-bottom: 30px;
}

.page-blog-winning-strategies-for-online-table-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-winning-strategies-for-online-table-games__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid transparent;
}

.page-blog-winning-strategies-for-online-table-games__btn-primary:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
}

.page-blog-winning-strategies-for-online-table-games__btn-secondary {
  background-color: var(--login-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-winning-strategies-for-online-table-games__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-blog-winning-strategies-for-online-table-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-blog-winning-strategies-for-online-table-games__article {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-winning-strategies-for-online-table-games__section-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-winning-strategies-for-online-table-games__paragraph {
  margin-bottom: 20px;
  color: var(--font-color);
}

.page-blog-winning-strategies-for-online-table-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-blog-winning-strategies-for-online-table-games__faq-list {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-blog-winning-strategies-for-online-table-games__faq-item {
  border-bottom: 1px solid #eee;
}

.page-blog-winning-strategies-for-online-table-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.page-blog-winning-strategies-for-online-table-games__faq-question:hover {
  color: darken(var(--secondary-color), 10%);
}

.page-blog-winning-strategies-for-online-table-games__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: inherit;
}

.page-blog-winning-strategies-for-online-table-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-winning-strategies-for-online-table-games__faq-item.active .page-blog-winning-strategies-for-online-table-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-winning-strategies-for-online-table-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--font-color);
}

.page-blog-winning-strategies-for-online-table-games__faq-item.active .page-blog-winning-strategies-for-online-table-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px;
}

.page-blog-winning-strategies-for-online-table-games__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-winning-strategies-for-online-table-games__main-title {
    font-size: 2em;
  }

  .page-blog-winning-strategies-for-online-table-games__intro-text,
  .page-blog-winning-strategies-for-online-table-games__paragraph,
  .page-blog-winning-strategies-for-online-table-games__faq-question h3 {
    font-size: 1em;
  }

  .page-blog-winning-strategies-for-online-table-games__section-title {
    font-size: 1.5em;
  }

  .page-blog-winning-strategies-for-online-table-games__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add margin between stacked buttons */
  }
  
  .page-blog-winning-strategies-for-online-table-games__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile specific header offset */
  }

  .page-blog-winning-strategies-for-online-table-games__hero-content-wrapper {
    padding: 0 15px;
  }

  .page-blog-winning-strategies-for-online-table-games__content-area,
  .page-blog-winning-strategies-for-online-table-games__article {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-winning-strategies-for-online-table-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-blog-winning-strategies-for-online-table-games__main-title {
    font-size: 1.8em;
  }

  .page-blog-winning-strategies-for-online-table-games__section-title {
    font-size: 1.3em;
  }
}

/* Color Contrast Safeguards */
.page-blog-winning-strategies-for-online-table-games__light-bg {
  color: var(--font-color); /* Assuming F3F3F3 or FFFFFF body background is light */
  background: var(--primary-color);
}

.page-blog-winning-strategies-for-online-table-games p,
.page-blog-winning-strategies-for-online-table-games li {
  color: var(--font-color);
}

.page-blog-winning-strategies-for-online-table-games__card {
  background: var(--primary-color);
  color: var(--font-color);
  border: 1px solid #e0e0e0;
}

.page-blog-winning-strategies-for-online-table-games__dark-section {
  background: var(--footer-bg-color);
  color: var(--primary-color);
}