/* style/resources-game-s666-security-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --btn-login-color: #EA7C07;
}

.page-resources-game-s666-security-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark);
}

.page-resources-game-s666-security-guide__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.page-resources-game-s666-security-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-game-s666-security-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-game-s666-security-guide__hero-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-game-s666-security-guide__hero-description {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-resources-game-s666-security-guide__btn-primary,
.page-resources-game-s666-security-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-game-s666-security-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-game-s666-security-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-resources-game-s666-security-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-game-s666-security-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-game-s666-security-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: -50px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-resources-game-s666-security-guide__container {
  max-width: 960px;
  margin: 0 auto;
}

.page-resources-game-s666-security-guide__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-game-s666-security-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-resources-game-s666-security-guide__feature-grid,
.page-resources-game-s666-security-guide__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-game-s666-security-guide__feature-card,
.page-resources-game-s666-security-guide__payment-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-resources-game-s666-security-guide__feature-card:hover,
.page-resources-game-s666-security-guide__payment-card:hover {
  transform: translateY(-5px);
}

.page-resources-game-s666-security-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  object-fit: cover;
}

.page-resources-game-s666-security-guide__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-game-s666-security-guide__card-text {
  font-size: 1em;
  color: var(--text-dark);
}

.page-resources-game-s666-security-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}

.page-resources-game-s666-security-guide__list-item {
  background-color: #eaf7fc;
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-resources-game-s666-security-guide__list-item strong {
  color: var(--primary-color);
}

.page-resources-game-s666-security-guide__contact-info {
  margin-top: 30px;
  background-color: #f0f8ff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #d0e7f7;
}

.page-resources-game-s666-security-guide__contact-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.page-resources-game-s666-security-guide__contact-item strong {
  color: var(--primary-color);
}

.page-resources-game-s666-security-guide__cta-section {
  background-color: var(--primary-color);
  padding: 60px 20px;
  text-align: center;
  color: var(--secondary-color);
}

.page-resources-game-s666-security-guide__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-game-s666-security-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--secondary-color);
}

.page-resources-game-s666-security-guide__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-game-s666-security-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-game-s666-security-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-game-s666-security-guide__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-game-s666-security-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-resources-game-s666-security-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-game-s666-security-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-game-s666-security-guide__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }
  .page-resources-game-s666-security-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-game-s666-security-guide__text-block {
    font-size: 0.95em;
  }
  .page-resources-game-s666-security-guide__feature-grid,
  .page-resources-game-s666-security-guide__payment-methods {
    grid-template-columns: 1fr;
  }
  .page-resources-game-s666-security-guide__btn-primary,
  .page-resources-game-s666-security-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-game-s666-security-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-resources-game-s666-security-guide__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-game-s666-security-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-game-s666-security-guide__section,
  .page-resources-game-s666-security-guide__card,
  .page-resources-game-s666-security-guide__container,
  .page-resources-game-s666-security-guide__cta-section,
  .page-resources-game-s666-security-guide__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-resources-game-s666-security-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-game-s666-security-guide__hero-title {
    font-size: 1.5em;
  }
  .page-resources-game-s666-security-guide__section-title {
    font-size: 1.4em;
  }
  .page-resources-game-s666-security-guide__cta-title {
    font-size: 1.6em;
  }
  .page-resources-game-s666-security-guide__btn-primary,
  .page-resources-game-s666-security-guide__btn-secondary {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}