.page-live {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
}

.page-live__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__button--secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-live__button--secondary:hover {
  background-color: rgba(10, 36, 99, 0.1);
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 8px 15px;
  font-size: 14px;
}

.page-live__button--large {
  padding: 15px 35px;
  font-size: 18px;
}

.page-live__button--center {
  display: block;
  margin: 20px auto;
  width: fit-content;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-live__hero-actions .page-live__button {
  margin: 0 10px;
}

/* General Section Styling */
.page-live__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* About Section (Why Choose Us) */
.page-live__about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-live__feature-icon {
  width: 250px; /* Min 200px */
  height: 187.5px; /* Min 200px (approx 4:3 aspect) */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__feature-text {
  color: #666666;
  font-size: 1em;
}

/* Games Section */
.page-live__games-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__game-card {
  background-color: #f0f5fa;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-live__game-image {
  width: 100%;
  height: 225px; /* Min 200px */
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-live__game-title {
  font-size: 1.4em;
  color: #0A2463;
  margin: 20px 15px 10px 15px;
}

.page-live__game-text {
  color: #666666;
  font-size: 0.95em;
  padding: 0 15px 20px 15px;
}

.page-live__game-card .page-live__button {
  margin-bottom: 20px;
}

/* Promo Section */
.page-live__promo-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__promo-section .page-live__section-title,
.page-live__promo-section .page-live__section-description {
  color: #ffffff;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-live__promo-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-live__promo-image {
  width: 100%;
  height: 225px; /* Min 200px */
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-live__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
}

.page-live__promo-text {
  color: #f0f0f0;
  font-size: 0.95em;
  padding: 0 15px 20px 15px;
}

/* Banking Section */
.page-live__banking-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-live__banking-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__banking-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  max-width: 45%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__banking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-live__banking-icon {
  width: 250px; /* Min 200px */
  height: 187.5px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__banking-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__banking-text {
  color: #666666;
  font-size: 1em;
}

/* Mobile Section */
.page-live__mobile-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
}

.page-live__mobile-content--reverse {
  flex-direction: row-reverse;
  margin-top: 80px;
}

.page-live__mobile-image {
  flex: 1;
  max-width: 500px; /* Example size, min 200px */
  height: auto; /* Maintain aspect ratio */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-text {
  flex: 1;
  text-align: left;
}

.page-live__mobile-subtitle {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-live__mobile-paragraph {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

/* Responsible Gaming Section */
.page-live__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__responsible-gaming-section .page-live__section-title,
.page-live__responsible-gaming-section .page-live__section-description {
  color: #ffffff;
}

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

.page-live__responsible-gaming-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-live__responsible-gaming-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-live__responsible-gaming-icon {
  width: 250px; /* Min 200px */
  height: 187.5px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__responsible-gaming-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__responsible-gaming-text {
  color: #f0f0f0;
  font-size: 1em;
}

/* Customer Support Section */
.page-live__customer-support-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__support-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-live__support-icon {
  width: 250px; /* Min 200px */
  height: 187.5px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__support-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__support-text {
  color: #666666;
  font-size: 0.95em;
}

/* Why Choose Us Section (Benefits) */
.page-live__why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__benefit-card {
  background-color: #f0f5fa;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-live__benefit-icon {
  width: 250px; /* Min 200px */
  height: 187.5px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__benefit-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__benefit-text {
  color: #666666;
  font-size: 1em;
}

/* Call to Action Section */
.page-live__cta-section {
  padding: 80px 0;
  background-color: #FFD700;
  color: #0A2463;
  text-align: center;
}

.page-live__cta-section .page-live__section-title,
.page-live__cta-section .page-live__section-description {
  color: #0A2463;
}

.page-live__cta-actions {
  margin-top: 40px;
}

.page-live__cta-actions .page-live__button {
  margin: 0 15px;
  border-color: #0A2463;
}

.page-live__cta-actions .page-live__button--primary {
  background-color: #0A2463;
  color: #FFD700;
}

.page-live__cta-actions .page-live__button--primary:hover {
  background-color: #1a3a7f;
}

.page-live__cta-actions .page-live__button--secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-live__cta-actions .page-live__button--secondary:hover {
  background-color: rgba(10, 36, 99, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-live__mobile-content--reverse {
    flex-direction: column;
  }
  .page-live__mobile-image {
    max-width: 100%;
  }
  .page-live__mobile-text {
    text-align: center;
  }
  .page-live__mobile-subtitle {
    font-size: 1.8em;
  }
  .page-live__banking-features {
    flex-direction: column;
    align-items: center;
  }
  .page-live__banking-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-container {
    padding: 60px 15px;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions .page-live__button {
    margin: 10px 5px;
    display: block;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__promo-grid,
  .page-live__responsible-gaming-grid,
  .page-live__support-methods,
  .page-live__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card,
  .page-live__game-card,
  .page-live__promo-card,
  .page-live__responsible-gaming-card,
  .page-live__support-card,
  .page-live__benefit-card {
    padding: 20px;
  }
  .page-live__feature-icon,
  .page-live__game-image,
  .page-live__promo-image,
  .page-live__banking-icon,
  .page-live__mobile-image,
  .page-live__responsible-gaming-icon,
  .page-live__support-icon,
  .page-live__benefit-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Allow auto width for small devices */
    min-width: 200px; /* Minimum display width */
    min-height: 150px; /* Minimum display height */
    object-fit: contain;
  }
  .page-live__banking-card {
    padding: 20px;
  }
  .page-live__mobile-subtitle {
    font-size: 1.5em;
  }
  .page-live__mobile-paragraph {
    font-size: 1em;
  }
  .page-live__cta-actions .page-live__button {
    display: block;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__hero-container {
    padding: 40px 10px;
  }
}