/* style/live.css */
.page-live {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Only 10px padding-top, body handles header offset */
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
}

.page-live__video-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-live__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-live__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
}

.page-live__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-live__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-live__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
  margin-left: 15px;
}

.page-live__btn-secondary:hover {
  transform: translateY(-2px);
  background: #222222;
}

.page-live__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD36B; /* Glow */
}

.page-live__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-live__overview-section, 
.page-live__games-section, 
.page-live__why-choose-section, 
.page-live__promotions-section, 
.page-live__get-started-section, 
.page-live__mobile-section, 
.page-live__partners-section, 
.page-live__faq-section, 
.page-live__cta-final-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-live__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live__image--large {
    max-width: 1000px;
}

.page-live__image--promo {
    max-width: 800px;
}

.page-live__image--mobile {
    max-width: 400px;
}

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

.page-live__category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFF6D6;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-live__category-item:hover {
  background-color: #222222;
  border-color: #FFD36B; /* Glow */
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  /* filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5)); */ /* Removed filter as per instructions */
}

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