/* style/card-poker-new-games.css */
.page-card-poker-new-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-card-poker-new-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-card-poker-new-games__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A6D 100%); /* Gradient background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-card-poker-new-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-card-poker-new-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-card-poker-new-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-card-poker-new-games__hero-subtitle {
  font-size: 1.3em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-card-poker-new-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-card-poker-new-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-card-poker-new-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-card-poker-new-games__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-card-poker-new-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-card-poker-new-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-card-poker-new-games__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-card-poker-new-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-card-poker-new-games__section:nth-of-type(even) {
  background-color: #0E203B; /* Slightly lighter dark blue */
}

.page-card-poker-new-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-card-poker-new-games__section-description {
  font-size: 1.15em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-card-poker-new-games__text {
  font-size: 1.05em;
  color: #D0D0D0;
  max-width: 900px;
  margin: 20px auto;
  text-align: left;
}

.page-card-poker-new-games__feature-grid, .page-card-poker-new-games__category-grid, .page-card-poker-new-games__promo-grid, .page-card-poker-new-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-card-poker-new-games__feature-item, .page-card-poker-new-games__category-item, .page-card-poker-new-games__promo-item, .page-card-poker-new-games__step-item {
  background-color: #1A2F4A; /* Darker blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-card-poker-new-games__feature-item:hover, .page-card-poker-new-games__category-item:hover, .page-card-poker-new-games__promo-item:hover, .page-card-poker-new-games__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-card-poker-new-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-card-poker-new-games__feature-title, .page-card-poker-new-games__category-title, .page-card-poker-new-games__promo-title, .page-card-poker-new-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-card-poker-new-games__feature-text, .page-card-poker-new-games__category-text, .page-card-poker-new-games__promo-text, .page-card-poker-new-games__step-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-card-poker-new-games__category-image, .page-card-poker-new-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-card-poker-new-games__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.page-card-poker-new-games__app-download {
  background-color: #0E203B;
  padding: 100px 0;
}

.page-card-poker-new-games__app-download .page-card-poker-new-games__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 40px;
}

.page-card-poker-new-games__app-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-card-poker-new-games__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-card-poker-new-games__app-mockup {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.page-card-poker-new-games__app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-card-poker-new-games__btn--app-store, .page-card-poker-new-games__btn--google-play {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #2E4A6F; /* Medium dark blue */
  color: #FFFFFF;
  border: 1px solid #4A6E9B;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1em;
}

.page-card-poker-new-games__btn--app-store:hover, .page-card-poker-new-games__btn--google-play:hover {
  background-color: #3B5D8F;
  transform: translateY(-3px);
}

.page-card-poker-new-games__app-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.page-card-poker-new-games__responsible-gaming {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-card-poker-new-games__faq {
  background-color: #0E203B;
  padding-bottom: 100px;
}

.page-card-poker-new-games__accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-card-poker-new-games__accordion-item {
  background-color: #1A2F4A;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-card-poker-new-games__accordion-header {
  width: 100%;
  background-color: #2E4A6F; /* Medium dark blue for header */
  color: #FFD700;
  padding: 20px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-card-poker-new-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-card-poker-new-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-card-poker-new-games__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-card-poker-new-games__accordion-content p {
  padding: 15px 0;
  color: #C0C0C0;
  font-size: 1em;
}

.page-card-poker-new-games__accordion-header.active + .page-card-poker-new-games__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-card-poker-new-games__hero-title {
    font-size: 2.8em;
  }
  .page-card-poker-new-games__section-title {
    font-size: 2.2em;
  }
  .page-card-poker-new-games__feature-grid, .page-card-poker-new-games__category-grid, .page-card-poker-new-games__promo-grid, .page-card-poker-new-games__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-card-poker-new-games__app-download .page-card-poker-new-games__container {
    flex-direction: column;
    text-align: center;
  }
  .page-card-poker-new-games__app-content {
    max-width: 100%;
  }
  .page-card-poker-new-games__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-card-poker-new-games__hero-title {
    font-size: 2.2em;
  }
  .page-card-poker-new-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-card-poker-new-games__section-title {
    font-size: 1.8em;
  }
  .page-card-poker-new-games__section-description {
    font-size: 1em;
  }
  .page-card-poker-new-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-card-poker-new-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-card-poker-new-games__feature-grid, .page-card-poker-new-games__category-grid, .page-card-poker-new-games__promo-grid, .page-card-poker-new-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-card-poker-new-games__section {
    padding: 60px 0;
  }
  .page-card-poker-new-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-card-poker-new-games__accordion-content p {
    padding: 10px 0;
  }
}