/* style/index.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #0056b3; /* Darker shade for hover */
  --accent-color: #EA7C07;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --light-bg-color: #f8f8f8;
  --dark-section-bg: #1a1a1a; /* Assuming shared.css dark-bg-1 is dark */
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
}

/* Base styles for the page content */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Default to light text for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-text-color);
}

.page-index__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-index__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-index__link-text {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Smart color contrast */
.page-index__dark-bg {
  background-color: var(--dark-section-bg);
  color: var(--light-text-color);
  padding: 80px 0;
}

.page-index__light-bg {
  background-color: var(--light-bg-color);
  color: var(--dark-text-color);
  padding: 80px 0;
}

.page-index__light-bg .page-index__section-title,
.page-index__light-bg .page-index__brand-subtitle,
.page-index__light-bg .page-index__feature-title,
.page-index__light-bg .page-index__step-title,
.page-index__light-bg .page-index__responsible-feature-title {
  color: var(--dark-text-color);
}

/* 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: #000;
}

.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;
}

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