.page-index__body-background {
  background-color: #0A0A0A;
  color: #FFF6D6; /* Text Main */
}

.page-index {
  color: #FFF6D6; /* Ensure overall text color is light for dark body background */
}

.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, body handles --header-offset */
  box-sizing: border-box;
}

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

.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 */
}

.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.5);
  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-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(242, 193, 78, 0.9); /* Using primary color */
  border-radius: 5px;
  white-space: nowrap;
}

.page-index__keyword-intro-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  box-sizing: border-box;
}

.page-index__keyword-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__keyword-intro-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-index__keyword-intro-visual {
  flex: 1;
  min-width: 0;
}

.page-index__keyword-intro-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-index__keyword-intro-content {
  flex: 1.2;
  min-width: 0;
}

.page-index__keyword-intro-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem); /* Using clamp for H1-like title */
  font-weight: 700;
  color: #F2C14E; /* Primary color */
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-index__keyword-intro-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-index__keyword-intro-cta {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
  border: none;
  cursor: pointer;
}