/* style/register.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000;
  --bg-light: #f9f9f9;
  --border-color: #333;
  --card-bg: rgba(255, 255, 255, 0.1);
}

.page-register {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is dark, so text should be light */
  background-color: var(--bg-dark); /* Ensure main content area matches body if not overridden */
}

/* Ensure content is not hidden by fixed header */
.page-register__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 actual header height */
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.5);
}

.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(255, 215, 0, 0.3);
}

.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 4px 12px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--primary-color);
}

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

.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.5);
  border-radius: 8px;
  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: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(139, 0, 0, 0.8);
  border-radius: 8px;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
}

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

.page-register__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-register__play-now-button:hover {
  background: #FFC400;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  color: var(--secondary-color);
}

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

.page-register__title-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  text-align: center;
  color: var(--text-light);
}

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

.page-register__main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-register__title-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-register__title-description a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register__title-description a:hover {
  color: #FFC400;
  text-decoration: underline;
}

.page-register__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  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 rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-register__cta-button:hover {
  background: #FFC400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
  color: var(--secondary-color);
}

.page-register__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.page-register__cta-button--secondary:hover {
  background: #A50000;
  border-color: #FFC400;
  color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.5);
}

.page-register__form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-register__form-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-register__form-group {
  margin-bottom: 20px;
  text-align: left;
}

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