/* style/gambling-glossary-terms-m-o.css */
.page-gambling-glossary-terms-m-o {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

.page-gambling-glossary-terms-m-o__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gambling-glossary-terms-m-o__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-gambling-glossary-terms-m-o__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-glossary-terms-m-o__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-gambling-glossary-terms-m-o__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gambling-glossary-terms-m-o__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gambling-glossary-terms-m-o__glossary-content {
  padding: 60px 0;
}

.page-gambling-glossary-terms-m-o__intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1em;
  color: #CCCCCC;
}

.page-gambling-glossary-terms-m-o__intro p {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-gambling-glossary-terms-m-o__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-glossary-terms-m-o__term-category {
  margin-bottom: 80px;
}

.page-gambling-glossary-terms-m-o__category-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for category titles */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-glossary-terms-m-o__term-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gambling-glossary-terms-m-o__term-item {
  background-color: #1A2E44; /* Slightly lighter dark blue for term cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-glossary-terms-m-o__term-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gambling-glossary-terms-m-o__term-name {
  font-size: 1.8em;
  color: #FFD700; /* Gold for term names */
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gambling-glossary-terms-m-o__term-definition {
  font-size: 1.05em;
  color: #CCCCCC;
}

.page-gambling-glossary-terms-m-o__image-responsive {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 60px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-glossary-terms-m-o__cta-section {
  text-align: center;
  background-color: #1A2E44;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gambling-glossary-terms-m-o__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gambling-glossary-terms-m-o__cta-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-glossary-terms-m-o__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-gambling-glossary-terms-m-o__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-gambling-glossary-terms-m-o__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-gambling-glossary-terms-m-o__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gambling-glossary-terms-m-o__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-gambling-glossary-terms-m-o__related-content {
  padding: 80px 0;
  text-align: center;
  background-color: #0A192F;
}

.page-gambling-glossary-terms-m-o__related-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
}

.page-gambling-glossary-terms-m-o__related-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-gambling-glossary-terms-m-o__related-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  padding: 12px 25px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gambling-glossary-terms-m-o__related-link:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gambling-glossary-terms-m-o__hero-title {
    font-size: 3em;
  }
  .page-gambling-glossary-terms-m-o__hero-subtitle {
    font-size: 1.3em;
  }
  .page-gambling-glossary-terms-m-o__category-title {
    font-size: 2.2em;
  }
  .page-gambling-glossary-terms-m-o__term-name {
    font-size: 1.6em;
  }
  .page-gambling-glossary-terms-m-o__cta-title {
    font-size: 2.4em;
  }
  .page-gambling-glossary-terms-m-o__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-gambling-glossary-terms-m-o__hero-section {
    padding: 80px 0;
  }
  .page-gambling-glossary-terms-m-o__hero-title {
    font-size: 2.5em;
  }
  .page-gambling-glossary-terms-m-o__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gambling-glossary-terms-m-o__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gambling-glossary-terms-m-o__term-list {
    grid-template-columns: 1fr;
  }
  .page-gambling-glossary-terms-m-o__category-title {
    font-size: 2em;
  }
  .page-gambling-glossary-terms-m-o__term-name {
    font-size: 1.5em;
  }
  .page-gambling-glossary-terms-m-o__cta-title {
    font-size: 2em;
  }
  .page-gambling-glossary-terms-m-o__cta-text {
    font-size: 1em;
  }
  .page-gambling-glossary-terms-m-o__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gambling-glossary-terms-m-o__related-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-gambling-glossary-terms-m-o__hero-section {
    padding: 60px 0;
  }
  .page-gambling-glossary-terms-m-o__hero-title {
    font-size: 2em;
  }
  .page-gambling-glossary-terms-m-o__hero-subtitle {
    font-size: 0.9em;
  }
  .page-gambling-glossary-terms-m-o__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gambling-glossary-terms-m-o__category-title {
    font-size: 1.8em;
  }
  .page-gambling-glossary-terms-m-o__term-name {
    font-size: 1.3em;
  }
  .page-gambling-glossary-terms-m-o__cta-title {
    font-size: 1.8em;
  }
  .page-gambling-glossary-terms-m-o__cta-text {
    font-size: 0.9em;
  }
}