:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f8f9fa;
  --card-background-dark-mode: rgba(255, 255, 255, 0.08);
  --card-background-light-mode: #ffffff;
}

/* 页面整体样式 */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark-bg); /* Default text color for the page content, assuming a dark body background */
  background-color: var(--background-dark); /* Ensure consistency with body background */
}

/* 固定导航栏间距 */
.page-terms-conditions__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
  text-align: center;
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
  font-weight: bold;
}

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-color-dark-bg);
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button--secondary {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-terms-conditions__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-terms-conditions__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

/* Nội dung chính các điều khoản */
.page-terms-conditions__content-section {
  padding: 60px 0;
}

.page-terms-conditions__section-title {
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  color: var(--text-color-dark-bg);
}

.page-terms-conditions__sub-section-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-color-dark-bg);
}

.page-terms-conditions ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-terms-conditions li {
  margin-bottom: 8px;
  color: var(--text-color-dark-bg);
}

/* Video Section Styles */
.page-terms-conditions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust based on navigation bar height */
  background-color: var(--background-dark);
}

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

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

.page-terms-conditions__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__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.15);
}

.page-terms-conditions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}