/* style/new-user-guide.css */

:root {
  --fb777-primary: #F2C14E;
  --fb777-secondary: #FFD36B;
  --fb777-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --fb777-card-bg: #111111;
  --fb777-background: #0A0A0A;
  --fb777-text-main: #FFF6D6;
  --fb777-border: #3A2A12;
  --fb777-glow: #FFD36B;
}

.page-new-user-guide {
  background-color: var(--fb777-background);
  color: var(--fb777-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-new-user-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: var(--fb777-background);
  position: relative;
  overflow: hidden;
}

.page-new-user-guide__hero-content {
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-new-user-guide__main-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  color: var(--fb777-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-new-user-guide__lead-text {
  font-size: 1.2em;
  color: var(--fb777-text-main);
  margin-bottom: 30px;
}

.page-new-user-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.4);
  z-index: 1;
  position: relative; /* Ensure it respects document flow and doesn't overlap text */
  margin-top: 20px;
}

.page-new-user-guide__section-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: var(--fb777-primary);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-new-user-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--fb777-text-main);
}

.page-new-user-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-new-user-guide__btn-primary,
.page-new-user-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-new-user-guide__btn-primary {
  background: var(--fb777-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-new-user-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-new-user-guide__btn-secondary {
  background: transparent;
  color: var(--fb777-primary);
  border: 2px solid var(--fb777-primary);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-new-user-guide__btn-secondary:hover {
  background: var(--fb777-primary);
  color: var(--fb777-background);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.4);
}

.page-new-user-guide__btn-text-link {
  color: var(--fb777-secondary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.page-new-user-guide__btn-text-link:hover {
  color: var(--fb777-primary);
  text-decoration: underline;
}

.page-new-user-guide__card {
  background-color: var(--fb777-card-bg);
  border: 1px solid var(--fb777-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--fb777-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-new-user-guide__dark-bg {
  background-color: var(--fb777-background);
  color: var(--fb777-text-main);
}

.page-new-user-guide__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: var(--fb777-text-main);
}

.page-new-user-guide__content-section {
  padding: 80px 0;
}

.page-new-user-guide__text-block {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}