/* style/game-types-live-casino.css */
.page-game-types-live-casino {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-types-live-casino .highlight {
  color: #0A2463;
  font-weight: bold;
}

.page-game-types-live-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-live-casino__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-types-live-casino__hero-content {
  max-width: 700px;
  margin-right: 40px;
  text-align: left;
}

.page-game-types-live-casino__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-game-types-live-casino__hero-title .highlight {
  color: #fff;
}

.page-game-types-live-casino__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-types-live-casino__hero-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-types-live-casino__hero-actions {
  display: flex;
  gap: 15px;
}

.page-game-types-live-casino__hero-image-wrapper {
  flex-shrink: 0;
}

.page-game-types-live-casino__hero-image {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-types-live-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-game-types-live-casino__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-game-types-live-casino__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-types-live-casino__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-live-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-game-types-live-casino__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-game-types-live-casino__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-game-types-live-casino__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-types-live-casino__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-game-types-live-casino__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-types-live-casino__section-intro {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-types-live-casino__feature-grid, .page-game-types-live-casino__lobby-grid, .page-game-types-live-casino__steps-grid, .page-game-types-live-casino__safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-types-live-casino__feature-item, .page-game-types-live-casino__lobby-card, .page-game-types-live-casino__step-item, .page-game-types-live-casino__safety-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-types-live-casino__feature-item:hover, .page-game-types-live-casino__lobby-card:hover, .page-game-types-live-casino__step-item:hover, .page-game-types-live-casino__safety-item:hover {
  transform: translateY(-5px);
}

.page-game-types-live-casino__feature-icon, .page-game-types-live-casino__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-game-types-live-casino__feature-title, .page-game-types-live-casino__lobby-title, .page-game-types-live-casino__step-title, .page-game-types-live-casino__safety-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types-live-casino__feature-description, .page-game-types-live-casino__lobby-description, .page-game-types-live-casino__step-description, .page-game-types-live-casino__safety-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-game-types-live-casino__feature-description a {
  color: #0A2463;
  text-decoration: underline;
}

.page-game-types-live-casino__lobby-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-live-casino__subsection-title {
  font-size: 2em;
  color: #0A2463;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-game-types-live-casino__subsection-description {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.page-game-types-live-casino__provider-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-game-types-live-casino__provider-list li {
  background-color: #f0f4f8;
  padding: 15px 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 500;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-game-types-live-casino__provider-logo {
  height: 30px;
  margin-right: 10px;
  filter: grayscale(80%);
  transition: filter 0.3s ease;
}

.page-game-types-live-casino__provider-list li:hover .page-game-types-live-casino__provider-logo {
  filter: grayscale(0%);
}

.page-game-types-live-casino__step-number {
  width: 50px;
  height: 50px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-live-casino__app-download {
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
}

.page-game-types-live-casino__app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-game-types-live-casino__app-text {
  flex: 1;
  text-align: left;
}

.page-game-types-live-casino__app-text .page-game-types-live-casino__section-title {
  color: #FFD700;
  text-align: left;
}

.page-game-types-live-casino__app-text .page-game-types-live-casino__section-intro {
  color: #e0e0e0;
  text-align: left;
  margin-left: 0;
}

.page-game-types-live-casino__app-text .page-game-types-live-casino__section-intro a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-types-live-casino__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-game-types-live-casino__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-game-types-live-casino__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint */
}

.page-game-types-live-casino__app-image-wrapper {
  flex-shrink: 0;
}

.page-game-types-live-casino__app-image {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-types-live-casino__safety-item {
  background-color: #f0f4f8;
}

.page-game-types-live-casino__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-types-live-casino__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-types-live-casino__faq-question {
  font-size: 1.25em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-types-live-casino__faq-answer {
  color: #555;
  font-size: 1em;
}

.page-game-types-live-casino__faq-answer a {
  color: #0A2463;
  text-decoration: underline;
}

.page-game-types-live-casino__cta-section {
  background: linear-gradient(90deg, #0A2463, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-types-live-casino__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

.page-game-types-live-casino__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-game-types-live-casino__cta-description .highlight {
  color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-types-live-casino__hero-section .page-game-types-live-casino__container {
    flex-direction: column;
    text-align: center;
  }

  .page-game-types-live-casino__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-game-types-live-casino__hero-actions {
    justify-content: center;
  }

  .page-game-types-live-casino__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-live-casino__app-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-game-types-live-casino__app-text {
    text-align: center;
  }

  .page-game-types-live-casino__app-text .page-game-types-live-casino__section-title,
  .page-game-types-live-casino__app-text .page-game-types-live-casino__section-intro {
    text-align: center;
  }

  .page-game-types-live-casino__app-benefits {
    align-items: center;
  }

  .page-game-types-live-casino__app-benefits li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-game-types-live-casino__hero-section {
    padding: 60px 0;
  }
  .page-game-types-live-casino__hero-title {
    font-size: 2em;
  }
  .page-game-types-live-casino__section-title {
    font-size: 2em;
  }
  .page-game-types-live-casino__feature-grid, .page-game-types-live-casino__lobby-grid, .page-game-types-live-casino__steps-grid, .page-game-types-live-casino__safety-features {
    grid-template-columns: 1fr;
  }
  .page-game-types-live-casino__app-image {
    max-width: 280px;
  }
  .page-game-types-live-casino__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-game-types-live-casino__hero-actions {
    flex-direction: column;
  }
  .page-game-types-live-casino__hero-image {
    max-width: 90%;
  }
  .page-game-types-live-casino__btn {
    width: 100%;
    padding: 10px 20px;
  }
  .page-game-types-live-casino__section-title {
    font-size: 1.8em;
  }
  .page-game-types-live-casino__cta-title {
    font-size: 1.8em;
  }
  .page-game-types-live-casino__provider-list li {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-game-types-live-casino__faq-question {
    font-size: 1.1em;
  }
}