/* style/blog-how-to-choose-the-best-online-casino.css */

:root {
  --vp777-primary-color: #11A84E;
  --vp777-secondary-color: #22C768;
  --vp777-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --vp777-card-bg: #11271B;
  --vp777-background: #08160F;
  --vp777-text-main: #F2FFF6;
  --vp777-text-secondary: #A7D9B8;
  --vp777-border-color: #2E7A4E;
  --vp777-glow-color: #57E38D;
  --vp777-gold-color: #F2C14E;
  --vp777-divider-color: #1E3A2A;
  --vp777-deep-green: #0A4B2C;
}

.page-blog-how-to-choose-the-best-online-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--vp777-text-main); /* Default to light text for dark body background */
  background-color: var(--vp777-background);
}

.page-blog-how-to-choose-the-best-online-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding for content */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-choose-the-best-online-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to allow text readability */
}

.page-blog-how-to-choose-the-best-online-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-blog-how-to-choose-the-best-online-casino__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: var(--vp777-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-how-to-choose-the-best-online-casino__hero-description {
  font-size: 1.2em;
  color: var(--vp777-text-main);
  margin-bottom: 30px;
}

.page-blog-how-to-choose-the-best-online-casino__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--vp777-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button adapts */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-the-best-online-casino__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-the-best-online-casino__content-area,
.page-blog-how-to-choose-the-best-online-casino__conclusion-section {
  background-color: var(--vp777-background);
  color: var(--vp777-text-main);
  padding: 60px 20px;
}

.page-blog-how-to-choose-the-best-online-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.page-blog-how-to-choose-the-best-online-casino__section-title {
  font-size: 2.5em;
  color: var(--vp777-gold-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-how-to-choose-the-best-online-casino__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--vp777-text-main);
  text-align: justify;
}

.page-blog-how-to-choose-the-best-online-casino__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-the-best-online-casino__feature-card {
  background-color: var(--vp777-card-bg);
  border: 1px solid var(--vp777-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--vp777-text-main);
}

.page-blog-how-to-choose-the-best-online-casino__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-the-best-online-casino__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-the-best-online-casino__card-title {
  font-size: 1.8em;
  color: var(--vp777-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-the-best-online-casino__card-text {
  font-size: 1em;
  color: var(--vp777-text-secondary);
  text-align: justify;
}

.page-blog-how-to-choose-the-best-online-casino__numbered-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-how-to-choose-the-best-online-casino__numbered-list li {
  background-color: var(--vp777-card-bg);
  border-left: 5px solid var(--vp777-primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--vp777-text-main);
  position: relative;
  padding-left: 40px;
}

.page-blog-how-to-choose-the-best-online-casino__numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--vp777-primary-color);
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-blog-how-to-choose-the-best-online-casino__faq-section {
  background-color: var(--vp777-background);
  padding: 60px 20px;
  color: var(--vp777-text-main);
}

.page-blog-how-to-choose-the-best-online-casino__faq-item {
  background-color: var(--vp777-card-bg);
  border: 1px solid var(--vp777-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--vp777-text-main);
}

.page-blog-how-to-choose-the-best-online-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--vp777-gold-color);
  cursor: pointer;
  background-color: var(--vp777-deep-green);
  border-bottom: 1px solid var(--vp777-border-color);
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-the-best-online-casino__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-the-best-online-casino__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--vp777-glow-color);
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-the-best-online-casino__faq-item[open] .page-blog-how-to-choose-the-best-online-casino__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-the-best-online-casino__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--vp777-text-secondary);
  text-align: justify;
}

.page-blog-how-to-choose-the-best-online-casino__faq-answer p {
  margin: 0;
}

.page-blog-how-to-choose-the-best-online-casino__final-cta {
  margin-top: 40px;
}

.page-blog-how-to-choose-the-best-online-casino__floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 25px;
  background: var(--vp777-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-the-best-online-casino__floating-button:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-choose-the-best-online-casino__login-float {
  right: 150px; /* Adjust spacing for two buttons */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-the-best-online-casino__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-how-to-choose-the-best-online-casino__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-choose-the-best-online-casino__hero-content {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-the-best-online-casino__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-how-to-choose-the-best-online-casino__hero-content {
    padding: 20px 10px;
  }

  .page-blog-how-to-choose-the-best-online-casino__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-how-to-choose-the-best-online-casino__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-the-best-online-casino__btn-primary {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-blog-how-to-choose-the-best-online-casino__content-area,
  .page-blog-how-to-choose-the-best-online-casino__faq-section,
  .page-blog-how-to-choose-the-best-online-casino__conclusion-section {
    padding: 40px 15px;
  }

  .page-blog-how-to-choose-the-best-online-casino__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-choose-the-best-online-casino__text-block {
    font-size: 1em;
  }

  .page-blog-how-to-choose-the-best-online-casino__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-choose-the-best-online-casino__card-image {
    height: 180px;
  }

  .page-blog-how-to-choose-the-best-online-casino__card-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-the-best-online-casino__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-how-to-choose-the-best-online-casino__faq-answer {
    padding: 10px 20px;
  }

  .page-blog-how-to-choose-the-best-online-casino__floating-button {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-blog-how-to-choose-the-best-online-casino__login-float {
    right: 120px; /* Adjust spacing for two buttons */
  }

  /* Mobile responsive for images and containers */
  .page-blog-how-to-choose-the-best-online-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-the-best-online-casino__section,
  .page-blog-how-to-choose-the-best-online-casino__card,
  .page-blog-how-to-choose-the-best-online-casino__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-choose-the-best-online-casino__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Mobile responsive for buttons */
  .page-blog-how-to-choose-the-best-online-casino__cta-button,
  .page-blog-how-to-choose-the-best-online-casino__btn-primary,
  .page-blog-how-to-choose-the-best-online-casino__btn-secondary,
  .page-blog-how-to-choose-the-best-online-casino a[class*="button"],
  .page-blog-how-to-choose-the-best-online-casino 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-blog-how-to-choose-the-best-online-casino__cta-buttons,
  .page-blog-how-to-choose-the-best-online-casino__button-group,
  .page-blog-how-to-choose-the-best-online-casino__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-blog-how-to-choose-the-best-online-casino__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-the-best-online-casino__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }

  .page-blog-how-to-choose-the-best-online-casino__section-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-the-best-online-casino__floating-button {
    width: calc(50% - 25px); /* Two buttons side by side */
    bottom: 10px;
    right: auto;
    left: 10px;
    text-align: center;
  }

  .page-blog-how-to-choose-the-best-online-casino__login-float {
    left: calc(50% + 5px);
    right: 10px; /* Reset right for proper alignment */
  }
}