.page-game-lobby-card-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1a1a2e;
  line-height: 1.6;
}

.page-game-lobby-card-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-lobby-card-game-strategies__hero {
  background: linear-gradient(135deg, #0047AB, #002860);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-card-game-strategies__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-game-lobby-card-game-strategies__float 10s ease-in-out infinite alternate;
}

.page-game-lobby-card-game-strategies__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-game-lobby-card-game-strategies__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-game-lobby-card-game-strategies__float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}

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

.page-game-lobby-card-game-strategies__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-lobby-card-game-strategies__button--primary {
  background-color: #FFD700;
  color: #0047AB;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-card-game-strategies__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-card-game-strategies__button--secondary {
  background-color: #0047AB;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.4);
}

.page-game-lobby-card-game-strategies__button--secondary:hover {
  background-color: #003a8a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.6);
}

.page-game-lobby-card-game-strategies__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-game-lobby-card-game-strategies__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-lobby-card-game-strategies__button--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-game-lobby-card-game-strategies__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-card-game-strategies__section:nth-of-type(odd) {
  background-color: #121223;
}

.page-game-lobby-card-game-strategies__section:nth-of-type(even) {
  background-color: #1a1a2e;
}

.page-game-lobby-card-game-strategies__section-title {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-game-lobby-card-game-strategies__feature-item {
  background-color: #0047AB;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-card-game-strategies__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-card-game-strategies__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-game-lobby-card-game-strategies__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-card-game-strategies__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #002860;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 60px;
  overflow: hidden;
  text-align: left;
}

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

.page-game-lobby-card-game-strategies__game-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-bottom: 5px solid #FFD700;
}

.page-game-lobby-card-game-strategies__game-card--reverse .page-game-lobby-card-game-strategies__game-image {
  border-top: 5px solid #FFD700;
  border-bottom: none;
}

.page-game-lobby-card-game-strategies__game-content {
  padding: 40px;
}

.page-game-lobby-card-game-strategies__game-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-lobby-card-game-strategies__game-subtitle {
  font-size: 1.5em;
  color: #00A3CC;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-lobby-card-game-strategies__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-game-lobby-card-game-strategies__list li {
  margin-bottom: 8px;
}

.page-game-lobby-card-game-strategies__list--vip {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}

.page-game-lobby-card-game-strategies__list--vip li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-lobby-card-game-strategies__list--vip li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

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

.page-game-lobby-card-game-strategies__strategy-item {
  background-color: #0047AB;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-game-lobby-card-game-strategies__strategy-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-card-game-strategies__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  color: #D0D0D0;
}

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

.page-game-lobby-card-game-strategies__step-item {
  background-color: #002860;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-game-lobby-card-game-strategies__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 7px rgba(255, 215, 0, 0.8));
}

.page-game-lobby-card-game-strategies__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-card-game-strategies__faq-item {
  background-color: #002860;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: left;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-card-game-strategies__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-card-game-strategies__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-lobby-card-game-strategies__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-lobby-card-game-strategies__faq-answer {
  font-size: 1.1em;
  color: #D0D0D0;
  display: none;
  padding-top: 10px;
}

.page-game-lobby-card-game-strategies__faq-answer.active {
  display: block;
}

.page-game-lobby-card-game-strategies__cta-final {
  background: linear-gradient(135deg, #0047AB, #002860);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-lobby-card-game-strategies__cta-final .page-game-lobby-card-game-strategies__section-title {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-card-game-strategies__title {
    font-size: 2.8em;
  }
  .page-game-lobby-card-game-strategies__subtitle {
    font-size: 1.2em;
  }
  .page-game-lobby-card-game-strategies__section-title {
    font-size: 2.2em;
  }
  .page-game-lobby-card-game-strategies__game-card {
    flex-direction: column !important;
  }
  .page-game-lobby-card-game-strategies__game-card--reverse .page-game-lobby-card-game-strategies__game-image {
    border-top: none;
    border-bottom: 5px solid #FFD700;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-card-game-strategies__hero {
    padding: 80px 0;
  }
  .page-game-lobby-card-game-strategies__title {
    font-size: 2.2em;
  }
  .page-game-lobby-card-game-strategies__subtitle {
    font-size: 1em;
  }
  .page-game-lobby-card-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-card-game-strategies__game-content {
    padding: 30px;
  }
  .page-game-lobby-card-game-strategies__game-title {
    font-size: 1.8em;
  }
  .page-game-lobby-card-game-strategies__game-subtitle {
    font-size: 1.3em;
  }
  .page-game-lobby-card-game-strategies__feature-item,
  .page-game-lobby-card-game-strategies__strategy-item,
  .page-game-lobby-card-game-strategies__step-item {
    padding: 25px;
  }
  .page-game-lobby-card-game-strategies__button--center {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-card-game-strategies__hero {
    padding: 60px 0;
  }
  .page-game-lobby-card-game-strategies__title {
    font-size: 1.8em;
  }
  .page-game-lobby-card-game-strategies__subtitle {
    font-size: 0.9em;
  }
  .page-game-lobby-card-game-strategies__section-title {
    font-size: 1.5em;
  }
  .page-game-lobby-card-game-strategies__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-game-lobby-card-game-strategies__button--large {
    padding: 15px 25px;
    font-size: 1em;
  }
  .page-game-lobby-card-game-strategies__game-content {
    padding: 20px;
  }
  .page-game-lobby-card-game-strategies__game-title {
    font-size: 1.5em;
  }
  .page-game-lobby-card-game-strategies__game-subtitle {
    font-size: 1.1em;
  }
  .page-game-lobby-card-game-strategies__list,
  .page-game-lobby-card-game-strategies__text-content,
  .page-game-lobby-card-game-strategies__faq-answer {
    font-size: 0.9em;
  }
  .page-game-lobby-card-game-strategies__faq-question {
    font-size: 1.2em;
  }
}