.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-poker__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-poker__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__button--register:hover {
  background-color: #e0e0e0;
}

.page-poker__button--play {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--play:hover {
  background-color: #e9a830;
}

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

.page-poker__features-section,
.page-poker__variants-section,
.page-poker__strategy-section,
.page-poker__promotions-section,
.page-poker__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

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

.page-poker__feature-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-poker__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-poker__variants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.page-poker__variant-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-poker__variant-card:hover {
  transform: translateY(-15px);
}

.page-poker__variant-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-poker__variant-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-poker__variant-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-poker__variant-title a {
  color: inherit;
  text-decoration: none;
}

.page-poker__variant-title a:hover {
  text-decoration: underline;
}

.page-poker__variant-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
  flex-grow: 1;
}

.page-poker__button--details {
  background-color: #FCBC45;
  color: #000000;
  align-self: flex-start;
}

.page-poker__button--details:hover {
  background-color: #e9a830;
}

.page-poker__strategy-section {
  background-color: #F0F0F0;
  border-radius: 15px;
  padding: 60px 40px;
}

.page-poker__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-poker__strategy-image {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height: auto;
  object-fit: cover;
}

.page-poker__strategy-text {
  flex: 1;
}

.page-poker__strategy-text h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-poker__strategy-text p {
  margin-bottom: 15px;
  color: #444444;
}

.page-poker__promotions-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-poker__promo-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__promo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-poker__promo-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-poker__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-poker__promo-title a:hover {
  text-decoration: underline;
}

.page-poker__promo-text {
  font-size: 1em;
  color: #666666;
  padding: 0 15px;
}

.page-poker__promotions-cta {
  text-align: center;
}

.page-poker__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__button--view-all:hover {
  background-color: #333333;
}

.page-poker__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

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

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-description {
  position: relative;
  z-index: 1;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FCBC45;
}

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

.page-poker__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-poker__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-poker__button--register-large:hover {
  background-color: #e0e0e0;
}

.page-poker__button--download-app {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-poker__button--download-app:hover {
  background-color: #e9a830;
}

@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__strategy-content {
    flex-direction: column;
    align-items: center;
  }
  .page-poker__strategy-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker {
    overflow-x: hidden;
  }
  .page-poker__hero-section {
    padding: 40px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__features-section,
  .page-poker__variants-section,
  .page-poker__strategy-section,
  .page-poker__promotions-section,
  .page-poker__cta-section {
    padding: 50px 15px;
  }
  .page-poker__feature-item img,
  .page-poker__variant-card img,
  .page-poker__promo-item img,
  .page-poker__strategy-image,
  .page-poker__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__strategy-section {
    padding: 40px 20px;
  }
  .page-poker__strategy-text h3 {
    font-size: 1.5em;
  }
  .page-poker__cta-actions {
    flex-direction: column;
  }
  .page-poker__button--register-large,
  .page-poker__button--download-app {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__hero-actions {
    gap: 10px;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__variant-title {
    font-size: 1.8em;
  }
  .page-poker__promo-title {
    font-size: 1.4em;
  }
}