/* style/games-poker.css */
.page-games-poker {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-games-poker__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-poker__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-games-poker__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-games-poker__hero-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-games-poker__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transform: translateX(20%) translateY(10%);
}

.page-games-poker__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-games-poker__section:last-of-type {
  border-bottom: none;
}

.page-games-poker__section-title {
  font-size: 2.5em;
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-games-poker__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

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

.page-games-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-games-poker__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-games-poker__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-games-poker__feature-text {
  color: #666;
}

.page-games-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-games-poker__btn--primary {
  background-color: #FFC107;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-games-poker__btn--primary:hover {
  background-color: #e0a800;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
}

.page-games-poker__btn--secondary {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-games-poker__btn--secondary:hover {
  background-color: #0056b3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

.page-games-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #007BFF;
  color: #fff;
  margin-top: 20px;
}

.page-games-poker__btn--small:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-games-poker__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-games-poker__content-block {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.page-games-poker__content-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-games-poker__content-title:first-of-type {
  margin-top: 0;
}

.page-games-poker__content-block p {
  margin-bottom: 15px;
  color: #444;
}

.page-games-poker__content-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-games-poker__content-block li {
  margin-bottom: 8px;
}

.page-games-poker__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-games-poker__game-strategy-article {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.page-games-poker__game-strategy-article:last-of-type {
  margin-bottom: 0;
}

.page-games-poker__game-title {
  font-size: 2em;
  color: #0056b3;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-games-poker__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-games-poker__game-strategy-article p {
  margin-bottom: 15px;
  color: #444;
}

.page-games-poker__game-strategy-article h4 {
  font-size: 1.4em;
  color: #007BFF;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-games-poker__app-download {
  background: linear-gradient(90deg, #007BFF, #4da3ff);
  color: #fff;
}

.page-games-poker__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-games-poker__app-text {
  flex: 1;
  min-width: 300px;
}

.page-games-poker__app-text .page-games-poker__section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

.page-games-poker__app-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-games-poker__app-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-games-poker__app-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-games-poker__responsible-gambling ul {
  list-style-type: square;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-games-poker__responsible-gambling li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-games-poker__responsible-gambling .page-games-poker__link {
  color: #007BFF;
  text-decoration: underline;
}

.page-games-poker__responsible-gambling .page-games-poker__link:hover {
  color: #0056b3;
}

.page-games-poker__conclusion .page-games-poker__section-description {
  margin-bottom: 30px;
}

.page-games-poker__conclusion .page-games-poker__btn {
  margin-top: 30px;
}

.page-games-poker .highlight {
  color: #0056b3;
  font-weight: 600;
}

.page-games-poker__hero .highlight {
  color: #FFC107;
}

.page-games-poker__app-download .highlight {
  color: #FFC107;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-games-poker__hero-title {
    font-size: 2.8em;
  }

  .page-games-poker__hero-subtitle {
    font-size: 1.2em;
  }

  .page-games-poker__hero-image-container {
    width: 70%;
    right: -10%;
    transform: none;
  }

  .page-games-poker__hero-image {
    transform: none;
  }

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

  .page-games-poker__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-games-poker__app-text .page-games-poker__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-games-poker__hero {
    padding: 80px 0 150px 0;
  }

  .page-games-poker__hero-title {
    font-size: 2.2em;
  }

  .page-games-poker__hero-subtitle {
    font-size: 1em;
  }

  .page-games-poker__hero-image-container {
    width: 100%;
    height: 200px;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .page-games-poker__hero-image {
    max-width: 80%;
    height: auto;
  }

  .page-games-poker__section {
    padding: 40px 0;
  }

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

  .page-games-poker__section-description {
    font-size: 1em;
  }

  .page-games-poker__feature-item {
    padding: 20px;
  }

  .page-games-poker__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-games-poker__feature-title {
    font-size: 1.3em;
  }

  .page-games-poker__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-games-poker__content-block {
    padding: 25px;
  }

  .page-games-poker__content-title {
    font-size: 1.5em;
  }

  .page-games-poker__game-strategy-article {
    padding: 25px;
  }

  .page-games-poker__game-title {
    font-size: 1.6em;
  }

  .page-games-poker__app-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-games-poker__hero-title {
    font-size: 1.8em;
  }

  .page-games-poker__hero-subtitle {
    font-size: 0.9em;
  }

  .page-games-poker__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-games-poker__game-title {
    font-size: 1.4em;
  }
}