/* style/card-poker-game-lobby.css */
.page-card-poker-game-lobby {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
  line-height: 1.6;
}

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

.page-card-poker-game-lobby__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card-poker-game-lobby__hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-card-poker-game-lobby__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-card-poker-lobby__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-card-poker-game-lobby__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-card-poker-game-lobby__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-card-poker-game-lobby__section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-card-poker-game-lobby__section:nth-of-type(even) {
  background-color: #1a2a47;
}

.page-card-poker-game-lobby__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-card-poker-game-lobby__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #E0E0E0;
}

.page-card-poker-game-lobby__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-card-poker-game-lobby__game-card {
  background-color: #1a2a47; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2d3e5a;
}

.page-card-poker-game-lobby__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-card-poker-game-lobby__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #2d3e5a;
}

.page-card-poker-game-lobby__game-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for game titles */
  margin: 20px 15px 10px;
}

.page-card-poker-game-lobby__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 15px 20px;
}

.page-card-poker-game-lobby__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-card-poker-game-lobby__game-button:hover {
  background-color: #e6c200;
}

.page-card-poker-game-lobby__feature-list, .page-card-poker-game-lobby__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-card-poker-game-lobby__feature-list li, .page-card-poker-game-lobby__tip-list li {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2d3e5a;
  position: relative;
}

.page-card-poker-game-lobby__feature-title, .page-card-poker-game-lobby__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-card-poker-game-lobby__feature-list li p, .page-card-poker-game-lobby__tip-list li p {
  font-size: 1em;
  color: #CCCCCC;
  text-align: left;
}

.page-card-poker-game-lobby__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-card-poker-game-lobby__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-card-poker-game-lobby__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-card-poker-game-lobby__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-card-poker-game-lobby__steps-list li {
  background-color: #1a2a47;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  border: 1px solid #2d3e5a;
}

.page-card-poker-game-lobby__steps-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  background-color: #FFD700;
  color: #0A1931;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-card-poker-game-lobby__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-card-poker-game-lobby__steps-list li p {
  color: #CCCCCC;
  font-size: 1em;
  text-align: left;
}

.page-card-poker-game-lobby__faq-item {
  background-color: #1a2a47;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2d3e5a;
}

.page-card-poker-game-lobby__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-card-poker-game-lobby__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-card-poker-game-lobby__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-card-poker-game-lobby__faq-answer {
  color: #CCCCCC;
  font-size: 1em;
  margin-top: 0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #2d3e5a;
}

.page-card-poker-game-lobby__faq-answer.active {
  display: block;
}

.page-card-poker-game-lobby__faq-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-card-poker-game-lobby__cta-bottom {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card-poker-game-lobby__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-card-poker-game-lobby__cta-text {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-card-poker-game-lobby__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-card-poker-game-lobby__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-card-poker-game-lobby__main-title {
    font-size: 3em;
  }
  .page-card-poker-game-lobby__section-title {
    font-size: 2.2em;
  }
  .page-card-poker-game-lobby__cta-title {
    font-size: 2.5em;
  }
  .page-card-poker-game-lobby__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-card-poker-game-lobby__feature-list, .page-card-poker-game-lobby__tip-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-card-poker-game-lobby__hero-section {
    padding: 60px 0 30px;
  }
  .page-card-poker-game-lobby__main-title {
    font-size: 2.5em;
  }
  .page-card-poker-lobby__subtitle {
    font-size: 1.1em;
  }
  .page-card-poker-game-lobby__section {
    padding: 40px 0;
  }
  .page-card-poker-game-lobby__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-card-poker-game-lobby__text {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-card-poker-game-lobby__game-card {
    margin-bottom: 20px;
  }
  .page-card-poker-game-lobby__feature-list, .page-card-poker-game-lobby__tip-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-card-poker-game-lobby__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-card-poker-game-lobby__steps-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-card-poker-game-lobby__step-title {
    text-align: center;
  }
  .page-card-poker-game-lobby__faq-question {
    font-size: 1.3em;
  }
  .page-card-poker-game-lobby__cta-bottom {
    padding: 60px 0;
  }
  .page-card-poker-game-lobby__cta-title {
    font-size: 2em;
  }
  .page-card-poker-game-lobby__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-card-poker-game-lobby__main-title {
    font-size: 2em;
  }
  .page-card-poker-game-lobby__subtitle {
    font-size: 0.9em;
  }
  .page-card-poker-game-lobby__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-card-poker-game-lobby__section-title {
    font-size: 1.8em;
  }
  .page-card-poker-game-lobby__game-title {
    font-size: 1.5em;
  }
  .page-card-poker-game-lobby__game-description {
    font-size: 0.85em;
  }
  .page-card-poker-game-lobby__feature-title, .page-card-poker-game-lobby__tip-title {
    font-size: 1.4em;
  }
  .page-card-poker-game-lobby__step-title {
    font-size: 1.4em;
  }
  .page-card-poker-game-lobby__faq-question {
    font-size: 1.1em;
  }
  .page-card-poker-game-lobby__cta-title {
    font-size: 1.8em;
  }
  .page-card-poker-game-lobby__cta-text {
    font-size: 1em;
  }
  .page-card-poker-game-lobby__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}