.page-index-jjun88-login-portal {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-index-jjun88-login-portal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-jjun88-login-portal-text-center {
  text-align: center;
}

.page-index-jjun88-login-portal-mt-40 {
  margin-top: 40px;
}

.page-index-jjun88-login-portal-highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-index-jjun88-login-portal-hero {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.page-index-jjun88-login-portal-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-index-jjun88-login-portal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 34, 57, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 2;
}

.page-index-jjun88-login-portal-hero .page-index-jjun88-login-portal-container {
  position: relative;
  z-index: 3;
}

.page-index-jjun88-login-portal-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-jjun88-login-portal-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-jjun88-login-portal-hero-actions .page-index-jjun88-login-portal-btn {
  margin: 0 10px;
}

/* Buttons */
.page-index-jjun88-login-portal-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-index-jjun88-login-portal-btn-primary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-index-jjun88-login-portal-btn-primary:hover {
  background-color: #E6C200;
  color: #000000;
}

.page-index-jjun88-login-portal-btn-secondary {
  background-color: #0A2239;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-jjun88-login-portal-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-index-jjun88-login-portal-btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-jjun88-login-portal-btn-outline:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-index-jjun88-login-portal-btn-outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-index-jjun88-login-portal-btn-outline-light:hover {
  background-color: #FFFFFF;
  color: #0A2239;
}

/* Sections */
.page-index-jjun88-login-portal-section {
  padding: 60px 0;
}

.page-index-jjun88-login-portal-bg-dark {
  background-color: #0A2239;
}

.page-index-jjun88-login-portal-text-light {
  color: #E0E0E0;
}

.page-index-jjun88-login-portal-section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-index-jjun88-login-portal-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

/* Why Choose Section */
.page-index-jjun88-login-portal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-jjun88-login-portal-feature-item {
  background-color: #1F1F1F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-jjun88-login-portal-feature-item:hover {
  transform: translateY(-10px);
}

.page-index-jjun88-login-portal-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed brightness for icons, not color change */
}

.page-index-jjun88-login-portal-feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-jjun88-login-portal-feature-text {
  color: #C0C0C0;
}

/* How To Login Section */
.page-index-jjun88-login-portal-how-to-login {
  position: relative;
  padding-bottom: 100px; /* Space for image */
}

.page-index-jjun88-login-portal-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-jjun88-login-portal-step-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-jjun88-login-portal-step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A2239;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-jjun88-login-portal-step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-jjun88-login-portal-step-text {
  color: #C0C0C0;
}

.page-index-jjun88-login-portal-login-guide-image {
  width: 80%;
  max-width: 900px;
  display: block;
  margin: 60px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-index-jjun88-login-portal-faq-items {
  margin-top: 40px;
}

.page-index-jjun88-login-portal-faq-item {
  background-color: #1F1F1F;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-jjun88-login-portal-faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-jjun88-login-portal-faq-answer {
  color: #C0C0C0;
}

.page-index-jjun88-login-portal-faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-jjun88-login-portal-faq-answer a:hover {
  color: #E6C200;
}

/* Register & App Promo Section */
.page-index-jjun88-login-portal-flex-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-index-jjun88-login-portal-content-block {
  flex: 1;
}

.page-index-jjun88-login-portal-image-block {
  flex: 1;
  text-align: center;
}

.page-index-jjun88-login-portal-responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-jjun88-login-portal-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-jjun88-login-portal-list li {
  margin-bottom: 10px;
  color: #C0C0C0;
  display: flex;
  align-items: flex-start;
}

.page-index-jjun88-login-portal-list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1.6;
}

/* App Download Section specific */
.page-index-jjun88-login-portal-app-download-promo .page-index-jjun88-login-portal-content-block .page-index-jjun88-login-portal-list-icon {
  color: #FFD700; /* Ensure icon color is visible on dark background */
}

/* Promotions Section */
.page-index-jjun88-login-portal-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-jjun88-login-portal-promo-card {
  background-color: #1F1F1F;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-jjun88-login-portal-promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-jjun88-login-portal-promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-jjun88-login-portal-promo-text {
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Contact Support Section */
.page-index-jjun88-login-portal-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-jjun88-login-portal-contact-item {
  background-color: #1F1F1F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-jjun88-login-portal-contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed brightness for icons */
}

.page-index-jjun88-login-portal-contact-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-jjun88-login-portal-contact-text {
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-jjun88-login-portal-hero-title {
    font-size: 2.8em;
  }
  .page-index-jjun88-login-portal-section-title {
    font-size: 2em;
  }
  .page-index-jjun88-login-portal-flex-row {
    flex-direction: column;
  }
  .page-index-jjun88-login-portal-reverse-on-mobile {
    flex-direction: column-reverse;
  }
  .page-index-jjun88-login-portal-image-block, .page-index-jjun88-login-portal-content-block {
    width: 100%;
  }
  .page-index-jjun88-login-portal-login-guide-image {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .page-index-jjun88-login-portal-hero {
    height: 450px;
  }
  .page-index-jjun88-login-portal-hero-title {
    font-size: 2.2em;
  }
  .page-index-jjun88-login-portal-hero-description {
    font-size: 1em;
  }
  .page-index-jjun88-login-portal-hero-actions .page-index-jjun88-login-portal-btn {
    display: block;
    margin: 15px auto;
  }
  .page-index-jjun88-login-portal-section {
    padding: 40px 0;
  }
  .page-index-jjun88-login-portal-section-title {
    font-size: 1.8em;
  }
  .page-index-jjun88-login-portal-feature-item, .page-index-jjun88-login-portal-step-item, .page-index-jjun88-login-portal-promo-card, .page-index-jjun88-login-portal-contact-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-jjun88-login-portal-hero {
    height: 400px;
  }
  .page-index-jjun88-login-portal-hero-title {
    font-size: 1.8em;
  }
  .page-index-jjun88-login-portal-hero-description {
    font-size: 0.9em;
  }
  .page-index-jjun88-login-portal-section-title {
    font-size: 1.5em;
  }
  .page-index-jjun88-login-portal-login-guide-image {
    margin-top: 40px;
  }
}