/* style/live.css */
/* Body padding-top is handled by shared.css for --header-offset */

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

.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Stacks image above content on smaller screens */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Top padding 10px as per instruction */
  overflow: hidden;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-live__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* clamp for H1 font-size */
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-live__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-live__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-live__cta-buttons--centered {
  margin-top: 40px;
}

.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  box-sizing: border-box;
  flex-grow: 1; /* Allow buttons to grow */
  max-width: 100%; /* Ensure buttons don't exceed container */
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 216, 106, 0.4);
}

.page-live__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Main color for border */
}

.page-live__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #FFD36B;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  max-width: fit-content;
  margin-top: auto; /* Push to bottom of card */
}

.page-live__video-section {
  position: relative;
  width: 100%;
  padding: 10px 20px 60px; /* Top padding 10px as per instruction */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0A0A0A; /* Background */
}

.page-live__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  box-sizing: border-box; /* Ensure padding/border is included in width */
}

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

.page-live__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allow clicks to pass through to video */
}

.page-live__video-container:hover .page-live__video-overlay {
  opacity: 1;
  pointer-events: auto; /* Enable clicks on overlay when hovered */
}

.page-live__video-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

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

.page-live__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
}

.page-live__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #FFF6D6; /* Text Main */
}

.page-live__text-block a {
  color: #FFD36B; /* Glow color */
  text-decoration: underline;
}

.page-live__text-block a:hover {
  color: #F2C14E;
}

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

.page-live__game-card {
  display: flex;
  flex-direction: column;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards are same height */
}

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

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live__game-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-live__game-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-live__game-title a:hover {
  text-decoration: underline;
  color: #FFD36B;
}

.page-live__game-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-live__game-card .page-live__btn-primary {
  margin: 0 20px 20px;
}

.page-live__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-live__feature-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
}

.page-live__feature-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

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

.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
}

.page-live__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-live__promo-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-live__promo-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-live__promo-title a:hover {
  text-decoration: underline;
  color: #FFD36B;
}

.page-live__promo-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-live__promo-card .page-live__btn-primary {
  margin: 0 20px 20px;
}

.page-live__mobile-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-live__mobile-content {
  text-align: center;
  max-width: 600px;
}

.page-live__mobile-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
}

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

.page-live__mobile-content .page-live__cta-buttons {
  margin-top: 0;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-live__step-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-live__step-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-live__step-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
}

.page-live__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-live__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}