.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2a0000 0%, #1a1a1a 100%); /* Dark gradient background */
}

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

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

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

.page-register__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: #000;
}

.page-register__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent link */
}

.page-register__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: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-register__video-link:hover .page-register__video-overlay {
  opacity: 1;
}

.page-register__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(204, 0, 0, 0.8); /* Primary brand color with transparency */
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

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

.page-register__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color, #CC0000); /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-register__play-now-button:hover {
  background: #ff3333; /* Slightly lighter red on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.6);
}

.page-register__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.3);
}

.page-register__title-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #1a1a1a; /* Dark background from body */
  color: #f0f0f0;
}

.page-register__title-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-register__main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color, #FFD700); /* Golden color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.page-register__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-register__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.page-register__cta-button--primary {
  background: var(--primary-color, #CC0000);
  color: #ffffff;
  border: 2px solid var(--primary-color, #CC0000);
}

.page-register__cta-button--primary:hover {
  background: #ff3333;
  border-color: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.5);
}

.page-register__cta-button--secondary {
  background: transparent;
  color: var(--secondary-color, #FFD700);
  border: 2px solid var(--secondary-color, #FFD700);
}

.page-register__cta-button--secondary:hover {
  background: var(--secondary-color, #FFD700);
  color: #1a1a1a; /* Dark text for golden background */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

.page-register__form-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #1a1a1a, #0d0d0d); /* Darker background for form */
  color: #f0f0f0;
  text-align: center;
}

.page-register__form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-register__form-title {
  font-size: 36px;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-register__form-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-register__registration-form {
  text-align: left;
}

.page-register__form-group {
  margin-bottom: 25px;
}

.page-register__form-label {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: #f0f0f0;
  font-weight: bold;
}

.page-register__form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #555;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-register__form-input::placeholder {
  color: #888;
}

.page-register__form-input:focus {
  border-color: var(--secondary-color, #FFD700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-register__form-checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.page-register__checkbox-input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color, #CC0000); /* Use brand color for checkbox */
}

.page-register__checkbox-label {
  font-size: 15px;
  color: #cccccc;
}

.page-register__terms-link {
  color: var(--secondary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__terms-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-register__submit-button {
  width: 100%;
  padding: 16px;
  background: var(--primary-color, #CC0000);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-register__submit-button:hover {
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.4);
}

.page-register__submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.page-register__faq-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Dark background */
  color: #f0f0f0;
}

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

.page-register__faq-main-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 50px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.page-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for items */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  border-radius: 10px;
  color: #ffffff;
}

.page-register__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-register__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700; /* Golden color for question text */
}

.page-register__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color, #CC0000); /* Red color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary-color, #CC0000);
  border-radius: 50%;
}

.page-register__faq-item.active .page-register__faq-toggle {
  color: #ffffff;
  background-color: var(--primary-color, #CC0000);
  transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-register__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03); /* Slightly lighter background for answer */
  border-radius: 0 0 10px 10px;
}

.page-register__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-register__brand-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  text-align: center;
}

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

.page-register__brand-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color, #CC0000);
  margin-bottom: 50px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.page-register__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-register__brand-item {
  background-color: rgba(255, 255, 255, 0.08); /* Card background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-register__brand-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  object-fit: cover;
}

.page-register__brand-item h3 {
  font-size: 24px;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register__brand-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-register__brand-cta {
  text-align: center;
}

.page-register__blog-section {
  padding: 80px 20px;
  background-color: #0d0d0d; /* Even darker background for blog */
  color: #f0f0f0;
}

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

.page-register__blog-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color, #FFD700);
  margin-bottom: 50px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.page-register__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__blog-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-register__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-register__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px; /* Padding for content below image */
}

.page-register__blog-image {
  width: 100%;
  height: 250px; /* Fixed height for blog images */
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-register__blog-item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color, #CC0000);
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-register__blog-item-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin: 0 20px 15px;
}

.page-register__blog-item-date {
  display: block;
  font-size: 14px;
  color: #888888;
  margin: 0 20px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.5;
  }

  /* General content area padding adjustment */
  .page-register__hero-section,
  .page-register__title-section,
  .page-register__form-section,
  .page-register__faq-section,
  .page-register__brand-section,
  .page-register__blog-section {
    padding: 40px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-register__title-container,
  .page-register__form-container,
  .page-register__faq-container,
  .page-register__brand-container,
  .page-register__blog-container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-register__main-title {
    font-size: 32px;
  }

  .page-register__title-description {
    font-size: 16px;
  }

  .page-register__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .page-register__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
  }

  .page-register__form-title,
  .page-register__faq-main-title,
  .page-register__brand-title,
  .page-register__blog-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-register__form-container {
    padding: 30px 20px;
  }

  .page-register__form-label,
  .page-register__checkbox-label {
    font-size: 14px;
  }

  .page-register__form-input {
    padding: 12px 15px;
    font-size: 15px;
  }

  .page-register__submit-button {
    font-size: 16px;
    padding: 14px;
  }

  .page-register__faq-question {
    padding: 15px 20px;
  }

  .page-register__faq-question h3 {
    font-size: 16px;
  }

  .page-register__faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 24px;
    margin-left: 15px;
  }

  .page-register__faq-item.active .page-register__faq-answer {
    padding: 15px 20px !important;
  }
}