/* style/live.css */

/* Base styles for the page-live scope */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color on dark background */
  background-color: #0A0A0A; /* Page background color */
}

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

.page-live__section-title {
  font-size: clamp(2em, 2.5vw, 3em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Primary color for titles */
  line-height: 1.2;
}

.page-live__sub-title {
  font-size: clamp(1.5em, 2vw, 2em);
  font-weight: 600;
  color: #FFD36B; /* Auxiliary color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-live__text-block p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Main text color */
}

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

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

.page-live__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A; /* Ensure dark background for contrast */
  overflow: hidden;
}

.page-live__video-container {
  width: 100%;
  max-width: 1200px; /* Desktop max width */
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio for video */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

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

.page-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-live__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 1;
}

.page-live__main-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  font-weight: 800;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-live__hero-description {
  font-size: clamp(1.1em, 1.5vw, 1.3em);
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-live__cta-button {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-live__btn-secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-live__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #FFD36B;
}

/* About PAGCOR Section */
.page-live__about-pagcor-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

/* Games Section */
.page-live__games-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 20px;
}

.page-live__section-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #FFF6D6;
}

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

.page-live__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-live__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-live__game-card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin: 20px 15px 10px;
}

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

.page-live__game-card-title a:hover {
  color: #F2C14E;
}

.page-live__game-card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 15px 20px;
}

/* Promotions Section */
.page-live__promotions-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
  padding: 80px 20px;
}

/* Mobile Section */
.page-live__mobile-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 20px;
}

.page-live__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-live__mobile-text {
  flex: 1;
}