.page-card-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-card-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-card-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-card-games__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-card-games__title {
  font-size: 3.2em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-card-games__subtitle {
  font-size: 1.4em;
  color: #555;
  margin-bottom: 40px;
}

.page-card-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-card-games__description {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 30px;
}

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

.page-card-games__hero .page-card-games__title {
  color: #fff;
}

.page-card-games__hero .page-card-games__subtitle {
  color: #e0e0e0;
}

.page-card-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-card-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-card-games__hero > .page-card-games__container {
  position: relative;
  z-index: 1;
}

.page-card-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-card-games__btn--primary {
  background-color: #ffc107;
  color: #007bff;
}

.page-card-games__btn--primary:hover {
  background-color: #e0a800;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-card-games__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-card-games__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-card-games__btn--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

.page-card-games__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

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

.page-card-games__features, .page-card-games__promotions, .page-card-games__responsible-gambling {
  padding: 80px 0;
}

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

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

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

.page-card-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-card-games__feature-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-card-games__feature-item p {
  font-size: 1em;
  color: #555;
}

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

.page-card-games__game-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-card-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-card-games__game-item h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-card-games__game-item p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-card-games__game-item .page-card-games__btn {
  align-self: flex-start;
}

.page-card-games__how-to-start {
  background-color: #e9ecef;
}

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

.page-card-games__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-card-games__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffc107;
  color: #007bff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-card-games__step-item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-card-games__step-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

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

.page-card-games__strategy-list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-card-games__strategy-list li strong {
  color: #007bff;
}

.page-card-games__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-card-games__promotions .page-card-games__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-card-games__promo-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
}

.page-card-games__promo-list li {
  background-color: #fff;
  padding: 18px 25px;
  margin-bottom: 12px;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  color: #444;
}

.page-card-games__promo-list li strong {
  color: #ffc107;
}

.page-card-games__promo-image-wrapper {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
}

.page-card-games__promo-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-card-games__responsible-gambling {
  background-color: #f8f9fa;
}

.page-card-games__responsible-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
}

.page-card-games__responsible-list li {
  background-color: #fff;
  padding: 18px 25px;
  margin-bottom: 12px;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  color: #444;
}

.page-card-games__responsible-list li strong {
  color: #007bff;
}

.page-card-games__responsible-image-wrapper {
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
}

.page-card-games__responsible-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-card-games__cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
}

.page-card-games__cta .page-card-games__section-title {
  color: #fff;
}

.page-card-games__cta .page-card-games__description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.highlight {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-card-games__hero-image-wrapper {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    left: 0;
    opacity: 0.1;
  }
  .page-card-games__title {
    font-size: 2.5em;
  }
  .page-card-games__section-title {
    font-size: 2em;
  }
  .page-card-games__subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-card-games__section {
    padding: 40px 0;
  }
  .page-card-games__hero {
    padding: 80px 0 150px 0;
  }
  .page-card-games__title {
    font-size: 2em;
  }
  .page-card-games__section-title {
    font-size: 1.8em;
  }
  .page-card-games__feature-grid, .page-card-games__game-grid, .page-card-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-card-games__game-item, .page-card-games__feature-item, .page-card-games__step-item {
    padding: 20px;
  }
  .page-card-games__step-item {
    padding-top: 50px;
  }
  .page-card-games__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    top: 15px;
    left: 15px;
  }
  .page-card-games__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}