/* style/resources-hitclub-app-security.css */

/* --- Base Styles and Global Overrides (Scoped) --- */
.page-resources-hitclub-app-security {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches body background from shared.css */
}

.page-resources-hitclub-app-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-hitclub-app-security h1,
.page-resources-hitclub-app-security h2,
.page-resources-hitclub-app-security h3 {
  color: #ffffff; /* White for headings on dark background */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-resources-hitclub-app-security h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-resources-hitclub-app-security h2 {
  font-size: 2.2em;
  text-align: center;
  color: #017439; /* Brand color for main section titles */
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-resources-hitclub-app-security h3 {
  font-size: 1.6em;
  color: #ffffff; /* White for sub-titles on dark background */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-hitclub-app-security p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* --- Hero Section --- */
.page-resources-hitclub-app-security__hero-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #017439; /* Brand color background for hero */
  color: #ffffff;
}

.page-resources-hitclub-app-security__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
  z-index: 1;
}

.page-resources-hitclub-app-security__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: none; /* Removed brightness filter as per strict rules */
}

.page-resources-hitclub-app-security__hero-section .page-resources-hitclub-app-security__container {
  position: relative;
  z-index: 2;
}

.page-resources-hitclub-app-security__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-hitclub-app-security__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* --- CTA Buttons --- */
.page-resources-hitclub-app-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-hitclub-app-security__btn-primary,
.page-resources-hitclub-app-security__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hitclub-app-security__btn-primary {
  background-color: #C30808; /* Red for primary action (Login/Register) */
  color: #FFFF00; /* Yellow for text */
  border: 2px solid #C30808;
}

.page-resources-hitclub-app-security__btn-primary:hover {
  background-color: #e02020;
  border-color: #e02020;
  color: #ffffff;
}

.page-resources-hitclub-app-security__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-hitclub-app-security__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* --- Content Area --- */
.page-resources-hitclub-app-security__content-area {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background from body */
  color: #f0f0f0; /* Light text for readability */
}

.page-resources-hitclub-app-security__section-title {
  color: #017439; /* Brand color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-hitclub-app-security__paragraph {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  margin-bottom: 30px;
}

/* --- Features Grid --- */
.page-resources-hitclub-app-security__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hitclub-app-security__feature-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards on dark bg */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-resources-hitclub-app-security__feature-card:hover {
  transform: translateY(-5px);
}

.page-resources-hitclub-app-security__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure block-level for max-width/height auto */
  margin-left: auto;
  margin-right: auto;
  filter: none; /* Ensure no filter */
}

.page-resources-hitclub-app-security__feature-title {
  color: #017439; /* Brand color for feature titles */
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-hitclub-app-security__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-hitclub-app-security__sub-title {
  color: #017439; /* Brand color for sub-titles */
  font-size: 1.8em;
  margin-top: 40px;
  text-align: center;
}

.page-resources-hitclub-app-security__text-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03); /* Lighter background for text blocks */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #f0f0f0;
}

.page-resources-hitclub-app-security__text-block h3 {
  text-align: left;
  color: #ffffff;
}

.page-resources-hitclub-app-security__text-block p {
  text-align: justify;
}

/* --- Final CTA Section --- */
.page-resources-hitclub-app-security__cta-section {
  background-color: #017439; /* Brand color background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-resources-hitclub-app-security__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-hitclub-app-security__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #f0f0f0;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .page-resources-hitclub-app-security__hero-title {
    font-size: 3em;
  }
  .page-resources-hitclub-app-security h1 {
    font-size: 2.5em;
  }
  .page-resources-hitclub-app-security h2 {
    font-size: 2em;
  }
  .page-resources-hitclub-app-security h3 {
    font-size: 1.5em;
  }
  .page-resources-hitclub-app-security__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-hitclub-app-security {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-hitclub-app-security__hero-section {
    padding: 80px 0;
    min-height: 500px;
  }

  .page-resources-hitclub-app-security__hero-title {
    font-size: 2.2em;
  }

  .page-resources-hitclub-app-security__hero-description {
    font-size: 1em;
  }

  .page-resources-hitclub-app-security h1 {
    font-size: 2em;
  }
  .page-resources-hitclub-app-security h2 {
    font-size: 1.8em;
  }
  .page-resources-hitclub-app-security h3 {
    font-size: 1.3em;
  }

  /* Force responsive for images, videos, and buttons */
  .page-resources-hitclub-app-security img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Apply to all content containers */
  .page-resources-hitclub-app-security__container,
  .page-resources-hitclub-app-security__section,
  .page-resources-hitclub-app-security__card,
  .page-resources-hitclub-app-security__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-resources-hitclub-app-security__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-hitclub-app-security__btn-primary,
  .page-resources-hitclub-app-security__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-hitclub-app-security__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }
  .page-resources-hitclub-app-security__cta-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-hitclub-app-security__hero-title {
    font-size: 1.8em;
  }
  .page-resources-hitclub-app-security h1 {
    font-size: 1.8em;
  }
  .page-resources-hitclub-app-security h2 {
    font-size: 1.6em;
  }
  .page-resources-hitclub-app-security h3 {
    font-size: 1.2em;
  }
  .page-resources-hitclub-app-security__hero-description {
    font-size: 0.9em;
  }
}

/* Ensure no filter is used for images */
.page-resources-hitclub-app-security img {
  filter: none;
}