/* style/blog-top-strategies-for-online-casino.css */

/* --- General Page Styles --- */
.page-blog-top-strategies-for-online-casino {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #F5F7FA; /* Page background color */
  line-height: 1.6;
}

.page-blog-top-strategies-for-online-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-top-strategies-for-online-casino__section {
  padding: 40px 0;
}

.page-blog-top-strategies-for-online-casino__dark-section {
  background-color: #E53935; /* Main brand color for dark sections */
  color: #ffffff; /* White text for dark background */
}

.page-blog-top-strategies-for-online-casino__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #E53935; /* Brand color for titles */
  line-height: 1.2;
}

.page-blog-top-strategies-for-online-casino__dark-section .page-blog-top-strategies-for-online-casino__section-title {
  color: #ffffff; /* White title for dark section */
}

.page-blog-top-strategies-for-online-casino__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E53935; /* Brand color for sub-titles */
}

.page-blog-top-strategies-for-online-casino__dark-section .page-blog-top-strategies-for-online-casino__sub-title {
  color: #FF5A4F; /* Auxiliary brand color for sub-titles in dark section */
}

.page-blog-top-strategies-for-online-casino__text-block {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-top-strategies-for-online-casino a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-top-strategies-for-online-casino a:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

.page-blog-top-strategies-for-online-casino .text-main {
  color: #E53935;
  font-weight: 700;
}

.page-blog-top-strategies-for-online-casino__dark-section .text-main {
  color: #FF5A4F;
}

/* --- Hero Section --- */
.page-blog-top-strategies-for-online-casino__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  background-color: #000; /* Fallback for hero background */
}

.page-blog-top-strategies-for-online-casino__hero-image {
  width: 100%;
  height: 600px; /* Fixed height for desktop */
  overflow: hidden;
  position: relative;
}

.page-blog-top-strategies-for-online-casino__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  display: block;
}

.page-blog-top-strategies-for-online-casino__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  color: #ffffff;
  box-sizing: border-box;
}

.page-blog-top-strategies-for-online-casino__main-title {
  font-size: clamp(32px, 5vw, 48px); /* Responsive font size for H1 */
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 900px;
}

.page-blog-top-strategies-for-online-casino__description {
  font-size: 20px;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* --- CTA Buttons --- */
.page-blog-top-strategies-for-online-casino__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-top-strategies-for-online-casino__btn-primary,
.page-blog-top-strategies-for-online-casino__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Important for responsive buttons */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word;
}

.page-blog-top-strategies-for-online-casino__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-blog-top-strategies-for-online-casino__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #ffffff; /* Ensure text color remains white on hover */
  text-decoration: none;
}

.page-blog-top-strategies-for-online-casino__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-blog-top-strategies-for-online-casino__btn-secondary:hover {
  background: #f0f0f0;
  color: #E53935; /* Ensure text color remains brand color on hover */
  transform: translateY(-2px);
  text-decoration: none;
}

/* --- Article Content Images --- */
.page-blog-top-strategies-for-online-casino__article-figure {
  margin: 30px auto;
  text-align: center;
  max-width: 1000px; /* Max width for content images */
}

.page-blog-top-strategies-for-online-casino__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center the image */
}

.page-blog-top-strategies-for-online-casino__image-caption {
  font-size: 15px;
  color: #666666;
  margin-top: 10px;
}

/* --- Lists --- */
.page-blog-top-strategies-for-online-casino__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-top-strategies-for-online-casino__list-item {
  margin-bottom: 8px;
  font-size: 17px;
}

/* --- FAQ Section (using <details>) --- */
details.page-blog-top-strategies-for-online-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0; /* Border color */
  overflow: hidden;
  background: #ffffff; /* Card background color */
}
details.page-blog-top-strategies-for-online-casino__faq-item summary.page-blog-top-strategies-for-online-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #333333; /* Text Main color */
  font-weight: 600;
}