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

.page-live__hero-section {
  padding: 80px 20px 60px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-live__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-live__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live__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;
  min-width: 180px;
  text-align: center;
}

.page-live__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__button--primary:hover {
  background-color: #FFD700;
  border-color: #FFD700;
}

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

.page-live__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-live__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

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

.page-live__features-section, .page-live__games-section, .page-live__experience-section, .page-live__download-section, .page-live__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-live__feature-card, .page-live__game-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-live__feature-image, .page-live__game-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-live__feature-title, .page-live__game-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

.page-live__feature-description, .page-live__game-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
  font-weight: bold;
  margin-top: auto;
}

.page-live__button--play:hover {
  background-color: #FFD700;
}

.page-live__experience-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  align-items: center;
}

.page-live__experience-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-live__experience-image-container {
  width: 100%;
  max-width: 800px;
}

.page-live__experience-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__download-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-live__download-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__download-section .page-live__section-intro {
  color: #F0F0F0;
  max-width: 800px;
}

.page-live__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  font-weight: bold;
}

.page-live__button--download:hover {
  background-color: #FFD700;
}

.page-live__download-qr {
  width: 250px;
  height: 250px;
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-live__faq-accordion {
  text-align: left;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-live__faq-question.active + .page-live__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__experience-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 60px 15px 40px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__features-section, .page-live__games-section, .page-live__experience-section, .page-live__download-section, .page-live__faq-section {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__features-grid, .page-live__games-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__feature-card, .page-live__game-card {
    padding: 25px;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__experience-image, .page-live__download-qr {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__button--download {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-live__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-live__faq-question::after {
    right: 20px;
  }
  .page-live__faq-answer {
    padding: 0 20px 18px;
  }
}

/* Ensure content images are not too small */
.page-live img {
  max-width: 100%;
  height: auto;
}

/* Global image rules for content area - enforce minimum size */
.page-live__features-grid img, 
.page-live__games-grid img, 
.page-live__experience-section img, 
.page-live__download-section img {
  min-width: 200px;
  min-height: 200px;
  width: auto; /* Allow image to scale down, but maintain minimum */
  height: auto; /* Allow image to scale down, but maintain minimum */
}

/* Specific overrides for very small images like QR codes if they are too small */
.page-live__download-qr {
  width: 250px; /* Specific width for QR code */
  height: 250px; /* Specific height for QR code */
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter on images */
.page-live img {
  filter: none; 
}