/* style/index.css */

/* Variables for consistency */
:root {
  --primary-color: #26A9E0; /* 淡蓝色 */
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF; /* For elements on dark backgrounds */
  --text-color-light-bg: #333333; /* For elements on light backgrounds */
  --background-color-dark: #1a1a2e; /* From shared.css body background */
  --button-login-color: #EA7C07; /* 登录 */
}

/* Base styles for the page content */
.page-index {
  color: var(--text-color-dark-bg); /* Default text color on body's dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color-dark); /* Ensure consistency, though body handles it */
}

/* 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); /* Fixed header offset */
  background-color: #000000; /* Dark background for video section */
}