/* style/index.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --button-text-color: #FFFF00;
  --dark-background: #0a0a0a; /* Inherited from body */
  --light-text-color: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.05);
  --faq-question-bg: #1a1a1a;
  --faq-answer-bg: #2a2a2a;
}

.page-index {
  background-color: var(--dark-background);
  color: var(--light-text-color); /* Main text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.page-index__section {
  padding: 80px 20px;
  text-align: center;
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-index__subtitle {
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Video Section */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--dark-background);
}

.page-index__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}