.page-casino-games-poker-strategies {
  --primary-color: #FF0055;
  --secondary-color: #00FFEE;
  --text-color-light: #f0f0f0;
  --text-color-dark: #1a1a1a;
  --bg-dark: #121212;
  --bg-light: #2a2a2a;
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light);
  line-height: 1.6;
}

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

.page-casino-games-poker-strategies__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino-games-poker-strategies__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
  animation: pulse 5s infinite ease-in-out;
}

.page-casino-games-poker-strategies__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: rotate(-30deg);
  animation: pulse-reverse 4s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.8) rotate(45deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(45deg); opacity: 1; }
  100% { transform: scale(0.8) rotate(45deg); opacity: 0.8; }
}

@keyframes pulse-reverse {
  0% { transform: scale(1.2) rotate(-30deg); opacity: 1; }
  50% { transform: scale(0.8) rotate(-30deg); opacity: 0.8; }
  100% { transform: scale(1.2) rotate(-30deg); opacity: 1; }
}

.page-casino-games-poker-strategies__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-casino-games-poker-strategies__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games-poker-strategies__section {
  padding: 60px 0;
  background-color: var(--bg-dark);
}

.page-casino-games-poker-strategies__section--dark {
  background-color: var(--bg-light);
}

.page-casino-games-poker-strategies__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-casino-games-poker-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-casino-games-poker-strategies__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-align: justify;
}

.page-casino-games-poker-strategies__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-casino-games-poker-strategies__list li {
  background-color: #1e1e1e;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-games-poker-strategies__list-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-casino-games-poker-strategies__checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-casino-games-poker-strategies__checklist li {
  background-color: #1e1e1e;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-casino-games-poker-strategies__checklist li::before {
  content: '✔';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-casino-games-poker-strategies__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
}

.page-casino-games-poker-strategies__btn--primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-casino-games-poker-strategies__btn--primary:hover {
  background-color: #e6004b;
  border-color: #e6004b;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 0, 85, 0.4);
}

.page-casino-games-poker-strategies__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-casino-games-poker-strategies__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 255, 238, 0.4);
}

.page-casino-games-poker-strategies__link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino-games-poker-strategies__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-casino-games-poker-strategies__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-casino-games-poker-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-games-poker-strategies__image--small {
  max-width: 150px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.page-casino-games-poker-strategies__cta-section {
  background: linear-gradient(45deg, var(--bg-light), var(--bg-dark));
  padding: 80px 0;
  text-align: center;
}

.page-casino-games-poker-strategies__cta-title {
  font-size: 2.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-casino-games-poker-strategies__cta-text {
  font-size: 1.3em;
  color: var(--text-color-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-casino-games-poker-strategies__cta-buttons .page-casino-games-poker-strategies__btn {
  min-width: 220px;
}

.highlight-text {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-casino-games-poker-strategies__title {
    font-size: 2.5em;
  }

  .page-casino-games-poker-strategies__subtitle {
    font-size: 1.2em;
  }

  .page-casino-games-poker-strategies__section-title {
    font-size: 2em;
  }

  .page-casino-games-poker-strategies__list li, .page-casino-games-poker-strategies__checklist li {
    padding: 15px;
  }

  .page-casino-games-poker-strategies__list-title {
    font-size: 1.4em;
  }

  .page-casino-games-poker-strategies__text {
    font-size: 1em;
  }

  .page-casino-games-poker-strategies__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-casino-games-poker-strategies__cta-title {
    font-size: 2.2em;
  }

  .page-casino-games-poker-strategies__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-casino-games-poker-strategies__title {
    font-size: 2em;
  }

  .page-casino-games-poker-strategies__subtitle {
    font-size: 1em;
  }

  .page-casino-games-poker-strategies__section-title {
    font-size: 1.8em;
  }

  .page-casino-games-poker-strategies__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-casino-games-poker-strategies__cta-buttons .page-casino-games-poker-strategies__btn {
    min-width: unset;
  }
}