/* style/games-poker.css */
.page-games-poker {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5;
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-games-poker__highlight-text {
  color: #E6B325;
}

.page-games-poker__section-title {
  font-size: 2.8em;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-games-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E6B325;
  border-radius: 2px;
}

.page-games-poker__section-subtitle {
  font-size: 1.2em;
  color: #ccc;
  text-align: center;
  margin-bottom: 60px;
}

/* Buttons */
.page-games-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 1em;
}

.page-games-poker__btn--primary {
  background-color: #E6B325;
  color: #0A1931;
  border: 2px solid #E6B325;
}

.page-games-poker__btn--primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.page-games-poker__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-games-poker__btn--secondary:hover {
  background-color: #E6B325;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-games-poker__btn--outline {
  background-color: transparent;
  color: #E6B325;
  border: 1px solid #E6B325;
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-games-poker__btn--outline:hover {
  background-color: #E6B325;
  color: #0A1931;
}

.page-games-poker__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-games-poker__text-link {
  color: #E6B325;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-games-poker__text-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* Hero Section */
.page-games-poker__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-poker__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(230, 179, 37, 0.1);
  border-radius: 50%;
  animation: page-games-poker__float1 10s infinite ease-in-out;
}

.page-games-poker__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(230, 179, 37, 0.15);
  border-radius: 50%;
  animation: page-games-poker__float2 12s infinite ease-in-out;
}

@keyframes page-games-poker__float1 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes page-games-poker__float2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
  100% { transform: translate(0, 0); }
}

.page-games-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #f5f5f5;
  line-height: 1.2;
}

.page-games-poker__hero-description {
  font-size: 1.4em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-games-poker__hero-actions .page-games-poker__btn {
  margin: 0 15px;
}

/* Why Choose Us Section */
.page-games-poker__why-choose-us {
  padding: 80px 0;
  background-color: #122340;
}

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

.page-games-poker__feature-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-games-poker__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E6B325);
}

.page-games-poker__feature-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-games-poker__feature-text {
  font-size: 1em;
  color: #aaa;
}

/* Featured Games Section */
.page-games-poker__featured-games {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-games-poker__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-games-poker__game-card {
  background-color: #122340;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-games-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-games-poker__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E6B325;
}

.page-games-poker__game-card h3.page-games-poker__game-title {
  padding: 20px 20px 0;
  font-size: 1.6em;
  color: #E6B325;
}

.page-games-poker__game-card h3.page-games-poker__game-title a {
  color: #E6B325;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-games-poker__game-card h3.page-games-poker__game-title a:hover {
  color: #ffc107;
}

.page-games-poker__game-description {
  padding: 0 20px 20px;
  color: #aaa;
  font-size: 0.95em;
  flex-grow: 1;
}

.page-games-poker__game-card .page-games-poker__btn {
  margin: 0 20px 20px;
}

/* How To Play Section */
.page-games-poker__how-to-play {
  padding: 80px 0;
  background-color: #122340;
}

.page-games-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-games-poker__step-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 70px;
}

.page-games-poker__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E6B325;
  color: #0A1931;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #0A1931;
  box-shadow: 0 0 0 5px #122340;
}

.page-games-poker__step-title {
  font-size: 1.8em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-games-poker__step-description {
  font-size: 1em;
  color: #aaa;
  margin-bottom: 20px;
}

/* Tips & Strategy Section */
.page-games-poker__tips-strategy {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-games-poker__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-games-poker__tip-item {
  background-color: #122340;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-poker__tip-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-games-poker__tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #E6B325);
}

.page-games-poker__tip-title {
  font-size: 1.7em;
  color: #f5f5f5;
  margin-bottom: 15px;
}

.page-games-poker__tip-text {
  font-size: 0.95em;
  color: #aaa;
}

/* Call to Action Section */
.page-games-poker__cta-section {
  background: linear-gradient(45deg, #0A1931, #1a2a47);
  padding: 80px 0;
  text-align: center;
}

.page-games-poker__cta-title {
  font-size: 3em;
  color: #f5f5f5;
  margin-bottom: 20px;
}

.page-games-poker__cta-description {
  font-size: 1.3em;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-games-poker__cta-actions .page-games-poker__btn {
  margin: 0 15px;
}

/* FAQ Section */
.page-games-poker__faq-section {
  padding: 80px 0;
  background-color: #122340;
}

.page-games-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-games-poker__faq-item {
  background-color: #0A1931;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games-poker__faq-question {
  font-size: 1.5em;
  color: #E6B325;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-games-poker__faq-answer {
  font-size: 1em;
  color: #aaa;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-games-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-poker__hero-title {
    font-size: 2.8em;
  }
  .page-games-poker__hero-description {
    font-size: 1.2em;
  }
  .page-games-poker__section-title {
    font-size: 2.2em;
  }
  .page-games-poker__game-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-games-poker__hero-section {
    padding: 80px 0;
  }
  .page-games-poker__hero-title {
    font-size: 2.2em;
  }
  .page-games-poker__hero-description {
    font-size: 1em;
  }
  .page-games-poker__hero-actions .page-games-poker__btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-games-poker__section-title {
    font-size: 1.8em;
  }
  .page-games-poker__section-subtitle {
    font-size: 1em;
  }
  .page-games-poker__features-grid,
  .page-games-poker__game-cards-grid,
  .page-games-poker__steps-grid,
  .page-games-poker__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-games-poker__cta-title {
    font-size: 2.2em;
  }
  .page-games-poker__cta-description {
    font-size: 1em;
  }
  .page-games-poker__cta-actions .page-games-poker__btn {
    margin: 10px 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-games-poker__hero-section {
    padding: 60px 0;
  }
  .page-games-poker__hero-title {
    font-size: 1.8em;
  }
  .page-games-poker__hero-description {
    font-size: 0.9em;
  }
  .page-games-poker__section-title {
    font-size: 1.6em;
  }
  .page-games-poker__feature-item,
  .page-games-poker__game-card,
  .page-games-poker__step-item,
  .page-games-poker__tip-item,
  .page-games-poker__faq-item {
    padding: 20px;
  }
  .page-games-poker__feature-icon,
  .page-games-poker__tip-icon {
    width: 60px;
    height: 60px;
  }
  .page-games-poker__feature-title,
  .page-games-poker__game-title,
  .page-games-poker__step-title,
  .page-games-poker__tip-title {
    font-size: 1.4em;
  }
  .page-games-poker__cta-title {
    font-size: 1.8em;
  }
}