/* style/beginner-guide-common-terms.css */
.page-beginner-guide-common-terms {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray text for contrast on dark background */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

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

.page-beginner-guide-common-terms__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Gradient from main to slightly lighter dark blue */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-beginner-guide-common-terms__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for highlight */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide-common-terms__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #c0c0c0;
}

.page-beginner-guide-common-terms__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-common-terms__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
}

.page-beginner-guide-common-terms__cta-button:first-of-type {
  background-color: #FFD700; /* Auxiliary color for primary CTA */
  color: #0A192F; /* Dark text for contrast */
}

.page-beginner-guide-common-terms__cta-button:first-of-type:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-beginner-guide-common-terms__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color for text */
  border-color: #FFD700;
}

.page-beginner-guide-common-terms__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-beginner-guide-common-terms__content-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-beginner-guide-common-terms__content-section--alt-bg {
  background-color: #1a2a40; /* Slightly lighter dark blue for alternating sections */
}

.page-beginner-guide-common-terms__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-beginner-guide-common-terms__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #c0c0c0;
}

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

.page-beginner-guide-common-terms__term-card {
  background-color: #1a2a40; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-beginner-guide-common-terms__term-title {
  font-size: 1.6em;
  color: #FFD700; /* Auxiliary color for term titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-common-terms__term-definition {
  font-size: 1em;
  color: #e0e0e0;
}

.page-beginner-guide-common-terms__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-common-terms__cta-section {
  background-color: #FFD700; /* Auxiliary color for a strong CTA section */
  padding: 80px 0;
  text-align: center;
  color: #0A192F; /* Dark text for contrast */
}

.page-beginner-guide-common-terms__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A192F;
}

.page-beginner-guide-common-terms__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #2c3e50; /* Slightly softer dark text */
}

.page-beginner-guide-common-terms__cta-section .page-beginner-guide-common-terms__cta-button {
  background-color: #0A192F;
  color: #FFD700;
  border-color: #0A192F;
}

.page-beginner-guide-common-terms__cta-section .page-beginner-guide-common-terms__cta-button:hover {
  background-color: #2c3e50;
  color: #FFD700;
  border-color: #2c3e50;
}

.page-beginner-guide-common-terms__cta-section .page-beginner-guide-common-terms__cta-button--secondary {
  background-color: transparent;
  color: #0A192F;
  border-color: #0A192F;
}

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

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

.page-beginner-guide-common-terms__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide-common-terms__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-common-terms__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-common-terms__term-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-common-terms__hero-section {
    padding: 60px 0;
  }
  .page-beginner-guide-common-terms__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-common-terms__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-common-terms__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-common-terms__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-beginner-guide-common-terms__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-common-terms__term-card {
    padding: 20px;
  }
  .page-beginner-guide-common-terms__term-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-common-terms__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-common-terms__hero-section {
    padding: 40px 0;
  }
  .page-beginner-guide-common-terms__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-common-terms__cta-button {
    width: 90%;
  }
  .page-beginner-guide-common-terms__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-common-terms__term-grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-common-terms__cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-common-terms__cta-description {
    font-size: 1em;
  }
}