.page-game-guides-live-casino-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-game-guides-live-casino-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-live-casino-tips__hero {
  background: linear-gradient(135deg, #0A2463 0%, #E3B505 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-game-guides-live-casino-tips__hero-content {
  flex: 1;
  min-width: 300px;
  padding-left: 20px;
}

.page-game-guides-live-casino-tips__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff; /* Ensure high contrast */
}

.page-game-guides-live-casino-tips__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for better readability on gradient */
}

.page-game-guides-live-casino-tips__hero-content a {
  color: #E3B505; /* Gold for links on dark background */
  text-decoration: underline;
}

.page-game-guides-live-casino-tips__hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding-right: 20px;
}

.page-game-guides-live-casino-tips__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides-live-casino-tips__section {
  padding: 60px 0;
}

.page-game-guides-live-casino-tips__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-guides-live-casino-tips__section h2 {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-live-casino-tips__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

.page-game-guides-live-casino-tips__section h3 {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-live-casino-tips__section p {
  margin-bottom: 15px;
  color: #333;
}

.page-game-guides-live-casino-tips__section ul,
.page-game-guides-live-casino-tips__section ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-game-guides-live-casino-tips__section li {
  margin-bottom: 10px;
  color: #444;
}

.page-game-guides-live-casino-tips__section strong {
  color: #0A2463;
}

.page-game-guides-live-casino-tips__section a {
  color: #0A2463;
  text-decoration: underline;
}

.page-game-guides-live-casino-tips__features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-guides-live-casino-tips__feature-item {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-live-casino-tips__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides-live-casino-tips__feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-game-guides-live-casino-tips__feature-item h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-guides-live-casino-tips__feature-item p {
  font-size: 0.95em;
  color: #555;
}

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

.page-game-guides-live-casino-tips__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-guides-live-casino-tips__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides-live-casino-tips__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-guides-live-casino-tips__game-card h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin: 20px 20px 10px 20px;
}

.page-game-guides-live-casino-tips__game-card p {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-game-guides-live-casino-tips__game-card .page-game-guides-live-casino-tips__btn {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-game-guides-live-casino-tips__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-game-guides-live-casino-tips__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-game-guides-live-casino-tips__btn--primary:hover {
  background-color: #d6a804;
  color: #0A2463;
}

.page-game-guides-live-casino-tips__btn--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #0A2463;
}

.page-game-guides-live-casino-tips__btn--secondary:hover {
  background-color: #1a3c7c;
  color: #E3B505;
}

.page-game-guides-live-casino-tips__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-live-casino-tips__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  .page-game-guides-live-casino-tips__hero-content, .page-game-guides-live-casino-tips__hero-image {
    padding-left: 0;
    padding-right: 0;
  }
  .page-game-guides-live-casino-tips__hero-content h1 {
    font-size: 2.5em;
  }
  .page-game-guides-live-casino-tips__features {
    flex-direction: column;
    align-items: center;
  }
  .page-game-guides-live-casino-tips__feature-item {
    max-width: 400px;
  }
  .page-game-guides-live-casino-tips__section h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-live-casino-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-live-casino-tips__hero-content h1 {
    font-size: 2em;
  }
  .page-game-guides-live-casino-tips__hero-content p {
    font-size: 1em;
  }
  .page-game-guides-live-casino-tips__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-live-casino-tips__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-live-casino-tips__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-live-casino-tips__hero {
    padding: 40px 0;
  }
  .page-game-guides-live-casino-tips__hero-content h1 {
    font-size: 1.8em;
  }
  .page-game-guides-live-casino-tips__section h2 {
    font-size: 1.8em;
  }
  .page-game-guides-live-casino-tips__section h3 {
    font-size: 1.4em;
  }
  .page-game-guides-live-casino-tips__container {
    padding: 0 15px;
  }
}