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

.page-game-lobby-card-games-strategy__hero {
  background: linear-gradient(135deg, #0A2342, #1A3A60);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-card-games-strategy__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-lobby-card-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  overflow: hidden;
}

.page-game-lobby-card-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

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

.page-game-lobby-card-games-strategy__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-card-games-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-card-games-strategy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-lobby-card-games-strategy__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-game-lobby-card-games-strategy__section:last-of-type {
  border-bottom: none;
}

.page-game-lobby-card-games-strategy__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-lobby-card-games-strategy__sub-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-lobby-card-games-strategy p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-game-lobby-card-games-strategy ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
}

.page-game-lobby-card-games-strategy li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

.page-game-lobby-card-games-strategy__content-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-game-lobby-card-games-strategy__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-game-lobby-card-games-strategy__text-block {
  flex: 2;
}

.page-game-lobby-card-games-strategy__image-block {
  flex: 1;
  text-align: center;
}

.page-game-lobby-card-games-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-game-lobby-card-games-strategy__image:hover {
  transform: translateY(-5px);
}

.page-game-lobby-card-games-strategy__image--small {
  max-width: 80%;
  margin: 20px auto;
  display: block;
}

.page-game-lobby-card-games-strategy__cta {
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-card-games-strategy__cta .page-game-lobby-card-games-strategy__section-title::after {
  background-color: #ffffff;
}

.page-game-lobby-card-games-strategy__cta p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-game-lobby-card-games-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.page-game-lobby-card-games-strategy__cta-button--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-game-lobby-card-games-strategy__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-game-lobby-card-games-strategy__cta-button--secondary {
  background-color: #ffffff;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-game-lobby-card-games-strategy__cta-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e6c200;
}

.page-game-lobby-card-games-strategy__cta-button--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-lobby-card-games-strategy__cta-button--tertiary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-game-lobby-card-games-strategy__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  overflow: hidden;
}

.page-game-lobby-card-games-strategy__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(50%);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-lobby-card-games-strategy__title {
    font-size: 2.8em;
  }

  .page-game-lobby-card-games-strategy__subtitle {
    font-size: 1.3em;
  }

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

  .page-game-lobby-card-games-strategy__sub-title {
    font-size: 1.6em;
  }

  .page-game-lobby-card-games-strategy__content-flex {
    flex-direction: column;
    gap: 30px;
  }

  .page-game-lobby-card-games-strategy__content-flex--reverse {
    flex-direction: column;
  }

  .page-game-lobby-card-games-strategy__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }

  .page-game-lobby-card-games-strategy__image--small {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-card-games-strategy__hero {
    padding: 60px 15px;
  }

  .page-game-lobby-card-games-strategy__title {
    font-size: 2.2em;
  }

  .page-game-lobby-card-games-strategy__subtitle {
    font-size: 1.1em;
  }

  .page-game-lobby-card-games-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-card-games-strategy__section {
    padding: 40px 15px;
  }

  .page-game-lobby-card-games-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-lobby-card-games-strategy__sub-title {
    font-size: 1.4em;
  }

  .page-game-lobby-card-games-strategy p, .page-game-lobby-card-games-strategy li {
    font-size: 1em;
  }

  .page-game-lobby-card-games-strategy ul {
    margin-left: 20px;
  }

  .page-game-lobby-card-games-strategy__cta p {
    font-size: 1em;
  }

  .page-game-lobby-card-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

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

  .page-game-lobby-card-games-strategy__subtitle {
    font-size: 0.95em;
  }

  .page-game-lobby-card-games-strategy__section-title {
    font-size: 1.5em;
  }

  .page-game-lobby-card-games-strategy__sub-title {
    font-size: 1.2em;
  }
}