.page-index {
  font-family: 'Arial', sans-serif;
  color: var(--Text-Main, #F2FFF6); /* Default text color for the page */
  background-color: var(--Background, #08160F); /* Default background for the page */
}

.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  box-sizing: border-box;
}

.page-index__video-intro-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--Text-Main, #F2FFF6);
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  line-height: 1.3;
}

.page-index__video-intro-text {
  font-size: 16px;
  color: var(--Text-Secondary, #A7D9B8);
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  line-height: 1.7;
}

.page-index__video-container {
  position: relative;
  width: 100%; /* Important for desktop width */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent <a> */
}

.page-index__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
  opacity: 1;
}

.page-index__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-index__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--Text-Main, #F2FFF6);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index__play-now-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__title-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--Background, #08160F);
  box-sizing: border-box;
}

.page-index__title-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index__main-title {
  color: var(--Text-Main, #F2FFF6);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive H1 font-size */
}

.page-index__title-description {
  font-size: 18px;
  color: var(--Text-Secondary, #A7D9B8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__title-subtext {
  font-size: 15px;
  color: var(--Text-Secondary, #A7D9B8);
  margin-top: 30px;
  line-height: 1.5;
}

.page-index__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  min-width: 180px;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--Text-Main, #F2FFF6);
}

.page-index__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.page-index__cta-button--secondary {
  background: var(--Card-B-G, #11271B);
  color: var(--Glow, #57E38D);
  border: 2px solid var(--Border, #2E7A4E);
}

.page-index__cta-button--secondary:hover {
  background: var(--Deep-Green, #0A4B2C);
  color: var(--Text-Main, #F2FFF6);
  border-color: var(--Glow, #57E38D);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.page-index__brand-section {
  padding: 80px 20px;
  background-color: var(--Background, #08160F);
  color: var(--Text-Main, #F2FFF6);
  box-sizing: border-box;
}

.page-index__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__brand-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: var(--Text-Main, #F2FFF6);
  position: relative;
  padding-bottom: 15px;
}

.page-index__brand-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--Glow, #57E38D), transparent);
  border-radius: 2px;
}

.page-index__brand-intro-text {
  font-size: 18px;
  text-align: center;
  color: var(--Text-Secondary, #A7D9B8);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

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

.page-index__brand-item {
  background-color: var(--Card-B-G, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--Divider, #1E3A2A);
}

.page-index__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-index__brand-item-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--Glow, #57E38D);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index__brand-item p {
  font-size: 16px;
  color: var(--Text-Secondary, #A7D9B8);
  line-height: 1.7;
}

.page-index__brand-image-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-index__brand-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--Divider, #1E3A2A);
}