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

.page-newbie-guide-first-deposit__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-first-deposit__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background: linear-gradient(135deg, #1A237E 0%, #3f47a1 100%); /* Dark indigo gradient */
  color: #FFFFFF; /* White text on dark background */
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}

.page-newbie-guide-first-deposit__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-newbie-guide-first-deposit__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-newbie-guide-first-deposit__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Light grey for subtitle */
}

.page-newbie-guide-first-deposit__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-newbie-guide-first-deposit__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-newbie-guide-first-deposit__section--intro {
  background-color: #fefefe;
}

.page-newbie-guide-first-deposit__section--steps {
  background-color: #f0f4f7;
}

.page-newbie-guide-first-deposit__section--methods {
  background-color: #ffffff;
}

.page-newbie-guide-first-deposit__section--bonuses {
  background-color: #f0f4f7;
}

.page-newbie-guide-first-deposit__section--faq {
  background-color: #ffffff;
}

.page-newbie-guide-first-deposit__section--cta {
  background: linear-gradient(90deg, #1A237E, #3f47a1);
  color: #FFFFFF;
  text-align: center;
}

.page-newbie-guide-first-deposit__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Dark indigo for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-newbie-guide-first-deposit__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-newbie-guide-first-deposit__section--cta .page-newbie-guide-first-deposit__section-title {
  color: #FFD700; /* Gold for CTA title */
}

.page-newbie-guide-first-deposit__section--cta .page-newbie-guide-first-deposit__section-title::after {
  background-color: #FFFFFF; /* White underline for CTA */
}

.page-newbie-guide-first-deposit__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444; /* Slightly lighter than dark indigo for readability */
  text-align: left;
}

.page-newbie-guide-first-deposit__section--cta .page-newbie-guide-first-deposit__text {
  color: #e0e0e0;
}

.page-newbie-guide-first-deposit__text--note {
  font-style: italic;
  color: #1A237E;
  text-align: center;
  margin-top: 30px;
}

.page-newbie-guide-first-deposit__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-newbie-guide-first-deposit__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #1A237E; /* Dark indigo accent */
}

.page-newbie-guide-first-deposit__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-newbie-guide-first-deposit__step-title {
  font-size: 1.5em;
  color: #1A237E; /* Dark indigo for step titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-newbie-guide-first-deposit__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-newbie-guide-first-deposit__list-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: border-color 0.3s ease;
}

.page-newbie-guide-first-deposit__list-item:hover {
  border-color: #FFD700; /* Gold border on hover */
}

.page-newbie-guide-first-deposit__list-title {
  font-size: 1.4em;
  color: #1A237E; /* Dark indigo for list titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-newbie-guide-first-deposit__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-newbie-guide-first-deposit__bonus-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold accent */
  transition: all 0.3s ease;
}

.page-newbie-guide-first-deposit__bonus-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-newbie-guide-first-deposit__bonus-title {
  font-size: 1.6em;
  color: #1A237E; /* Dark indigo for bonus titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-newbie-guide-first-deposit__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__faq-question {
  font-size: 1.25em;
  color: #1A237E; /* Dark indigo for FAQ questions */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-newbie-guide-first-deposit__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-newbie-guide-first-deposit__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text */
  margin-right: 15px;
}

.page-newbie-guide-first-deposit__btn--primary:hover {
  background-color: #e5c100; /* Darker gold on hover */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-newbie-guide-first-deposit__btn--secondary {
  background-color: #1A237E; /* Dark indigo button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-newbie-guide-first-deposit__btn--secondary:hover {
  background-color: #0f165a; /* Darker indigo on hover */
  border-color: #e5c100;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.page-newbie-guide-first-deposit__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-newbie-guide-first-deposit__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-first-deposit__responsible-gaming {
  background-color: #1A237E;
  color: #FFFFFF;
  padding: 40px 0;
  text-align: center;
  margin-top: 20px;
  border-radius: 8px;
}

.page-newbie-guide-first-deposit__responsible-gaming-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-newbie-guide-first-deposit__responsible-gaming .page-newbie-guide-first-deposit__text {
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-newbie-guide-first-deposit__hero {
    min-height: 350px;
    padding: 40px 15px;
  }

  .page-newbie-guide-first-deposit__hero-title {
    font-size: 2.5em;
  }

  .page-newbie-guide-first-deposit__hero-subtitle {
    font-size: 1.2em;
  }

  .page-newbie-guide-first-deposit__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-newbie-guide-first-deposit__text {
    font-size: 1em;
  }

  .page-newbie-guide-first-deposit__steps-grid,
  .page-newbie-guide-first-deposit__list,
  .page-newbie-guide-first-deposit__bonus-grid {
    grid-template-columns: 1fr;
  }

  .page-newbie-guide-first-deposit__step-item,
  .page-newbie-guide-first-deposit__list-item,
  .page-newbie-guide-first-deposit__bonus-item {
    padding: 25px;
  }

  .page-newbie-guide-first-deposit__btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-newbie-guide-first-deposit__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide-first-deposit__hero-title {
    font-size: 2em;
  }

  .page-newbie-guide-first-deposit__hero-subtitle {
    font-size: 1em;
  }

  .page-newbie-guide-first-deposit__section-title {
    font-size: 1.8em;
  }

  .page-newbie-guide-first-deposit__step-title,
  .page-newbie-guide-first-deposit__list-title,
  .page-newbie-guide-first-deposit__bonus-title,
  .page-newbie-guide-first-deposit__faq-question {
    font-size: 1.3em;
  }

  .page-newbie-guide-first-deposit__responsible-gaming-title {
    font-size: 1.6em;
  }
}