/* style/game-types-poker.css */
.page-game-types-poker {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #000000; /* Deep black for main background */
}

.page-game-types-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-poker__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-poker__section:nth-child(even) {
  background-color: #1a237e; /* Main color for alternating sections */
}

.page-game-types-poker__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #000000 100%);
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-game-types-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Accent color for main title */
}

.page-game-types-poker__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-game-types-poker__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #1A237E; /* Main color for text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-game-types-poker__cta-button:hover {
  background-color: #e5c100; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

.page-game-types-poker__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-types-poker__section-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #FFD700; /* Accent color for section titles */
  font-weight: bold;
}

.page-game-types-poker__highlight-text {
  color: #FFD700;
}

.page-game-types-poker__about-clb88 {
  background-color: #000000;
  padding-bottom: 100px;
}

.page-game-types-poker__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-poker__feature-item {
  background-color: #1a237e; /* Main color for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-types-poker__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-types-poker__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-game-types-poker__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-game-types-poker__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-game-types-poker__game-types {
  background-color: #000000;
}

.page-game-types-poker__game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #1a237e; /* Main color for game cards */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
  padding: 30px;
}

.page-game-types-poker__game-card--reverse {
  flex-direction: row-reverse;
}

.page-game-types-poker__game-image {
  width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker__game-content {
  width: 55%;
  padding: 20px 0;
}

.page-game-types-poker__game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-poker__game-description {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-game-types-poker__game-button {
  background-color: #FFD700;
  color: #1A237E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-types-poker__game-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-game-types-poker__strategies {
  background-color: #1a237e;
  padding-bottom: 100px;
}

.page-game-types-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-types-poker__strategy-item {
  background-color: #000000; /* Darker background for strategy items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-types-poker__strategy-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-game-types-poker__strategy-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-game-types-poker__strategy-text {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-game-types-poker__cta-register {
  background-color: #000000;
}

.page-game-types-poker__description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-game-types-poker__register-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 600px;
  text-align: left;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-game-types-poker__register-steps li {
  background-color: #1a237e;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 45px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-poker__register-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A237E;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-game-types-poker__internal-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-types-poker__internal-link:hover {
  text-decoration: underline;
}

.page-game-types-poker__app-download {
  background-color: #1a237e;
}

.page-game-types-poker__app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-game-types-poker__app-content {
  flex: 1;
}

.page-game-types-poker__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-types-poker__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-poker__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-game-types-poker__app-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.page-game-types-poker__app-features li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-game-types-poker__faq {
  background-color: #000000;
}

.page-game-types-poker__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-game-types-poker__faq-item {
  background-color: #1a237e;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer; /* To indicate it's clickable for accordion behavior */
}

.page-game-types-poker__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-game-types-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-types-poker__faq-item.active .page-game-types-poker__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-types-poker__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-types-poker__faq-item.active .page-game-types-poker__faq-answer {
  max-height: 200px; /* Adjust as needed for content length */
  margin-top: 15px;
}

.page-game-types-poker__final-cta {
  background-color: #000000;
  padding-bottom: 100px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-poker__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-poker__section-title {
    font-size: 2.2em;
  }
  .page-game-types-poker__game-card {
    flex-direction: column;
    text-align: center;
  }
  .page-game-types-poker__game-card--reverse {
    flex-direction: column;
  }
  .page-game-types-poker__game-image,
  .page-game-types-poker__game-content {
    width: 100%;
  }
  .page-game-types-poker__app-flex {
    flex-direction: column;
  }
  .page-game-types-poker__app-content,
  .page-game-types-poker__app-image-wrapper {
    text-align: center;
  }
  .page-game-types-poker__app-features {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-game-types-poker__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-poker__section-title {
    font-size: 1.8em;
  }
  .page-game-types-poker__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-poker__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-types-poker__game-title {
    font-size: 1.6em;
  }
  .page-game-types-poker__game-description,
  .page-game-types-poker__description,
  .page-game-types-poker__feature-text,
  .page-game-types-poker__strategy-text,
  .page-game-types-poker__register-steps li,
  .page-game-types-poker__app-features li,
  .page-game-types-poker__faq-answer {
    font-size: 0.95em;
  }
  .page-game-types-poker__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-types-poker__hero-section,
  .page-game-types-poker__section {
    padding: 60px 0;
  }
  .page-game-types-poker__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-poker__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-game-types-poker__features-grid,
  .page-game-types-poker__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-poker__game-card {
    padding: 20px;
  }
  .page-game-types-poker__game-image {
    width: 90%;
  }
  .page-game-types-poker__register-steps li {
    padding-left: 35px;
  }
  .page-game-types-poker__register-steps li::before {
    width: 20px;
    height: 20px;
    font-size: 0.8em;
    left: 10px;
  }
}