:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --text-main-color: #FFF6D6;
  --card-bg-color: #111111;
  --background-color: #0A0A0A;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

body {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-index {
  color: var(--text-main-color);
}

.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: var(--background-color);
}

.page-index__video-container {
  position: relative;
  width: 100%; /* Important for desktop flex alignment */
  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(255, 211, 107, 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);
  border: 1px solid var(--border-color);
}