/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-beginner-guide__hero {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(0,0,128,0) 70%);
  border-radius: 50%;
  animation: page-beginner-guide__pulse 5s infinite ease-in-out;
}

.page-beginner-guide__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,0,128,0.3) 0%, rgba(255,215,0,0) 70%);
  border-radius: 50%;
  animation: page-beginner-guide__pulse 5s infinite reverse ease-in-out;
}

@keyframes page-beginner-guide__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.page-beginner-guide__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-beginner-guide__hero-image {
  max-width: 400px;
  margin-top: 30px;
  z-index: 1;
}

.page-beginner-guide__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-beginner-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  white-space: nowrap;
}

.page-beginner-guide__btn--primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

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

.page-beginner-guide__btn--secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-beginner-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-beginner-guide__section:nth-of-type(even) {
  background-color: #eef4f8;
}

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

.page-beginner-guide__section-title .highlight {
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.page-beginner-guide__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
}

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

.page-beginner-guide__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-beginner-guide__feature-item:hover {
  transform: translateY(-10px);
}

.page-beginner-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.page-beginner-guide__feature-item h3 {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 15px;
}

.page-beginner-guide__feature-item p {
  color: #555;
  font-size: 0.95em;
}

.page-beginner-guide__guide-steps .page-beginner-guide__step {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-beginner-guide__step-header {
  background-color: #000080;
  color: #FFD700;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-beginner-guide__step-number {
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-beginner-guide__step-header h3 {
  font-size: 1.8em;
  margin: 0;
  color: #FFD700;
}

.page-beginner-guide__step-content {
  padding: 30px;
}

.page-beginner-guide__step-content p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.page-beginner-guide__step-image {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #eee;
}

.page-beginner-guide__tip {
  background-color: #fff9e6;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  font-style: italic;
  color: #555;
}

.page-beginner-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-beginner-guide__list li {
  background-color: #ffffff;
  border-left: 5px solid #000080;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

.page-beginner-guide__list li strong {
  color: #000080;
}

.page-beginner-guide__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide__faq-item h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-beginner-guide__faq-item p {
  color: #555;
  font-size: 1.0em;
  text-align: justify;
}

.page-beginner-guide__related-guides {
  background-color: #f8f8f8;
}

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

.page-beginner-guide__guide-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide__guide-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-beginner-guide__guide-card h3 a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide__guide-card h3 a:hover {
  color: #FFD700;
}

.page-beginner-guide__guide-card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-beginner-guide__final-cta {
  background: linear-gradient(90deg, #000080, #000066);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide__final-cta-content {
  max-width: 800px;
}

.page-beginner-guide__final-cta .page-beginner-guide__section-title {
  color: #FFD700;
}

.page-beginner-guide__final-cta .page-beginner-guide__section-title::after {
  background-color: #FFD700;
}

.page-beginner-guide__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-beginner-guide__img-responsive {
  max-width: 100%;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide__title {
    font-size: 2.8em;
  }
  .page-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-beginner-guide__hero {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero {
    padding: 60px 0;
  }
  .page-beginner-guide__title {
    font-size: 2.2em;
  }
  .page-beginner-guide__subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-beginner-guide__section {
    padding: 40px 0;
  }
  .page-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__feature-item {
    padding: 20px;
  }
  .page-beginner-guide__step-header h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide__step-content {
    padding: 20px;
  }
  .page-beginner-guide__guide-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__final-cta p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__title {
    font-size: 1.8em;
  }
  .page-beginner-guide__subtitle {
    font-size: 1em;
  }
  .page-beginner-guide__step-header h3 {
    font-size: 1.3em;
  }
  .page-beginner-guide__faq-item h3 {
    font-size: 1.3em;
  }
  .page-beginner-guide__guide-card h3 {
    font-size: 1.2em;
  }
}