.page-poker {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-poker__section {
  padding: 60px 0;
}

.page-poker__card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-poker__section-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-poker__main-title {
  font-size: clamp(2.5em, 4.5vw, 3.5em);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

.page-poker__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #FFF6D6;
}

.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-poker__btn-primary:hover {
  background: linear-gradient(180deg, #FFE89A 0%, #EAA11D 100%);
  transform: translateY(-2px);
}

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

.page-poker__btn-secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-poker__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-poker__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.page-poker__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

/* Why Choose Section */
.page-poker__why-choose {
  background-color: #0A0A0A;
}

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

.page-poker__feature-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
  text-align: center;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-poker__feature-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD36B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #FFF6D6;
}

/* Game Types Section */
.page-poker__game-types {
  background-color: #0A0A0A;
}

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

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
}

.page-poker__game-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
  text-align: center;
}

/* Getting Started Section */
.page-poker__getting-started {
  background-color: #0A0A0A;
}

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

.page-poker__step-item {
  text-align: center;
}

.page-poker__step-number {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-poker__step-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-poker__payment-methods {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-poker__payment-methods li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD36B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #FFF6D6;
}

/* Tournaments Section */
.page-poker__tournaments {
  background-color: #0A0A0A;
}

.page-poker__tournament-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__highlight-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
  text-align: center;
}

/* Strategies Section */
.page-poker__strategies {
  background-color: #0A0A0A;
}

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

.page-poker__strategy-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming {
  background-color: #0A0A0A;
  text-align: center;
}

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto 40px auto;
  text-align: left;
}

.page-poker__responsible-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD36B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13l2 2l4 -4"></path><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #FFF6D6;
}

/* Mobile Experience Section */
.page-poker__mobile-experience {
  background-color: #0A0A0A;
}

.page-poker__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: block;
}

.page-poker__mobile-features {
  text-align: center;
}

/* FAQ Section */
.page-poker__faq {
  background-color: #0A0A0A;
}

.page-poker__faq-list {
  margin-top: 40px;
}

.page-poker__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background-color: #1A1A1A;
}

.page-poker__faq-title {
  font-size: 1.25em;
  color: #FFD36B;
  margin: 0;
  flex-grow: 1;
}

.page-poker__faq-toggle {
  font-size: 1.8em;
  color: #FFD36B;
  margin-left: 15px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-poker__faq-item.active .page-poker__faq-toggle {
  transform: rotate(45deg);
}

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
  padding-top: 10px;
}

.page-poker__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-poker__cta-final {
  background-color: #0A0A0A;
  text-align: center;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-poker__mobile-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .page-poker__mobile-image {
    flex-shrink: 0;
  }

  .page-poker__mobile-features {
    text-align: left;
    max-width: 400px;
  }

  .page-poker__feature-list li {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-poker__section {
    padding: 40px 0;
  }

  .page-poker__container {
    padding: 0 15px;
  }

  .page-poker__main-title {
    font-size: 2em;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__description,
  .page-poker__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__btn-primary,
  .page-poker__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-poker__video-container {
    margin-bottom: 20px;
  }

  /* Images responsiveness */
  .page-poker img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-poker__game-image {
    height: 200px;
  }

  .page-poker__card,
  .page-poker__section,
  .page-poker__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__hero-section {
    padding-top: 10px !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-poker__video-container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-poker__faq-question {
    padding: 15px;
  }

  .page-poker__faq-title {
    font-size: 1.1em;
  }

  .page-poker__faq-answer {
    padding: 15px;
    padding-top: 10px;
  }

  .page-poker__feature-list li,
  .page-poker__payment-methods li,
  .page-poker__responsible-list li {
    padding-left: 25px;
    background-size: 16px;
  }
}