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

.page-game-types-card-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-card-games-strategy__hero {
  position: relative;
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-game-types-card-games-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-game-types-card-games-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-game-types-card-games-strategy__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-game-types-card-games-strategy__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #fff;
}

.page-game-types-card-games-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-types-card-games-strategy__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games-strategy__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-card-games-strategy__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games-strategy__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-game-types-card-games-strategy__btn--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-game-types-card-games-strategy__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-game-types-card-games-strategy__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-game-types-card-games-strategy__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-types-card-games-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-types-card-games-strategy__intro p,
.page-game-types-card-games-strategy__conclusion p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
  color: #444;
}

.page-game-types-card-games-strategy__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-card-games-strategy__game-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-card-games-strategy__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-types-card-games-strategy__game-card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-card-games-strategy__game-card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-game-types-card-games-strategy__game-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-game-types-card-games-strategy__game-rules {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.95em;
  color: #666;
}

.page-game-types-card-games-strategy__game-rules li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-game-types-card-games-strategy__game-rules li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.page-game-types-card-games-strategy__strategy-item {
  background-color: #fdfdfd;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-game-types-card-games-strategy__strategy-item:hover {
  transform: translateY(-5px);
}

.page-game-types-card-games-strategy__strategy-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-game-types-card-games-strategy__strategy-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-game-types-card-games-strategy__strategy-item p {
  color: #555;
  font-size: 1em;
}

.page-game-types-card-games-strategy__advanced-tips ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-types-card-games-strategy__advanced-tips ul li {
  background-color: #fff;
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
}

.page-game-types-card-games-strategy__advanced-tips ul li strong {
  color: #8B0000;
}

.page-game-types-card-games-strategy__image--full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-card-games-strategy__cta-register {
  background: linear-gradient(135deg, #8B0000, #b30000);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-game-types-card-games-strategy__cta-content {
  position: relative;
  z-index: 2;
}

.page-game-types-card-games-strategy__cta-register .page-game-types-card-games-strategy__section-title {
  color: #FFD700;
}

.page-game-types-card-games-strategy__cta-register .page-game-types-card-games-strategy__section-title::after {
  background-color: #fff;
}

.page-game-types-card-games-strategy__cta-register p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-types-card-games-strategy__cta-register a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-types-card-games-strategy__image--centered {
  display: block;
  margin: 40px auto 0;
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-types-card-games-strategy__promotions {
  background-color: #f0f0f0;
}

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

.page-game-types-card-games-strategy__promo-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-game-types-card-games-strategy__promo-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-game-types-card-games-strategy__promo-item p {
  color: #555;
  font-size: 1em;
}

.page-game-types-card-games-strategy__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-game-types-card-games-strategy__responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-types-card-games-strategy__responsible-gambling ul li {
  background-color: #fff;
  border-left: 4px solid #8B0000;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-size: 1.05em;
  color: #444;
}

.page-game-types-card-games-strategy__responsible-gambling ul li::before {
  content: '⚠';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

.page-game-types-card-games-strategy__responsible-gambling p {
  font-size: 1.1em;
  text-align: justify;
  color: #444;
}

.page-game-types-card-games-strategy__conclusion .page-game-types-card-games-strategy__btn {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-types-card-games-strategy__title {
    font-size: 2.5em;
  }

  .page-game-types-card-games-strategy__subtitle {
    font-size: 1.2em;
  }

  .page-game-types-card-games-strategy__section-title {
    font-size: 2em;
  }

  .page-game-types-card-games-strategy__game-card-grid,
  .page-game-types-card-games-strategy__strategy-grid,
  .page-game-types-card-games-strategy__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-game-types-card-games-strategy__hero {
    padding: 60px 0;
  }

  .page-game-types-card-games-strategy__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-game-types-card-games-strategy__title {
    font-size: 2em;
  }

  .page-game-types-card-games-strategy__subtitle {
    font-size: 1em;
  }

  .page-game-types-card-games-strategy__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-game-types-card-games-strategy__section-title {
    font-size: 1.8em;
  }
}