:root {
  --primary-color: #0A246A; /* Deep Tech Blue */
  --secondary-color: #F39C12; /* Golden Orange */
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --background-dark: #0a0a0a; /* Body background */
  --background-light-section: #f0f2f5; /* For light sections */
  --border-color: #e0e0e0;
  --card-background: #1a1a1a; /* Darker background for cards on dark body */
  --card-border: rgba(255, 255, 255, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(0, 0, 0, 0.15);
}

.page-resources {
  color: var(--text-on-dark); /* Default light text for dark body background */
  background-color: var(--background-dark); /* Ensure consistency */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 80px; /* General padding for main content */
}

/* --- Video Section --- */
.page-resources__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: According to instructions */
  background-color: var(--background-dark);
}

.page-resources__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.page-resources__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 var(--shadow-dark);
}

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

.page-resources__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-resources__video-link:hover .page-resources__video-overlay {
  opacity: 1;
}

.page-resources__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px var(--shadow-dark);
  padding: 10px 20px;
  background: rgba(10, 36, 106, 0.8); /* Using primary color with transparency */
  border-radius: 5px;
  white-space: nowrap;
}

.page-resources__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-resources__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Golden Orange */
  color: var(--text-on-light); /* Dark text for golden orange button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-dark);
  border: none;
  cursor: pointer;
}

.page-resources__play-now-button:hover {
  background: #e08e0a; /* Slightly darker golden orange */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}

.page-resources__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px var(--shadow-dark);
}

/* --- Hero Section (Module 1) --- */
.page-resources__hero-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-resources__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.page-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-dark);
  border: 2px solid transparent;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box; /* Responsive button */
  white-space: normal; /* Responsive button */
  word-wrap: break-word; /* Responsive button */
}

.page-resources__btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-on-light); /* Dark text on orange */
}

.page-resources__btn-primary:hover {
  background-color: #e08e0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}}