/* style/gambling-guide-strategy-tutorial.css */

/* Variables for consistency */
:root {
  --page-primary-color: #1A2E44;
  --page-secondary-color: #FFD700;
  --page-text-color-dark: #333333;
  --page-text-color-light: #FFFFFF;
  --page-background-light: #F8F8F8;
  --page-background-dark: #122133;
  --page-border-color: #E0E0E0;
}

.page-gambling-guide-strategy-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-color-dark);
  background-color: var(--page-background-light);
}

.page-gambling-guide-strategy-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-guide-strategy-tutorial__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a5b80 100%); /* Adjusted gradient for better contrast with text */
  color: var(--page-text-color-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-gambling-guide-strategy-tutorial__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
}

.page-gambling-guide-strategy-tutorial__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-gambling-guide-strategy-tutorial__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-gambling-guide-strategy-tutorial__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gambling-guide-strategy-tutorial__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--page-text-color-light);
}

.page-gambling-guide-strategy-tutorial__main-title .highlight {
  color: var(--page-secondary-color);
}

.page-gambling-guide-strategy-tutorial__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gambling-guide-strategy-tutorial__cta-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-guide-strategy-tutorial__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-gambling-guide-strategy-tutorial__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-gambling-guide-strategy-tutorial__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 60px;
}

.page-gambling-guide-strategy-tutorial__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-gambling-guide-strategy-tutorial__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  border-radius: 2px;
}

.page-gambling-guide-strategy-tutorial__section-title .highlight {
  color: var(--page-secondary-color);
}

.page-gambling-guide-strategy-tutorial__intro-section {
  padding: 60px 0;
  background-color: var(--page-background-light);
}

.page-gambling-guide-strategy-tutorial__intro-section p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 20px auto;
}

.page-gambling-guide-strategy-tutorial__strategy-types {
  padding: 60px 0;
  background-color: #f0f4f8; /* Lighter background for contrast */
}

