/* style/resources-bj88-platform-security-advantages.css */

/* Variables for consistency */
:root {
  --primary-color: #1A2B3C;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-bj88-platform-security-advantages {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
  background-color: var(--background-light); /* Light background for the page */
  /* Fixed Navbar Spacing - Desktop */
  padding-top: 120px; /* Adjust based on actual header height */
}

.page-resources-bj88-platform-security-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-bj88-platform-security-advantages__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-bj88-platform-security-advantages__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-bj88-platform-security-advantages__sub-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-bj88-platform-security-advantages__paragraph {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-bj88-platform-security-advantages__highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.page-resources-bj88-platform-security-advantages__inline-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-bj88-platform-security-advantages__inline-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.page-resources-bj88-platform-security-advantages__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a506b 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-resources-bj88-platform-security-advantages__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatEffect 8s ease-in-out infinite;
  z-index: 0;
}

.page-resources-bj88-platform-security-advantages__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatEffect 10s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes floatEffect {
  0% { transform: translate(0, 0); }
  50% { transform: translate(10px, 10px); }
  100% { transform: translate(0, 0); }
}

.page-resources-bj88-platform-security-advantages__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}

.page-resources-bj88-platform-security-advantages__hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.page-resources-bj88-platform-security-advantages__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  z-index: 1;
  position: relative;
}

/* Buttons */
.page-resources-bj88-platform-security-advantages__btn-primary,
.page-resources-bj88-platform-security-advantages__btn-secondary,
.page-resources-bj88-platform-security-advantages__btn-download,
.page-resources-bj88-platform-security-advantages__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Ensure buttons are responsive */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-bj88-platform-security-advantages__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-bj88-platform-security-advantages__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-bj88-platform-security-advantages__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-bj88-platform-security-advantages__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-bj88-platform-security-advantages__btn-download {
  background-color: var(--primary-color);
  color: var(--text-light);
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 16px;
}

.page-resources-bj88-platform-security-advantages__btn-download:hover {
  background-color: #3a506b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-bj88-platform-security-advantages__btn-small {
  padding: 8px 18px;
  font-size: 14px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 5px;
  box-shadow: none;
}

.page-resources-bj88-platform-security-advantages__btn-small:hover {
  background-color: #3a506b;
  transform: translateY(-1px);
}

/* Intro Section */
.page-resources-bj88-platform-security-advantages__intro-section {
  padding: 60px 0;
  background-color: var(--background-white);
  border-bottom: 1px solid var(--border-color);
}

/* Why BJ88 Section */
.page-resources-bj88-platform-security-advantages__why-bj88-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-resources-bj88-platform-security-advantages__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-bj88-platform-security-advantages__feature-card {
  background-color: var(--background-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-bj88-platform-security-advantages__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-bj88-platform-security-advantages__feature-icon {
  width: 100%; /* Make image take full width of card */
  max-width: 400px; /* Limit max width to prevent distortion */
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Ensure images are not too small */
}

.page-resources-bj88-platform-security-advantages__card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-bj88-platform-security-advantages__card-text {
  font-size: 16px;
  color: var(--text-dark);
}

/* Login Guide Section */
.page-resources-bj88-platform-security-advantages__login-guide-section {
  padding: 60px 0;
  background-color: var(--background-white);
}

.page-resources-bj88-platform-security-advantages__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.page-resources-bj88-platform-security-advantages__image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-bj88-platform-security-advantages__main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  min-height: 200px; /* Ensure images are not too small */
}

.page-resources-bj88-platform-security-advantages__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  box-sizing: border-box;
}

.page-resources-bj88-platform-security-advantages__ordered-list,
.page-resources-bj88-platform-security-advantages__unordered-list {
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 17px;
}

.page-resources-bj88-platform-security-advantages__ordered-list li,
.page-resources-bj88-platform-security-advantages__unordered-list li {
  margin-bottom: 10px;
}

/* Benefits Section */
.page-resources-bj88-platform-security-advantages__benefits-section {
  padding: 60px 0;
  background-color: var(--primary-color); /* Dark background */
  color: var(--text-light); /* Light text for dark background */
}

.page-resources-bj88-platform-security-advantages__benefits-section .page-resources-bj88-platform-security-advantages__section-title {
  color: var(--text-light);
}

.page-resources-bj88-platform-security-advantages__benefits-section .page-resources-bj88-platform-security-advantages__section-title::after {
  background-color: var(--secondary-color);
}

.page-resources-bj88-platform-security-advantages__benefits-section .page-resources-bj88-platform-security-advantages__highlight {
  color: var(--secondary-color);
}

.page-resources-bj88-platform-security-advantages__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-bj88-platform-security-advantages__benefit-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-bj88-platform-security-advantages__benefit-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-bj88-platform-security-advantages__benefit-icon {
  width: 100%;
  max-width: 250px; /* Slightly smaller for benefit icons */
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Ensure images are not too small */
}

/* Other Games Section */
.page-resources-bj88-platform-security-advantages__other-games-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

.page-resources-bj88-platform-security-advantages__game-item {
  background-color: var(--background-white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-bj88-platform-security-advantages__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-bj88-platform-security-advantages__game-thumbnail {
  width: 100%;
  height: 180px; /* Fixed height for thumbnails */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-height: 180px; /* Ensure images are not too small */
}

.page-resources-bj88-platform-security-advantages__game-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-bj88-platform-security-advantages__game-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-bj88-platform-security-advantages__faq-section {
  padding: 60px 0;
  background-color: var(--background-white);
}

.page-resources-bj88-platform-security-advantages__faq-list {
  margin-top: 40px;
}