.page-casino-live-games-guide {
  color: #ffffff; /* Text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-casino-live-games-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1A202C;
  padding: 80px 20px 40px;
  gap: 40px;
}

.page-casino-live-games-guide__hero-content {
  max-width: 900px;
}

.page-casino-live-games-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-casino-live-games-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-casino-live-games-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino-live-games-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-casino-live-games-guide__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-casino-live-games-guide__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-casino-live-games-guide__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino-live-games-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-casino-live-games-guide__button--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
  border: 1px solid #FFD700;
}

.page-casino-live-games-guide__button--small:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-casino-live-games-guide__hero-image {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
}

.page-casino-live-games-guide__hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-casino-live-games-guide__overview-section,
.page-casino-live-games-guide__games-guide-section,
.page-casino-live-games-guide__tips-section,
.page-casino-live-games-guide__cta-section,
.page-casino-live-games-guide__responsible-gaming-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A202C;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-casino-live-games-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-casino-live-games-guide__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-casino-live-games-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-casino-live-games-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-casino-live-games-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-casino-live-games-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino-live-games-guide__feature-description {
  color: #cccccc;
}

.page-casino-live-games-guide__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-casino-live-games-guide__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-casino-live-games-guide__game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino-live-games-guide__sub-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-casino-live-games-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-casino-live-games-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-casino-live-games-guide__tips-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-casino-live-games-guide__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-casino-live-games-guide__tips-list-container {
  width: 100%;
}

.page-casino-live-games-guide__cta-section {
  text-align: center;
  background-color: #1A202C;
  padding: 80px 20px;
}

.page-casino-live-games-guide__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino-live-games-guide__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-casino-live-games-guide__hero-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-casino-live-games-guide__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-casino-live-games-guide__hero-image {
    flex: 1;
    margin-top: 0;
  }

  .page-casino-live-games-guide__hero-buttons {
    justify-content: flex-start;
  }

  .page-casino-live-games-guide__tips-content {
    flex-direction: row;
    text-align: left;
  }

  .page-casino-live-games-guide__tips-image {
    flex: 1;
    max-width: 50%;
    margin-right: 40px;
  }

  .page-casino-live-games-guide__tips-list-container {
    flex: 1;
  }

  .page-casino-live-games-guide__game-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-casino-live-games-guide__game-image {
    flex: 0 0 400px; /* Fixed width for desktop */
    margin-right: 30px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-casino-live-games-guide__hero-title {
    font-size: 2.2em;
  }

  .page-casino-live-games-guide__hero-description {
    font-size: 1em;
  }

  .page-casino-live-games-guide__section-title {
    font-size: 2em;
  }

  .page-casino-live-games-guide__game-title {
    font-size: 1.8em;
  }

  .page-casino-live-games-guide__sub-title {
    font-size: 1.2em;
  }

  .page-casino-live-games-guide__paragraph,
  .page-casino-live-games-guide__list li {
    font-size: 0.95em;
  }

  /* Mobile overflow prevention */
  .page-casino-live-games-guide {
    overflow-x: hidden;
  }
  .page-casino-live-games-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-live-games-guide__game-image {
    width: 100%;
    height: auto;
  }
  .page-casino-live-games-guide__tips-image {
    width: 100%;
    height: auto;
  }
  .page-casino-live-games-guide__hero-image img {
    width: 100%;
    height: auto;
  }
}