.page-gambling-guide-strategy-tutorial__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gambling-guide-strategy-tutorial__strategy-card {
  background-color: var(--page-text-color-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-guide-strategy-tutorial__strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-gambling-guide-strategy-tutorial__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gambling-guide-strategy-tutorial__card-title {
  font-size: 1.8em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-gambling-guide-strategy-tutorial__strategy-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.page-gambling-guide-strategy-tutorial__strategy-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: left;
  color: #555;
}

.page-gambling-guide-strategy-tutorial__strategy-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-gambling-guide-strategy-tutorial__strategy-card ul li::before {
  content: '✔';
  color: var(--page-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gambling-guide-strategy-tutorial__analysis-psychology {
  padding: 80px 0;
  background-color: var(--page-background-light);
}

.page-gambling-guide-strategy-tutorial__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-gambling-guide-strategy-tutorial__flex-content--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .page-gambling-guide-strategy-tutorial__flex-content {
    flex-direction: column;
    text-align: center;
  }
  .page-gambling-guide-strategy-tutorial__flex-content--reverse {
    flex-direction: column;
  }
}

.page-gambling-guide-strategy-tutorial__text-block {
  flex: 1;
  max-width: 600px;
}

.page-gambling-guide-strategy-tutorial__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gambling-guide-strategy-tutorial__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-guide-strategy-tutorial__sub-section-title {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-bottom: 25px;
}

.page-gambling-guide-strategy-tutorial__text-block p {
  margin-bottom: 15px;
  color: #444;
}

.page-gambling-guide-strategy-tutorial__text-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #444;
}

.page-gambling-guide-strategy-tutorial__text-block ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-gambling-guide-strategy-tutorial__text-block ul li::before {
  content: '◆';
  color: var(--page-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-gambling-guide-strategy-tutorial__responsible-gambling {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  padding: 80px 0;
  text-align: center;
}

.page-gambling-guide-strategy-tutorial__responsible-gambling .page-gambling-guide-strategy-tutorial__section-title {
  color: var(--page-text-color-light);
}

.page-gambling-guide-strategy-tutorial__responsible-gambling .page-gambling-guide-strategy-tutorial__section-title::after {
  background-color: var(--page-secondary-color);
}

.page-gambling-guide-strategy-tutorial__responsible-gambling p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto 40px;
  opacity: 0.9;
}

.page-gambling-guide-strategy-tutorial__responsible-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-gambling-guide-strategy-tutorial__responsible-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--page-secondary-color);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.1em;
}

.page-gambling-guide-strategy-tutorial__benefits-cta {
  padding: 80px 0;
  background-color: #f0f4f8;
  text-align: center;
}

.page-gambling-guide-strategy-tutorial__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-gambling-guide-strategy-tutorial__benefit-item {
  background-color: var(--page-text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-gambling-guide-strategy-tutorial__benefit-item:hover {
  transform: translateY(-8px);
}

.page-gambling-guide-strategy-tutorial__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gambling-guide-strategy-tutorial__benefit-item h3 {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-gambling-guide-strategy-tutorial__benefit-item p {
  color: #666;
}

.page-gambling-guide-strategy-tutorial__final-cta {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gambling-guide-strategy-tutorial__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  line-height: 1.4;
  color: var(--page-text-color-light);
}

.page-gambling-guide-strategy-tutorial__faq-section {
  padding: 80px 0;
  background-color: var(--page-background-light);
}

.page-gambling-guide-strategy-tutorial__faq-item {
  background-color: var(--page-text-color-light);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gambling-guide-strategy-tutorial__faq-question {
  font-size: 1.4em;
  color: var(--page-primary-color);
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdfdfd;
  transition: background-color 0.3s ease;
}

.page-gambling-guide-strategy-tutorial__faq-question:hover {
  background-color: #f5f5f5;
}

.page-gambling-guide-strategy-tutorial__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: var(--page-secondary-color);
  transition: transform 0.3s ease;
}

.page-gambling-guide-strategy-tutorial__faq-item.active .page-gambling-guide-strategy-tutorial__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-gambling-guide-strategy-tutorial__faq-answer {
  padding: 0 25px 20px;
  margin: 0;
  font-size: 1.1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-gambling-guide-strategy-tutorial__faq-item.active .page-gambling-guide-strategy-tutorial__faq-answer {
  max-height: 200px; /* Adjust based on expected content length */
  padding: 0 25px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gambling-guide-strategy-tutorial__main-title {
    font-size: 2.5em;
  }
  .page-gambling-guide-strategy-tutorial__subtitle {
    font-size: 1.1em;
  }
  .page-gambling-guide-strategy-tutorial__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-gambling-guide-strategy-tutorial__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-gambling-guide-strategy-tutorial__flex-content {
    flex-direction: column;
  }
  .page-gambling-guide-strategy-tutorial__flex-content--reverse {
    flex-direction: column;
  }
  .page-gambling-guide-strategy-tutorial__sub-section-title {
    font-size: 1.8em;
  }
  .page-gambling-guide-strategy-tutorial__cta-text {
    font-size: 1.2em;
  }
  .page-gambling-guide-strategy-tutorial__final-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-gambling-guide-strategy-tutorial__main-title {
    font-size: 2em;
  }
  .page-gambling-guide-strategy-tutorial__subtitle {
    font-size: 1em;
  }
  .page-gambling-guide-strategy-tutorial__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gambling-guide-strategy-tutorial__section-title {
    font-size: 1.8em;
  }
  .page-gambling-guide-strategy-tutorial__card-title {
    font-size: 1.5em;
  }
  .page-gambling-guide-strategy-tutorial__benefit-item h3 {
    font-size: 1.4em;
  }
  .page-gambling-guide-strategy-tutorial__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-gambling-guide-strategy-tutorial__faq-answer {
    padding: 0 20px 15px;
  }
}