.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background-color: #B71C1C; /* Background color for hero section */
}

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

.page-login__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-login__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #FFF5E1; /* Text Main on dark background */
}

.page-login__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-login__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1; /* Text Main */
}

.page-login__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.page-login__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-login__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-login__cta-button--secondary {
  background: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border color */
}

.page-login__cta-button--secondary:hover {
  background: #E53935; /* Auxiliary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-login__section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-login__dark-section {
  background-color: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-login__section-title {
  font-size: 2.5em;
  color: #C91F17; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-login__section-title--light {
  color: #FFF5E1; /* Text Main */
}

.page-login__text-content {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-login__text-content--light {
  color: #FFF5E1;
}

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

.page-login__guide-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF5E1; /* Text Main */
}

.page-login__guide-title {
  font-size: 1.5em;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-login__guide-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-login__guide-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-login__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-login__benefits-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #C91F17;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__benefits-title {
  font-size: 1.8em;
  color: #C91F17; /* Main color */
  margin-bottom: 10px;
}

.page-login__game-showcase {
  margin-top: 50px;
  text-align: center;
}

.page-login__game-showcase img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 1000px; /* Display width */
  height: 750px; /* Display height */
}

.page-login__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-login__features-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1; /* Text Main */
}

.page-login__features-title {
  font-size: 1.6em;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-login__cta-download {
  text-align: center;
  margin-top: 50px;
}

.page-login__security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__card {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1; /* Text Main */
  border: 1px solid #F2B544; /* Border color */
}

.page-login__card-title {
  font-size: 1.8em;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-login__security-image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-login__security-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 800px; /* Display width */
  height: 600px; /* Display height */
}

.page-login__faq-list {
  margin-top: 40px;
}

details.page-login__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border color */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

details.page-login__faq-item summary.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-login__faq-item summary.page-login__faq-question::-webkit-details-marker {
  display: none;
}

details.page-login__faq-item summary.page-login__faq-question:hover {
  background: #C91F17; /* Main color */
}

.page-login__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF5E1; /* Text Main */
}

.page-login__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-login__faq-item .page-login__faq-answer {
  padding: 0 20px 20px;
  background: #C91F17; /* Main color */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1; /* Text Main */
}

.page-login__cta-final {
  text-align: center;
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-login__hero-image img,
  .page-login__guide-image-wrapper img,
  .page-login__game-showcase img,
  .page-login__security-image-wrapper img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-login__main-title {
    font-size: 2.2em;
  }

  .page-login__hero-description {
    font-size: 1em;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-login__cta-button,
  .page-login__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-login__section {
    padding: 40px 15px;
  }

  .page-login__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-login__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-login__text-content {
    font-size: 0.95em;
  }

  .page-login__guide-item,
  .page-login__features-item,
  .page-login__card {
    padding: 20px;
  }

  .page-login__guide-title,
  .page-login__benefits-title,
  .page-login__features-title,
  .page-login__card-title {
    font-size: 1.4em;
  }

  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-login__section,
  .page-login__card,
  .page-login__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-login__faq-item summary.page-login__faq-question {
    padding: 15px;
  }
  .page-login__faq-qtext {
    font-size: 1em;
  }
  .page-login__faq-toggle {
    font-size: 20px;
  }
  details.page-login__faq-item .page-login__faq-answer {
    padding: 0 15px 15px;
  }
}