:root {
  --primary-color: #11A84E; /* Main color */
  --secondary-color: #22C768; /* Auxiliary color */
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  --card-bg: #11271B; /* Card background */
  --background-color: #08160F; /* Overall background */
  --text-main: #F2FFF6; /* Main text color */
  --text-secondary: #A7D9B8; /* Secondary text color */
  --border-color: #2E7A4E; /* Border color */
  --glow-color: #57E38D; /* Glow color */
  --gold-color: #F2C14E; /* Gold color */
  --divider-color: #1E3A2A; /* Divider color */
  --deep-green-color: #0A4B2C; /* Deep Green color */
}

.page-index {
  background-color: var(--background-color);
  color: var(--text-main); /* Ensure light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* General container styles */
.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Video Section */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* body padding-top handles header offset, this is extra spacing */
  padding-top: 10px; 
  background-color: var(--deep-green-color); /* Use a slightly different background for visual separation */
}

.page-index__video-container {
  position: relative;
  width: 100%; /* Important for desktop flex container */
  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;
}