/* style/resources-newbie-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-btn-bg: #C30808;
  --login-btn-bg: #C30808;
  --register-login-font: #FFFF00;
}

.page-resources-newbie-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff;
}

.page-resources-newbie-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-resources-newbie-guide__heading {
  text-align: center;
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.page-resources-newbie-guide__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-newbie-guide__content-block {
  text-align: justify;
  margin-top: 20px;
}

.page-resources-newbie-guide__content-block p {
  margin-bottom: 15px;
}

.page-resources-newbie-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #a8e063 100%); /* Lighter green gradient */
  color: var(--secondary-color);
  overflow: hidden;
}

.page-resources-newbie-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-newbie-guide__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.page-resources-newbie-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-newbie-guide__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-newbie-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--secondary-color);
}

.page-resources-newbie-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-newbie-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-newbie-guide__btn-register {
  background: var(--register-btn-bg);
  color: var(--register-login-font);
}

.page-resources-newbie-guide__btn-register:hover {
  background: #a30606; /* Darker red */
}

.page-resources-newbie-guide__btn-login {
  background: var(--login-btn-bg);
  color: var(--register-login-font);
}

.page-resources-newbie-guide__btn-login:hover {
  background: #a30606; /* Darker red */
}

.page-resources-newbie-guide__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-newbie-guide__btn-primary:hover {
  background: #005c2e; /* Darker green */
}

.page-resources-newbie-guide__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.page-resources-newbie-guide__btn-secondary:hover {
  background: #f0f0f0;
  color: #005c2e; /* Darker green */
}

.page-resources-newbie-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-newbie-guide__step-list,
.page-resources-newbie-guide__game-list,
.page-resources-newbie-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-newbie-guide__step-item,
.page-resources-newbie-guide__game-item,
.page-resources-newbie-guide__promo-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-newbie-guide__step-item:hover,
.page-resources-newbie-guide__game-item:hover,
.page-resources-newbie-guide__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}