.page-login {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000000; /* Ensure consistency with shared.css if it's dark */
}

.page-login__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
  text-align: left;
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  margin-right: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.page-login__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  font-weight: bold;
}

.page-login__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-login__login-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
  box-sizing: border-box;
}

.page-login__login-title {
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}

.page-login__form-group {
  margin-bottom: 20px;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: bold;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.page-login__form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.page-login__btn-primary {
  background: #EA7C07; /* Login button color */
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  display: inline-block;
  box-sizing: border-box;
}

.page-login__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-login__forgot-password {
  color: #26A9E0;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.page-login__forgot-password:hover {
  color: #1e87b8;
}

.page-login__register-prompt {
  text-align: center;
  margin-top: 25px;
  color: #f0f0f0;
  font-size: 0.95em;
}

.page-login__register-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__register-link:hover {
  color: #1e87b8;
}

.page-login__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-login__section {
  padding: 80px 20px;
  text-align: center;
  color: #ffffff; /* Default text color for dark background */
  background-color: #000000;
}

.page-login__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
  font-weight: bold;
}

.page-login__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-login__benefits-grid,
.page-login__troubleshooting-grid,
.page-login__games-grid,
.page-login__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-login__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.page-login__benefit-icon,
.page-login__game-image,
.page-login__promotion-image,
.page-login__step-image {
  width: 100%;
  height: 200px; /* Consistent height for card images and step image */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-login__benefit-title,
.page-login__issue-title,
.page-login__game-title,
.page-login__promotion-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
  line-height: 1.3;
  font-weight: bold;
}

.page-login__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-login__game-title a:hover {
  text-decoration: underline;
}

.page-login__benefit-text,
.page-login__issue-text,
.page-login__game-text,
.page-login__promotion-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-login__btn-secondary {
  background: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border: 2px solid #26A9E0;
  border-radius: 8px;
  font-size: 0.95em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  margin-top: 20px;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-login__btn-secondary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
  transform: translateY(-2px);
}

.page-login__guide-section {
  background-color: #0d0d0d;
}

.page-login__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.page-login__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-login__step-number {
  width: 60px;
  height: 60px;
  background: #26A9E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-login__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}