/* style/blog-best-online-casino-reviews-2024.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --bg-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-best-online-casino-reviews-2024 {
  color: var(--text-main-color); /* Body background is dark, so use light text */
  background: var(--bg-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-best-online-casino-reviews-2024__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-best-online-casino-reviews-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-best-online-casino-reviews-2024__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-best-online-casino-reviews-2024__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 5px;
}

.page-blog-best-online-casino-reviews-2024__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-best-online-casino-reviews-2024__text-block .highlight {
  color: var(--gold-color);
  font-weight: bold;
}

/* HERO Section */
.page-blog-best-online-casino-reviews-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: var(--deep-green-color); /* A subtle background for the hero section */
  overflow: hidden;
}

.page-blog-best-online-casino-reviews-2024__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-blog-best-online-casino-reviews-2024__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-best-online-casino-reviews-2024__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-best-online-casino-reviews-2024__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-best-online-casino-reviews-2024__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-best-online-casino-reviews-2024__hero-description {
  font-size: 18px;
  color: var(--text-secondary-color);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-best-online-casino-reviews-2024__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-best-online-casino-reviews-2024__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-best-online-casino-reviews-2024__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-best-online-casino-reviews-2024__cta-button--secondary {
  background: var(--card-bg-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-blog-best-online-casino-reviews-2024__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-main-color);
}

/* Quick Links Section */
.page-blog-best-online-casino-reviews-2024__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-blog-best-online-casino-reviews-2024__grid-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  background: var(--card-bg-color);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-best-online-casino-reviews-2024__grid-link:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* Game Types Section */
.page-blog-best-online-casino-reviews-2024__game-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.page-blog-best-online-casino-reviews-2024__game-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.page-blog-best-online-casino-reviews-2024__game-card {
  flex: 0 0 300px; /* Fixed width for cards */
  background: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-best-online-casino-reviews-2024__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.page-blog-best-online-casino-reviews-2024__game-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-best-online-casino-reviews-2024__game-description {
  font-size: 15px;
  color: var(--text-secondary-color);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-blog-best-online-casino-reviews-2024__game-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-best-online-casino-reviews-2024__game-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Promotions Section */
.page-blog-best-online-casino-reviews-2024__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-best-online-casino-reviews-2024__promo-card {
  background: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  text-align: center;
}

.page-blog-best-online-casino-reviews-2024__promo-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-best-online-casino-reviews-2024__promo-description {
  font-size: 16px;
  color: var(--text-secondary-color);
  margin-bottom: 25px;
}

.page-blog-best-online-casino-reviews-2024__promo-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-best-online-casino-reviews-2024__promo-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Security & CS Section */
.page-blog-best-online-casino-reviews-2024__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-best-online-casino-reviews-2024__info-card {
  background: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  text-align: center;
}

.page-blog-best-online-casino-reviews-2024__info-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--glow-color)); /* Glow effect for icons */
}

.page-blog-best-online-casino-reviews-2024__info-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-best-online-casino-reviews-2024__info-description {
  font-size: 15px;
  color: var(--text-secondary-color);
}

/* FAQ Section */
details.page-blog-best-online-casino-reviews-2024__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-blog-best-online-casino-reviews-2024__faq-item summary.page-blog-best-online-casino-reviews-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-best-online-casino-reviews-2024__faq-item summary.page-blog-best-online-casino-reviews-2024__faq-question::-webkit-details-marker {
  display: none;
}