/* style/card-board-games-jj88-features.css */
.page-card-board-games-jj88-features {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0d1a2b; /* Very dark blue, almost black, for main background */
}

.page-card-board-games-jj88-features__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366 0%, #0d1a2b 100%); /* JJ88 Blue to dark blue */
  color: #FFD700; /* Glory Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-card-board-games-jj88-features__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-card-board-games-jj88-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Glory Gold */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-card-board-games-jj88-features__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #c0c0c0; /* Lighter gray for subtitle */
}

.page-card-board-games-jj88-features__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: grayscale(50%);
  z-index: 0;
}

.page-card-board-games-jj88-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-card-board-games-jj88-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-card-board-games-jj88-features__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-card-board-games-jj88-features__cta-button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-card-board-games-jj88-features__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-card-board-games-jj88-features__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-card-board-games-jj88-features__section:nth-of-type(even) {
  background-color: #1a2a40; /* Slightly lighter dark blue for alternating sections */
}

.page-card-board-games-jj88-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Glory Gold */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-card-board-games-jj88-features__section-description {
  font-size: 1.1em;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-card-board-games-jj88-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-card-board-games-jj88-features__grid-item {
  background-color: #003366; /* JJ88 Blue for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-card-board-games-jj88-features__grid-item:hover {
  transform: translateY(-10px);
}

.page-card-board-games-jj88-features__grid-image {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-card-board-games-jj88-features__item-title {
  font-size: 1.6em;
  color: #FFD700; /* Glory Gold */
  margin-bottom: 15px;
}

.page-card-board-games-jj88-features__item-text {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.7;
}

.page-card-board-games-jj88-features__text-block {
  margin-top: 40px;
  text-align: left;
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.8;
  background-color: rgba(0, 51, 102, 0.5); /* Semi-transparent JJ88 Blue */
  padding: 30px;
  border-radius: 10px;
}

.page-card-board-games-jj88-features__text-block p {
  margin-bottom: 15px;
}

.page-card-board-games-jj88-features__content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-card-board-games-jj88-features__content-row--reverse {
  flex-direction: row-reverse;
}

.page-card-board-games-jj88-features__content-text,
.page-card-board-games-jj88-features__content-image {
  flex: 1;
  min-width: 300px;
}

.page-card-board-games-jj88-features__content-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-card-board-games-jj88-features__content-text h3 {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-card-board-games-jj88-features__content-text p {
  color: #c0c0c0;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-card-board-games-jj88-features__content-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-card-board-games-jj88-features__content-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-card-board-games-jj88-features__content-text ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-card-board-games-jj88-features__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-card-board-games-jj88-features__highlight-item {
  background-color: #003366; /* JJ88 Blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-card-board-games-jj88-features__highlight-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-card-board-games-jj88-features__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-card-board-games-jj88-features__benefits-list li {
  background-color: #003366; /* JJ88 Blue */
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-card-board-games-jj88-features__benefits-list li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 20px;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.page-card-board-games-jj88-features__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-card-board-games-jj88-features__floating-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-card-board-games-jj88-features__floating-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-5px);
}

.page-card-board-games-jj88-features__floating-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-card-board-games-jj88-features__hero-title {
    font-size: 2.8em;
  }
  .page-card-board-games-jj88-features__section-title {
    font-size: 2em;
  }
  .page-card-board-games-jj88-features__content-row {
    flex-direction: column;
  }
  .page-card-board-games-jj88-features__content-row--reverse {
    flex-direction: column-reverse;
  }
  .page-card-board-games-jj88-features__content-text,
  .page-card-board-games-jj88-features__content-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-card-board-games-jj88-features__hero {
    padding: 60px 15px;
  }
  .page-card-board-games-jj88-features__hero-title {
    font-size: 2.2em;
  }
  .page-card-board-games-jj88-features__hero-subtitle {
    font-size: 1em;
  }
  .page-card-board-games-jj88-features__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-card-board-games-jj88-features__section {
    padding: 40px 15px;
  }
  .page-card-board-games-jj88-features__section-title {
    font-size: 1.8em;
  }
  .page-card-board-games-jj88-features__grid-item {
    padding: 20px;
  }
  .page-card-board-games-jj88-features__item-title {
    font-size: 1.4em;
  }
  .page-card-board-games-jj88-features__text-block {
    padding: 20px;
    font-size: 1em;
  }
  .page-card-board-games-jj88-features__floating-button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-card-board-games-jj88-features__floating-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .page-card-board-games-jj88-features__hero-title {
    font-size: 1.8em;
  }
  .page-card-board-games-jj88-features__section-title {
    font-size: 1.6em;
  }
  .page-card-board-games-jj88-features__cta-button {
    width: 100%;
    max-width: 250px;
  }
  .page-card-board-games-jj88-features__floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-card-board-games-jj88-features__floating-button span {
    display: none;
  }
  .page-card-board-games-jj88-features__floating-button {
    padding: 12px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }
}