/* style/beginner-guide-glossary.css */
.page-beginner-guide-glossary {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey text for dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-beginner-guide-glossary__hero-section {
  background: linear-gradient(135deg, #0A192F, #1A3050);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-glossary__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-glossary__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-beginner-guide-glossary__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-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-glossary__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-beginner-guide-glossary__content-section {
  padding: 60px 0;
}

.page-beginner-guide-glossary__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-glossary__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-beginner-guide-glossary__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-beginner-guide-glossary__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-beginner-guide-glossary__list li {
  background-color: #1A2F4A; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-glossary__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

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

.page-beginner-guide-glossary__glossary-item {
  background-color: #1A2F4A;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-glossary__glossary-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-glossary__term-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-beginner-guide-glossary__term-description {
  font-size: 1em;
  color: #E0E0E0;
}

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

.page-beginner-guide-glossary__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-glossary__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-beginner-guide-glossary__cta-buttons .page-beginner-guide-glossary__cta-button {
  margin: 0 15px;
}

.page-beginner-guide-glossary__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-beginner-guide-glossary__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-beginner-guide-glossary__inline-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-glossary__inline-link:hover {
  color: #E6C200;
}

.page-beginner-guide-glossary p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-beginner-guide-glossary .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

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

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

  .page-beginner-guide-glossary__subsection-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-glossary__glossary-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-glossary__cta-buttons .page-beginner-guide-glossary__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

  .page-beginner-guide-glossary__hero-section {
    padding: 80px 0 60px;
  }

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

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

  .page-beginner-guide-glossary__subsection-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-glossary__list li {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-beginner-guide-glossary__term-title {
    font-size: 1.4em;
  }

  .page-beginner-guide-glossary__term-description {
    font-size: 0.95em;
  }
}