/* style/resources-13win-game-security-strategy.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

.page-resources-13win-game-security-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background #0d0d0d is dark, so use light text */
  background-color: #0d0d0d; /* Ensure consistency with body background */
}

.page-resources-13win-game-security-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header offset to prevent content being hidden by fixed header */
.page-resources-13win-game-security-strategy__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Use CSS variable for header offset */
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden; /* Prevent hero image overflow */
}

.page-resources-13win-game-security-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-13win-game-security-strategy__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-resources-13win-game-security-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-13win-game-security-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly transparent to make text stand out */
}

.page-resources-13win-game-security-strategy__content-area {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-resources-13win-game-security-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Primary brand color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

.page-resources-13win-game-security-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Secondary brand color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-13win-game-security-strategy__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-13win-game-security-strategy__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-13win-game-security-strategy__paragraph strong {
  color: #FFD700; /* Highlight keywords with primary brand color */
}

.page-resources-13win-game-security-strategy__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-resources-13win-game-security-strategy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-13win-game-security-strategy__feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-resources-13win-game-security-strategy__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-13win-game-security-strategy__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-13win-game-security-strategy__feature-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

/* Checklist */
.page-resources-13win-game-security-strategy__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-13win-game-security-strategy__list-item {
  background-color: #1a1a1a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
  font-size: 1.1em;
  border-left: 4px solid #8B0000;
}

.page-resources-13win-game-security-strategy__list-item::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-resources-13win-game-security-strategy__list-item strong {
  color: #FFD700;
}

/* CTA Section */
.page-resources-13win-game-security-strategy__cta-section {
  text-align: center;
  background-color: #1a1a1a;
  padding: 60px 30px;
  border-radius: 15px;
  margin-top: 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #8B0000;
}

.page-resources-13win-game-security-strategy__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-resources-13win-game-security-strategy__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}