/* style/live.css */

/* Base styles for the page-live scope */
.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__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-live__sub-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__highlight {
  color: #FFD36B; /* Auxiliary color for highlights */
  font-weight: bold;
}

/* Hero Video Section */
.page-live__hero-video-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for visual impact */
  overflow: hidden;
  text-align: center;
}

.page-live__video-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Ensure full width */
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  display: flex; /* For centering video if smaller than container */
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between video and content */
}

.page-live__video {
  width: 100%; /* Ensure video takes full width of its container */
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure video is visible */
  cursor: pointer;
}

.page-live__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Make the link clickable over the video */
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Pull content up slightly over the video */
  background: rgba(17, 17, 17, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.page-live__tagline {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons adapt to container width */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

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

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFE68A 0%, #EBB03A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

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

.page-live__btn-text {
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  margin-top: 15px;
  text-align: center;
}

.page-live__btn-text:hover {
  color: #F2C14E;
}

/* About Section */
.page-live__about-section {
  padding: 60px 0;
  text-align: center;
}

/* Live Casino Section & General Card Grid */
.page-live__live-casino-section,
.page-live__why-choose-section,
.page-live__getting-started-section,
.page-live__vip-program-section,
.page-live__cta-section {
  padding: 60px 0;
}

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