/* style/index-beginner-guide.css */
.page-index-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0F1D36; /* Darker background */
}

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

.page-index-beginner-guide__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1D36 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-beginner-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-beginner-guide__hero > .page-index-beginner-guide__container {
  position: relative;
  z-index: 1;
}

.page-index-beginner-guide__hero-title {
  font-size: 3.5em;
  color: #FF8C00; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-beginner-guide__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-index-beginner-guide__hero-actions .page-index-beginner-guide__btn {
  margin: 0 15px;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.page-index-beginner-guide__btn--primary {
  background-color: #FF8C00;
  color: #1A2B4C;
  border: 2px solid #FF8C00;
}

.page-index-beginner-guide__btn--primary:hover {
  background-color: #E57A00;
  border-color: #E57A00;
  transform: translateY(-3px);
}

.page-index-beginner-guide__btn--secondary {
  background-color: transparent;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}

.page-index-beginner-guide__btn--secondary:hover {
  background-color: #FF8C00;
  color: #1A2B4C;
  transform: translateY(-3px);
}

.page-index-beginner-guide__section {
  padding: 60px 0;
  background-color: #1A2B4C;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-guide__section:nth-of-type(odd) {
  background-color: #14243F;
}

.page-index-beginner-guide__section-title {
  font-size: 2.5em;
  color: #FF8C00;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-beginner-guide__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

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

.page-index-beginner-guide__intro-item {
  background-color: #0F1D36;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-beginner-guide__intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-beginner-guide__intro-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FF8C00);
}

.page-index-beginner-guide__intro-item h3 {
  font-size: 1.6em;
  color: #FF8C00;
  margin-bottom: 15px;
}

.page-index-beginner-guide__intro-item p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-index-beginner-guide__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-index-beginner-guide__step-card {
  background-color: #0F1D36;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-beginner-guide__step-card h3 {
  font-size: 2em;
  color: #FF8C00;
  margin-bottom: 25px;
}

.page-index-beginner-guide__step-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-guide__step-card p {
  font-size: 1.1em;
  color: #B0B0B0;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.page-index-beginner-guide__step-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.page-index-beginner-guide__step-card ul li {
  background-color: #1A2B4C;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1em;
  color: #E0E0E0;
  border-left: 4px solid #FF8C00;
}

.page-index-beginner-guide__step-card ul li strong {
  color: #FF8C00;
}

.page-index-beginner-guide__btn--link {
  background-color: #FF8C00;
  color: #1A2B4C;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-index-beginner-guide__btn--link:hover {
  background-color: #E57A00;
}

.page-index-beginner-guide__tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-beginner-guide__tip-list li {
  background-color: #0F1D36;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FF8C00;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__tip-list li strong {
  color: #FF8C00;
}

.page-index-beginner-guide__faq-item {
  background-color: #0F1D36;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.page-index-beginner-guide__faq-question {
  font-size: 1.5em;
  color: #FF8C00;
  margin-bottom: 10px;
}

.page-index-beginner-guide__faq-answer {
  font-size: 1.1em;
  color: #B0B0B0;
  line-height: 1.7;
}

.page-index-beginner-guide__section--cta {
  text-align: center;
  background: linear-gradient(135deg, #FF8C00 0%, #E57A00 100%);
  padding: 80px 0;
  border-radius: 10px;
}

.page-index-beginner-guide__section--cta .page-index-beginner-guide__section-title {
  color: #1A2B4C;
}

.page-index-beginner-guide__section--cta .page-index-beginner-guide__section-description {
  color: #1A2B4C;
  margin-bottom: 40px;
}

.page-index-beginner-guide__section--cta .page-index-beginner-guide__btn--primary {
  background-color: #1A2B4C;
  color: #FF8C00;
  border-color: #1A2B4C;
}

.page-index-beginner-guide__section--cta .page-index-beginner-guide__btn--primary:hover {
  background-color: #0F1D36;
  border-color: #0F1D36;
  color: #FF8C00;
}

/* Floating Ad Styles */
.page-index-beginner-guide__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #1A2B4C;
  border: 2px solid #FF8C00;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none; /* Hidden by default, shown by JS */
  animation: page-index-beginner-guide__fadeInUp 0.5s ease-out forwards;
}

.page-index-beginner-guide__floating-ad-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #FF8C00;
  font-size: 1.5em;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

.page-index-beginner-guide__floating-ad-close-btn:hover {
  color: #E57A00;
}

.page-index-beginner-guide__floating-ad-title {
  font-size: 1.6em;
  color: #FF8C00;
  margin-bottom: 10px;
  text-align: center;
}

.page-index-beginner-guide__floating-ad-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-beginner-guide__floating-ad-text strong {
  color: #FF8C00;
}

.page-index-beginner-guide__floating-ad-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FF8C00;
  color: #1A2B4C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-beginner-guide__floating-ad-btn:hover {
  background-color: #E57A00;
}

@keyframes page-index-beginner-guide__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-beginner-guide__hero-title {
    font-size: 2.8em;
  }
  .page-index-beginner-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-index-beginner-guide__intro-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-beginner-guide__floating-ad {
    width: 280px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-beginner-guide__hero {
    padding: 80px 0;
  }
  .page-index-beginner-guide__hero-title {
    font-size: 2.2em;
  }
  .page-index-beginner-guide__hero-actions .page-index-beginner-guide__btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-index-beginner-guide__section {
    padding: 40px 0;
  }
  .page-index-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-index-beginner-guide__step-card {
    padding: 30px;
  }
  .page-index-beginner-guide__step-card h3 {
    font-size: 1.6em;
  }
  .page-index-beginner-guide__step-card p,
  .page-index-beginner-guide__step-card ul li {
    font-size: 0.95em;
  }
  .page-index-beginner-guide__floating-ad {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 10px;
  }
}