.page-index {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.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 */
  background-color: #0A0A0A; /* 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;
  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(255, 211, 107, 0.4); /* Glow */
}

.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.5);
  border: 1px solid #3A2A12; /* Border */
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event on parent <a> */
}

.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.4);
  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: #FFF6D6; /* Text Main */
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  border-radius: 5px;
  white-space: nowrap;
}

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

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

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

.page-index__keyword-intro-visual {
  flex: 1;
  max-width: 50%;
}

.page-index__keyword-intro-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
}

.page-index__keyword-intro-content {
  flex: 1;
  max-width: 50%;
}

.page-index__keyword-intro-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
  line-height: 1.3;
}

.page-index__keyword-intro-text {
  font-size: 17px;
  margin-bottom: 15px;
  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 on gold button */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
  white-space: nowrap;
}

.page-index__keyword-intro-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.6); /* Glow */
}

.page-index__keyword-intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.page-index__keyword-intro-stat {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 25px 15px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__keyword-intro-stat-value {
  font-size: 36px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 8px;
}

.page-index__keyword-intro-stat-label {
  font-size: 16px;
  color: #FFF6D6; /* Text Main */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-index__articles-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-index__articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__articles-main-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 50px;
  text-align: left;
}

.page-index__articles-title-small {
  font-size: 18px;
  font-weight: 900;
  color: #F2C14E; /* Primary Color */
  text-transform: uppercase;
}

.page-index__articles-title-large {
  font-size: 44px;
  font-weight: 900;
  color: #FFD36B; /* Glow */
  line-height: 1;
}

.page-index__category-section {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.page-index__category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 1;
  min-width: 0;
}

.page-index__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.page-index__category-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #FFD36B; /* Glow */
}

.page-index__category-read-more {
  color: #F2C14E; /* Primary Color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-index__category-read-more:hover {
  color: #FFD36B; /* Glow */
  text-decoration: underline;
}

.page-index__articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.page-index__article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2); /* Glow */
}

.page-index__article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__article-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: #0A0A0A; /* Background */
  border-radius: 8px;
  margin-bottom: 0;
  border: 1px solid #3A2A12; /* Border */
}

.page-index__article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-index__article-provider-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(242, 193, 78, 0.8); /* Primary Color with opacity */
  color: #111111; /* Dark text for contrast */
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
}

.page-index__article-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 15px;
}

.page-index__article-title {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #FFF6D6; /* Text Main */
  transition: color 0.3s ease;
}

.page-index__article-title-link:hover .page-index__article-title {
  color: #F2C14E; /* Primary Color */
}

.page-index__partners-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Background */
}

.page-index__partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.page-index__partner-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 9px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-index__partner-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4); /* Glow */
}

.page-index__partner-logo {
  width: 167px;
  height: 127px;
  object-fit: contain;
  display: block;
}

.page-index__info-section {
  padding: 80px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-index__info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__info-main-title {
  font-size: 38px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
  color: #FFD36B; /* Glow */
  line-height: 1.3;
}

.page-index__info-content {
  line-height: 1.8;
  color: #FFF6D6; /* Text Main */
}

.page-index__info-subsection {
  margin-bottom: 40px;
}

.page-index__info-subtitle {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary Color */
  line-height: 1.3;
}