/* style/resources-new88-login-details.css */
.page-resources-new88-login-details {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-new88-login-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-new88-login-details__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-new88-login-details__section:nth-of-type(even) {
  background-color: #eef4f8; /* Light blue-grey for contrast */
}

.page-resources-new88-login-details__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-new88-login-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources-new88-login-details__section-intro {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-new88-login-details__text-block {
  font-size: 1em;
  color: #444;
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}

/* Hero Section */
.page-resources-new88-login-details__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-new88-login-details__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-resources-new88-login-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  line-height: 1.2;
}

.page-resources-new88-login-details__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-resources-new88-login-details__hero-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-new88-login-details__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-resources-new88-login-details__hero-image-wrapper {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
}

.page-resources-new88-login-details__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Official Links Section */
.page-resources-new88-login-details__official-links .page-resources-new88-login-details__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new88-login-details__link-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-resources-new88-login-details__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-new88-login-details__link-card h3 {
  color: #003366;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-new88-login-details__link-card p {
  color: #666;
  margin-bottom: 25px;
}

.page-resources-new88-login-details__link-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-new88-login-details__link-button:hover {
  background-color: #004488;
}

.page-resources-new88-login-details__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Step-by-Step Guide Section */
.page-resources-new88-login-details__step-by-step .page-resources-new88-login-details__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new88-login-details__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-resources-new88-login-details__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-new88-login-details__step-item h3 {
  color: #003366;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-new88-login-details__step-item p {
  color: #666;
}

.page-resources-new88-login-details__cta-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-new88-login-details__cta-button:hover {
  background-color: #004488;
  transform: translateY(-3px);
}

.page-resources-new88-login-details__cta-button--secondary {
  background-color: #FFCC00;
  color: #003366;
}

.page-resources-new88-login-details__cta-button--secondary:hover {
  background-color: #e6b800;
}

/* Troubleshooting Section */
.page-resources-new88-login-details__troubleshooting .page-resources-new88-login-details__issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new88-login-details__issue-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-resources-new88-login-details__issue-card h3 {
  color: #003366;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-new88-login-details__issue-card p {
  color: #666;
}

/* Security Tips Section */
.page-resources-new88-login-details__security-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-resources-new88-login-details__security-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFCC00;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #444;
  font-size: 1.05em;
}

.page-resources-new88-login-details__security-list li strong {
  color: #003366;
}

/* FAQ Section */
.page-resources-new88-login-details__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    text-align: left;
}

.page-resources-new88-login-details__faq-item h3 {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-resources-new88-login-details__faq-item p {
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-new88-login-details__hero-title {
    font-size: 2.8em;
  }
  .page-resources-new88-login-details__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-new88-login-details__hero {
    padding: 80px 15px;
  }
  .page-resources-new88-login-details__hero-title {
    font-size: 2.2em;
  }
  .page-resources-new88-login-details__hero-description {
    font-size: 1.1em;
  }
  .page-resources-new88-login-details__section {
    padding: 40px 0;
  }
  .page-resources-new88-login-details__section-title {
    font-size: 1.8em;
  }
  .page-resources-new88-login-details__link-grid,
  .page-resources-new88-login-details__steps-grid,
  .page-resources-new88-login-details__issue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-new88-login-details__hero-title {
    font-size: 1.8em;
  }
  .page-resources-new88-login-details__hero-description {
    font-size: 1em;
  }
  .page-resources-new88-login-details__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-new88-login-details__section-title {
    font-size: 1.5em;
  }
  .page-resources-new88-login-details__section-intro,
  .page-resources-new88-login-details__text-block {
    font-size: 0.95em;
  }
  .page-resources-new88-login-details__link-card,
  .page-resources-new88-login-details__step-item,
  .page-resources-new88-login-details__issue-card,
  .page-resources-new88-login-details__security-list li,
  .page-resources-new88-login-details__faq-item {
    padding: 20px;
  }
  .page-resources-new88-login-details__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-resources-new88-login-details__step-item {
    padding-top: 50px;
  }
}