.page-resources-new-player-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-resources-new-player-guide__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-new-player-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gradient,subtle_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-new-player-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-new-player-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.page-resources-new-player-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-resources-new-player-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-new-player-guide__btn--primary {
  background-color: #ffc107;
  color: #212529; /* Dark text for light background */
}

.page-resources-new-player-guide__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-new-player-guide__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources-new-player-guide__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-resources-new-player-guide__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-new-player-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-resources-new-player-guide__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-new-player-guide__section--intro {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 40px 20px;
}

.page-resources-new-player-guide__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-new-player-guide__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-resources-new-player-guide__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
  border-radius: 5px;
}

.page-resources-new-player-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new-player-guide__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-new-player-guide__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-new-player-guide__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-new-player-guide__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-new-player-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-new-player-guide__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.page-resources-new-player-guide__list li::before {
  content: '✓';
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-resources-new-player-guide__list--numbered {
  list-style: decimal;
  padding-left: 20px;
}

.page-resources-new-player-guide__list--numbered li::before {
  content: none;
}

.page-resources-new-player-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-new-player-guide__image--full-width {
  width: 100%;
}

.page-resources-new-player-guide__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  max-width: 450px;
}

.page-resources-new-player-guide__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  max-width: 450px;
}

.page-resources-new-player-guide__app-download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #e6f2ff; /* Light blue background for contrast */
  border-radius: 10px;
  border: 1px dashed #007bff;
}

.page-resources-new-player-guide__qr-code {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  border: 5px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.page-resources-new-player-guide__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.page-resources-new-player-guide__faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-new-player-guide__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-resources-new-player-guide__section--cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-new-player-guide__section--cta .page-resources-new-player-guide__section-title,
.page-resources-new-player-guide__section--cta .page-resources-new-player-guide__text {
  color: #fff;
}

.page-resources-new-player-guide__container--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-resources-new-player-guide__cta-content {
  flex: 1;
  text-align: left;
}

.page-resources-new-player-guide__cta-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-new-player-guide__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-new-player-guide__image--cta {
  flex: 0 0 400px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-new-player-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-new-player-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-new-player-guide__section-title {
    font-size: 2em;
  }
  .page-resources-new-player-guide__image--right,
  .page-resources-new-player-guide__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
  .page-resources-new-player-guide__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-new-player-guide__cta-content {
    text-align: center;
  }
  .page-resources-new-player-guide__cta-actions {
    justify-content: center;
  }
  .page-resources-new-player-guide__image--cta {
    margin-top: 40px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-resources-new-player-guide__hero {
    padding: 80px 0;
  }
  .page-resources-new-player-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-new-player-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-new-player-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-new-player-guide__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-resources-new-player-guide__section {
    padding: 40px 0;
  }
  .page-resources-new-player-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-new-player-guide__step-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-new-player-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-new-player-guide__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-resources-new-player-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-new-player-guide__text {
    font-size: 0.95em;
  }
  .page-resources-new-player-guide__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}