/* style/gambling-information-glossary.css */
.page-gambling-information-glossary {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A1A2E; /* Very dark blue background */
  line-height: 1.6;
}

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

.page-gambling-information-glossary__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2E4C 0%, #0A1A2E 100%);
}

.page-gambling-information-glossary__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-gambling-information-glossary__hero h1 {
  font-size: 3.5em;
  color: #FFD700; /* Gold heading */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-gambling-information-glossary__hero p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-gambling-information-glossary__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-gambling-information-glossary__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-gambling-information-glossary__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E4C; /* Dark blue text */
}

.page-gambling-information-glossary__btn--primary:hover {
  background-color: #e6c200;
}

.page-gambling-information-glossary__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
  margin-left: 20px;
}

.page-gambling-information-glossary__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E4C;
}

.page-gambling-information-glossary__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gambling-information-glossary__section:last-of-type {
  border-bottom: none;
}

.page-gambling-information-glossary__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-gambling-information-glossary__section p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gambling-information-glossary__term-card {
  background-color: #1A2E4C; /* Dark blue card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gambling-information-glossary__term-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  padding-bottom: 10px;
}

.page-gambling-information-glossary__term-card p {
  color: #E0E0E0;
  font-size: 1em;
  margin-bottom: 10px;
}

.page-gambling-information-glossary__term-card ul {
  list-style: disc;
  margin-left: 20px;
  color: #E0E0E0;
}

.page-gambling-information-glossary__term-card ul li {
  margin-bottom: 5px;
  font-size: 0.95em;
}

.page-gambling-information-glossary__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-gambling-information-glossary__term-list {
  margin-top: 30px;
}

.page-gambling-information-glossary__term-item {
  background-color: #1A2E4C;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-information-glossary__term-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-gambling-information-glossary__term-item p {
  color: #D0D0D0;
  font-size: 1em;
  margin-bottom: 10px;
}

.page-gambling-information-glossary__term-item ul {
  list-style: circle;
  margin-left: 20px;
  color: #D0D0D0;
}

.page-gambling-information-glossary__term-item ul li {
  margin-bottom: 3px;
  font-size: 0.9em;
}

.page-gambling-information-glossary__why-understand ul {
  list-style: decimal;
  margin-left: 25px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-gambling-information-glossary__why-understand ul li {
  margin-bottom: 10px;
}

.page-gambling-information-glossary__why-understand ul li strong {
  color: #FFD700;
}

.page-gambling-information-glossary__cta {
  text-align: center;
  background: linear-gradient(45deg, #1A2E4C, #0F2038);
  padding: 80px 0;
}

.page-gambling-information-glossary__cta-content {
  max-width: 900px;
}

.page-gambling-information-glossary__cta h2 {
  color: #FFD700;
  font-size: 3em;
  margin-bottom: 30px;
}

.page-gambling-information-glossary__cta p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-gambling-information-glossary__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gambling-information-glossary__hero h1 {
    font-size: 2.5em;
  }
  .page-gambling-information-glossary__hero p {
    font-size: 1em;
  }
  .page-gambling-information-glossary__section h2 {
    font-size: 2em;
  }
  .page-gambling-information-glossary__term-grid {
    grid-template-columns: 1fr;
  }
  .page-gambling-information-glossary__cta h2 {
    font-size: 2.2em;
  }
  .page-gambling-information-glossary__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-gambling-information-glossary__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-gambling-information-glossary__hero h1 {
    font-size: 2em;
  }
  .page-gambling-information-glossary__section h2 {
    font-size: 1.8em;
  }
  .page-gambling-information-glossary__term-card, .page-gambling-information-glossary__term-item {
    padding: 20px;
  }
  .page-gambling-information-glossary__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}