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

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

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height to maintain aspect ratio */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-live__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

/* Video Section */
.page-live__video-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A;
  text-align: center;
}

.page-live__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-live__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 30px;
}

.page-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

/* General Section Styles */
.page-live__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-live__content-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-live__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-live__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

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

.page-live__feature-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #3A2A12; /* Border */
}

.page-live__feature-title {
  font-size: 1.8rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__feature-item p {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

.page-live__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

/* Game Categories */
.page-live__game-categories {
  padding: 80px 0;
}

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

.page-live__category-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
}

.page-live__category-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__category-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__category-link {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push to bottom */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__category-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

/* Get Started Section */
.page-live__get-started {
  padding: 80px 0;
}

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

.page-live__step-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-live__step-number {
  font-size: 2.5rem;
  color: #FFD36B;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-live__step-title {
  font-size: 1.6rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-live__step-item p {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* Info Section */
.page-live__info-section {
  padding: 80px 0;
  text-align: center;
}

.page-live__info-section .page-live__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.page-live__info-item {
  background-color: #0A0A0A;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
}

.page-live__info-item .page-live__section-title {
  margin-bottom: 25px;
}

.page-live__info-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin: 20px auto 30px auto;
  display: block;
}

/* Partners Section */
.page-live__partners-section {
  padding: 80px 0;
  text-align: center;
}

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

.page-live__partner-logo {
  background-color: #111111; /* Card BG */
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 167px; /* Fixed width for partner logos */
  height: 127px; /* Fixed height for partner logos */
  box-sizing: border-box;
}

.page-live__partner-logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
}