:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg: #111111;
  --background: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --site-bg: #0A0A0A; /* Assuming a dark background from shared.css or similar */
  --header-offset: 122px; /* Placeholder, actual value from shared.css */
}

.page-live {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--site-bg);
}

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

.page-live__section-title {
  font-size: clamp(2em, 2.5vw, 3em);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-live__section-title--light {
  color: #ffffff;
}

.page-live__section-description {
  font-size: 1.1em;
  color: var(--text-main);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-live__section-description--light {
  color: #FFF6D6;
}

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--background);
  overflow: hidden;
}

.page-live__video-container {
  width: 100%; /* Important for desktop flex container */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.page-live__video-link {
  display: block;
  line-height: 0;
  cursor: pointer;
}

.page-live__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__hero-content {
  text-align: center;
  max-width: 800px;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 2;
}

.page-live__main-title {
  font-size: clamp(2.5em, 4vw, 3.8em);
  font-weight: 800;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-live__tagline {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-live__btn-primary {
  background: var(--button-gradient);
  color: #111111;
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
  opacity: 0.9;
}

.page-live__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-live__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-live__btn-text-link {
  color: #FFD36B;
  font-size: 0.9em;
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.page-live__btn-text-link:hover {
  border-color: #FFD36B;
  background-color: rgba(255, 211, 107, 0.05);
}

.page-live__intro-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-live__text-block p {
  color: #FFF6D6;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05em;
  text-align: justify;
}

.page-live__games-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

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

.page-live__category-card {
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-live__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #F2C14E;
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-live__category-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-live__advantages-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-live__dark-section {
  background-color: var(--background);
  color: #FFF6D6;
}

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

.page-live__advantage-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #F2C14E;
}

.page-live__advantage-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.9) contrast(1.1); /* Non-color changing filter */
  min-width: 200px; /* Enforce min dimensions */
  min-height: 200px;
}

.page-live__advantage-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-live__advantage-item p {
  color: #FFF6D6;
  line-height: 1.6;
}

.page-live__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-live__how-to-start-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

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

.page-live__step-card {
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #F2C14E;
}

.page-live__step-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-live__step-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-live__step-card p {
  color: #FFF6D6;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-live__partners-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-live__partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(167px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-live__partner-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 167px;
  height: 127px;
  box-sizing: border-box;
}

.page-live__partner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
  border-color: #F2C14E;
}

.page-live__partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2); /* Non-color changing filter */
}

.page-live__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.page-live__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-live__faq-item {
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-live__faq-item.active {
  border-color: #F2C14E;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.2);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: transparent;
  color: #FFD36B;
  font-weight: 700;
  font-size: 1.1em;
}

.page-live__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.05);
}

.page-live__faq-title {
  margin: 0;
  font-size: 1.1em;
  color: #FFD36B;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  font-weight: 800;
  color: #F2C14E;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 20px 25px;
}

.page-live__faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #FFF6D6;
}

.page-live__faq-answer a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-live__faq-answer a:hover {
  color: #FFD36B;
}

.page-live__cta-final-section {
  padding: 80px 0;
  background-color: var(--background);
  text-align: center;
}

@media (max-width: 1024px) {
  .page-live__hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-live__container {
    padding: 0 15px;
  }

  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-live__main-title {
    font-size: 2.2em;
  }

  .page-live__tagline {
    font-size: 1em;
  }

  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}