/* style/gambling-guides-glossary.css */
.page-gambling-guides-glossary {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-gambling-guides-glossary__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gambling-guides-glossary__hero-section {
  background: linear-gradient(135deg, #0A2463, #3c5a96);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gambling-guides-glossary__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-gambling-guides-glossary__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-gambling-guides-glossary__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gambling-guides-glossary__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gambling-guides-glossary__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gambling-guides-glossary__introduction p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
}

.page-gambling-guides-glossary__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.page-gambling-guides-glossary__glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gambling-guides-glossary__term-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-guides-glossary__term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.page-gambling-guides-glossary__term-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-gambling-guides-glossary__term-definition {
  font-size: 1em;
  color: #666;
}

.page-gambling-guides-glossary__term-definition a {
  color: #0A2463;
  text-decoration: underline;
}

.page-gambling-guides-glossary__term-definition a:hover {
  color: #FFD700;
}

.page-gambling-guides-glossary__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: #0A2463;
  color: #fff;
  margin-top: 60px;
  border-radius: 10px;
}

.page-gambling-guides-glossary__cta-section .page-gambling-guides-glossary__section-title {
  color: #FFD700;
  border-bottom-color: #fff;
}

.page-gambling-guides-glossary__cta-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 20px auto 40px;
}

.page-gambling-guides-glossary__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-gambling-guides-glossary__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-gambling-guides-glossary__cta-button--secondary {
  background-color: #fff;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-gambling-guides-glossary__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

.page-gambling-guides-glossary__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.page-gambling-guides-glossary__image-caption {
  font-style: italic;
  margin-top: 15px;
  color: rgba(255,255,255,0.8);
}

.page-gambling-guides-glossary__related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed #ddd;
}

.page-gambling-guides-glossary__article-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-gambling-guides-glossary__article-list li a {
  display: block;
  background-color: #f0f3f5;
  padding: 15px 20px;
  border-radius: 5px;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gambling-guides-glossary__article-list li a:hover {
  background-color: #FFD700;
  color: #0A2463;
}

/* Floating CTA for promotions */
.page-gambling-guides-glossary__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-gambling-guides-glossary__floating-button {
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gambling-guides-glossary__floating-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gambling-guides-glossary__floating-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gambling-guides-glossary__hero-title {
    font-size: 2em;
  }

  .page-gambling-guides-glossary__hero-description {
    font-size: 1em;
  }

  .page-gambling-guides-glossary__section-title {
    font-size: 1.6em;
  }

  .page-gambling-guides-glossary__glossary-list {
    grid-template-columns: 1fr;
  }

  .page-gambling-guides-glossary__cta-buttons {
    flex-direction: column;
  }

  .page-gambling-guides-glossary__cta-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-gambling-guides-glossary__floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .page-gambling-guides-glossary__floating-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-gambling-guides-glossary__floating-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-gambling-guides-glossary__hero-section {
    padding: 60px 0;
  }

  .page-gambling-guides-glossary__hero-title {
    font-size: 1.8em;
  }

  .page-gambling-guides-glossary__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gambling-guides-glossary__section-title {
    font-size: 1.4em;
  }

  .page-gambling-guides-glossary__term-title {
    font-size: 1.2em;
  }

  .page-gambling-guides-glossary__floating-button span {
    display: none;
  }
  .page-gambling-guides-glossary__floating-button {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .page-gambling-guides-glossary__floating-icon {
    margin-right: 0;
  }
}