/* style/blog-how-to-choose-your-nn777-game.css */

/* Base styles for the page */
.page-blog-how-to-choose-your-nn777-game {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: var(--background-color, #0A0A0A); /* Inherit from shared, fallback to #0A0A0A */
}

.page-blog-how-to-choose-your-nn777-game__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-your-nn777-game__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-blog-how-to-choose-your-nn777-game__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-your-nn777-game__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-your-nn777-game__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-your-nn777-game__list-item {
  margin-bottom: 10px;
}

/* Hero Section */
.page-blog-how-to-choose-your-nn777-game__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Decorative top padding, body handles header offset */
  box-sizing: border-box;
  background-color: #0A0A0A; /* Background color */
  overflow: hidden;
}

.page-blog-how-to-choose-your-nn777-game__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-your-nn777-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-how-to-choose-your-nn777-game__hero-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-how-to-choose-your-nn777-game__hero-title {
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(2.2em, 4vw, 3.2em); /* H1 font-size clamp */
}

.page-blog-how-to-choose-your-nn777-game__hero-description {
  font-size: 1.2em;
  color: #FFD36B; /* Accent color */
  margin-bottom: 30px;
}

.page-blog-how-to-choose-your-nn777-game__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-how-to-choose-your-nn777-game__btn-primary,
.page-blog-how-to-choose-your-nn777-game__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
}

.page-blog-how-to-choose-your-nn777-game__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-choose-your-nn777-game__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-choose-your-nn777-game__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color */
}

.page-blog-how-to-choose-your-nn777-game__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Category Cards Grid */
.page-blog-how-to-choose-your-nn777-game__game-categories-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Background color */
}

.page-blog-how-to-choose-your-nn777-game__category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-your-nn777-game__category-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #3A2A12; /* Border color */
}

.page-blog-how-to-choose-your-nn777-game__card-title {
  font-size: 1.8em;
  color: #FFD36B; /* Accent color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-how-to-choose-your-nn777-game__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-your-nn777-game__card-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Factors Section */
.page-blog-how-to-choose-your-nn777-game__factors-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0A0A0A; /* Background color */
}

.page-blog-how-to-choose-your-nn777-game__factor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-choose-your-nn777-game__factor-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #3A2A12; /* Border color */
}

/* Responsible Gaming Section */
.page-blog-how-to-choose-your-nn777-game__responsible-gaming-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #111111; /* Card BG for darker section */
}

.page-blog-how-to-choose-your-nn777-game__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
}

/* FAQ Section */
.page-blog-how-to-choose-your-nn777-game__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #111111; /* Card BG for darker section */
}

.page-blog-how-to-choose-your-nn777-game__faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-how-to-choose-your-nn777-game__faq-item {
  background: #0A0A0A; /* Background color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}