/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Body background is dark */
}

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

.page-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-beginner-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-beginner-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-beginner-guide__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-beginner-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-beginner-guide__btn-primary,
.page-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-beginner-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-beginner-guide__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-beginner-guide__btn-secondary:hover {
  background-color: #C30808;
  color: #ffffff;
}

.page-beginner-guide__section {
  padding: 60px 0;
}

.page-beginner-guide__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-beginner-guide__light-bg {
  background-color: #1a1a1a; /* Dark gray for contrast, still dark */
  color: #ffffff;
}

.page-beginner-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Brand color for titles */
}

.page-beginner-guide__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #017439;
}

.page-beginner-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-beginner-guide__list,
.page-beginner-guide__step-list,
.page-beginner-guide__method-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-beginner-guide__list li,
.page-beginner-guide__step-item,
.page-beginner-guide__method-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible card for list items */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #017439;
  color: #ffffff;
}

.page-beginner-guide__list li p,
.page-beginner-guide__step-item p,
.page-beginner-guide__method-item p {
  color: #f0f0f0;
}

.page-beginner-guide__step-title,
.page-beginner-guide__method-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-beginner-guide__sub-list {
  list-style: disc;
  margin-left: 20px;
  color: #f0f0f0;
}

.page-beginner-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide__feature-item.page-beginner-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Card background for dark sections */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-beginner-guide__feature-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
}

.page-beginner-guide__inline-btn {
  margin-left: 10px;
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-beginner-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide__channel-item.page-beginner-guide__card {
  background: rgba(255, 255, 255, 0.1); /* Card background for dark sections */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-beginner-guide__channel-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
}

.page-beginner-guide__channel-item .page-beginner-guide__btn-secondary {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}