.page-poker {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px);
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker__hero-content {
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 800px;
  z-index: 1;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__hero-button {
  display: inline-block;
  background-color: #007BFF;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.page-poker__hero-button:hover {
  background-color: #0056b3;
}

.page-poker__hero-button--secondary {
  background-color: #FFC107;
  color: #333333;
}

.page-poker__hero-button--secondary:hover {
  background-color: #e0a800;
}

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

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

.page-poker__bg-secondary {
  background-color: #f8f9fa;
}

.page-poker__bg-light {
  background-color: #e9ecef;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
}

.page-poker__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-poker__text-center {
  text-align: center;
}

.page-poker__text-link {
  color: #007BFF;
  text-decoration: none;
}

.page-poker__text-link:hover {
  text-decoration: underline;
}

.page-poker__button {
  display: inline-block;
  background-color: #007BFF;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-poker__button:hover {
  background-color: #0056b3;
}

.page-poker__button--primary {
  background-color: #007BFF;
}

.page-poker__button--primary:hover {
  background-color: #0056b3;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-poker__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__step-card,
.page-poker__strategy-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__step-card:hover,
.page-poker__strategy-card:hover {
  transform: translateY(-5px);
}

.page-poker__feature-icon,
.page-poker__game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__step-title,
.page-poker__strategy-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-poker__feature-description,
.page-poker__game-description,
.page-poker__step-description,
.page-poker__strategy-description {
  font-size: 1em;
  color: #555555;
}

.page-poker__game-button {
  display: inline-block;
  background-color: #FFC107;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-poker__game-button:hover {
  background-color: #e0a800;
}

.page-poker__bonus-list,
.page-poker__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-poker__bonus-item,
.page-poker__security-item {
  background-color: #ffffff;
  border-left: 5px solid #007BFF;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__bonus-title,
.page-poker__security-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-poker__bonus-description,
.page-poker__security-description {
  font-size: 1em;
  color: #555555;
}

.page-poker__mobile-app-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-poker__mobile-app-content {
  flex: 1;
}

.page-poker__mobile-app-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  min-height: 200px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-poker__faq-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.2em;
  color: #007BFF;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-poker__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: #555555;
}

.page-poker__cta-section {
  text-align: center;
  background-color: #007BFF;
  color: #ffffff;
}

.page-poker__cta-container {
  padding: 60px 20px;
}

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

.page-poker__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__mobile-app-container {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__mobile-app-image {
    max-width: 400px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__section-padding {
    padding: 50px 0;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__steps-grid,
  .page-poker__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__mobile-app-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  .page-poker__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  /* Mobile content area overflow prevention */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__hero-button {
    display: block;
    margin: 10px auto;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__cta-description {
    font-size: 0.9em;
  }
}