:root {
  --page-live-primary-color: #F2C14E;
  --page-live-secondary-color: #FFD36B;
  --page-live-card-bg: #111111;
  --page-live-background: #0A0A0A;
  --page-live-text-main: #FFF6D6;
  --page-live-border-color: #3A2A12;
  --page-live-glow-color: #FFD36B;
  --page-live-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.page-live__section {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden; 
}

.page-live__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; 
  box-sizing: border-box;
}

.page-live__dark-section {
  background-color: var(--page-live-background);
  color: var(--page-live-text-main); 
}

.page-live__light-bg {
  background-color: #ffffff; 
  color: #333333; 
}

.page-live__hero-section {
  position: relative;
  padding: 0;
  padding-bottom: 60px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-live__hero-video-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; 
}

.page-live__video-link {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

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

.page-live__hero-content {
  padding-top: 10px; 
  z-index: 1;
  position: relative;
}

.page-live__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--page-live-text-main); 
  font-size: clamp(2.5rem, 5vw, 3.5rem); 
}

.page-live__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-live-text-main);
}

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

.page-live__cta-buttons--inline {
  margin-top: 20px;
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box; 
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-live__btn-primary {
  background: var(--page-live-btn-gradient);
  color: #ffffff; 
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-live__btn-secondary {
  background: #ffffff;
  color: var(--page-live-primary-color);
  border: 2px solid var(--page-live-primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live__btn-secondary:hover {
  background: var(--page-live-primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #333333; 
}

.page-live__section-title--light {
  color: var(--page-live-text-main); 
}

.page-live__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333333; 
}

.page-live__subsection-title--light {
  color: var(--page-live-text-main); 
}

.page-live__text-main {
  font-size: 1.05em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
}

.page-live__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-live__category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--page-live-text-main);
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s ease;
}

.page-live__category-item:hover {
  transform: translateY(-5px);
  color: var(--page-live-primary-color);
}

.page-live__category-item img {
  
  
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5)); 
  transition: filter 0.3s ease;
}

.page-live__category-item:hover img {
  filter: drop-shadow(0 0 10px rgba(255, 211, 107, 0.8));
}

.page-live__image-showcase {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__image-showcase--small {
  max-width: 600px;
}

.page-live__image-showcase img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

.page-live__faq-item.active {
  background-color: rgba(242, 193, 78, 0.1); 
  border-color: var(--page-live-primary-color);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-live-text-main);
  transition: color 0.3s ease;
}

.page-live__faq-question:hover {
  color: var(--page-live-primary-color);
}

.page-live__faq-question h3 {
  margin: 0;
  font-size: 1em; 
  color: inherit;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--page-live-primary-color);
}

.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;
  font-size: 0.95em;
  color: var(--page-live-text-main);
}

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

.page-live__faq-answer p {
  margin: 0;
  color: inherit;
}

.page-live__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__partner-item {
  background-color: var(--page-live-card-bg);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 127px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 211, 107, 0.3);
}

.page-live__partner-item img {
  
  
  object-fit: contain;
  display: block;
}