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

.page-glossary-casino-terms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-glossary-casino-terms__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-glossary-casino-terms__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 215, 0, 0.1); /* Light gold overlay */
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
  opacity: 0.3;
}

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

.page-glossary-casino-terms__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-glossary-casino-terms__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-glossary-casino-terms__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-glossary-casino-terms__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-glossary-casino-terms__intro-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-glossary-casino-terms__intro-text strong {
  color: #003366;
}

.page-glossary-casino-terms__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
}

.page-glossary-casino-terms__sub-section-title {
  font-size: 2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-glossary-casino-terms__term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-glossary-casino-terms__term-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-glossary-casino-terms__term-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-glossary-casino-terms__term-name {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-glossary-casino-terms__term-definition {
  font-size: 1em;
  color: #555;
}

.page-glossary-casino-terms__image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-glossary-casino-terms__image--full-width {
  width: 100%;
}

.page-glossary-casino-terms__image--medium {
  max-width: 800px;
}

.page-glossary-casino-terms__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #003366;
  font-weight: bold;
}

.page-glossary-casino-terms__cta-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-glossary-casino-terms__cta-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-glossary-casino-terms__final-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-glossary-casino-terms__cta-button--primary {
  background-color: #FFD700;
  color: #003366;
}

.page-glossary-casino-terms__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-glossary-casino-terms__cta-button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-glossary-casino-terms__cta-button--secondary:hover {
  background-color: #001a33;
  border-color: #e6c200;
}

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

  .page-glossary-casino-terms__hero-subtitle {
    font-size: 1.1em;
  }

  .page-glossary-casino-terms__section-title {
    font-size: 2em;
  }

  .page-glossary-casino-terms__sub-section-title {
    font-size: 1.6em;
  }

  .page-glossary-casino-terms__term-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-glossary-casino-terms__hero-subtitle {
    font-size: 1em;
  }

  .page-glossary-casino-terms__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-glossary-casino-terms__section-title {
    font-size: 1.8em;
  }

  .page-glossary-casino-terms__sub-section-title {
    font-size: 1.4em;
  }
}