/* style/beginner-guide-gambling-terms.css */
.page-beginner-guide-gambling-terms {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-beginner-guide-gambling-terms__hero {
  background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-gambling-terms__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: page-beginner-guide-gambling-terms__hero-pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-beginner-guide-gambling-terms__hero-pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-beginner-guide-gambling-terms__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-beginner-guide-gambling-terms__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-beginner-guide-gambling-terms__hero-button {
  display: inline-block;
  background-color: #fff;
  color: #DC143C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-beginner-guide-gambling-terms__hero-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-gambling-terms__content {
  padding: 60px 0;
}

.page-beginner-guide-gambling-terms__section-title {
  font-size: 2.5em;
  color: #DC143C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-gambling-terms__sub-section-title {
  font-size: 1.8em;
  color: #b39700; /* Darker shade of #FFD700 for better contrast */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #DC143C;
  padding-left: 15px;
}

.page-beginner-guide-gambling-terms p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-beginner-guide-gambling-terms__term-list {
  list-style: none;
  padding-left: 0;
}

.page-beginner-guide-gambling-terms__term-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.page-beginner-guide-gambling-terms__term-list li:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-gambling-terms__term-list li strong {
  color: #DC143C;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-beginner-guide-gambling-terms__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-beginner-guide-gambling-terms__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-gambling-terms__cta-section {
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-gambling-terms__cta-section .page-beginner-guide-gambling-terms__section-title {
  margin-bottom: 20px;
}

.page-beginner-guide-gambling-terms__cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.page-beginner-guide-gambling-terms__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-gambling-terms__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-gambling-terms__button--primary {
  background-color: #DC143C;
  color: #fff;
}

.page-beginner-guide-gambling-terms__button--primary:hover {
  background-color: #b01030;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-gambling-terms__button--secondary {
  background-color: #FFD700;
  color: #333;
}

.page-beginner-guide-gambling-terms__button--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-gambling-terms__tip-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding-left: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-beginner-guide-gambling-terms__tip-list li {
  margin-bottom: 10px;
}

.page-beginner-guide-gambling-terms__faq {
  margin-top: 40px;
}

.page-beginner-guide-gambling-terms__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-gambling-terms__faq-question {
  font-size: 1.4em;
  color: #DC143C;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-gambling-terms__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-beginner-guide-gambling-terms__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-gambling-terms__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.page-beginner-guide-gambling-terms__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-gambling-terms__hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-gambling-terms__hero-description {
    font-size: 1.1em;
  }

  .page-beginner-guide-gambling-terms__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-gambling-terms__sub-section-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-gambling-terms__cta-section {
    padding: 30px;
  }

  .page-beginner-guide-gambling-terms__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-gambling-terms__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-gambling-terms__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-gambling-terms__hero-description {
    font-size: 1em;
  }

  .page-beginner-guide-gambling-terms__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-gambling-terms__sub-section-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-gambling-terms__term-list li,
  .page-beginner-guide-gambling-terms__faq-item {
    padding: 15px;
  }
}