/* style/blog-f68-new-link-security-speed.css */

/* Custom Colors */
:root {
  --f68-bg-dark: #08160F;
  --f68-card-bg: #11271B;
  --f68-text-main: #F2FFF6;
  --f68-text-secondary: #A7D9B8;
  --f68-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --f68-border: #2E7A4E;
  --f68-glow: #57E38D;
  --f68-gold: #F2C14E;
  --f68-divider: #1E3A2A;
  --f68-deep-green: #0A4B2C;
  --f68-primary-color: #11A84E;
  --f68-secondary-color: #22C768;
}

.page-blog-f68-new-link-security-speed {
  background-color: var(--f68-bg-dark); /* Assuming body background is dark */
  color: var(--f68-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-f68-new-link-security-speed__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-f68-new-link-security-speed__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-blog-f68-new-link-security-speed__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  max-height: 700px; /* Limit hero image height */
}

.page-blog-f68-new-link-security-speed__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-top: 20px; /* Space from image above in normal flow */
}

.page-blog-f68-new-link-security-speed__main-title {
  color: var(--f68-gold);
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-f68-new-link-security-speed__intro-text {
  color: var(--f68-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-f68-new-link-security-speed__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--f68-divider);
}

.page-blog-f68-new-link-security-speed__section:last-of-type {
  border-bottom: none;
}

.page-blog-f68-new-link-security-speed__section-title {
  color: var(--f68-glow);
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-f68-new-link-security-speed__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--f68-btn-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-f68-new-link-security-speed__sub-title {
  color: var(--f68-text-main);
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-f68-new-link-security-speed__paragraph {
  color: var(--f68-text-secondary);
  margin-bottom: 15px;
}

.page-blog-f68-new-link-security-speed__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f68-new-link-security-speed__list,
.page-blog-f68-new-link-security-speed__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--f68-text-secondary);
}

.page-blog-f68-new-link-security-speed__ordered-list {
  list-style-type: decimal;
}

.page-blog-f68-new-link-security-speed__list-item {
  margin-bottom: 10px;
  color: var(--f68-text-secondary);
}

.page-blog-f68-new-link-security-speed__list-item strong {
  color: var(--f68-text-main);
}

.page-blog-f68-new-link-security-speed__btn-primary,
.page-blog-f68-new-link-security-speed__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f68-new-link-security-speed__btn-primary {
  background: var(--f68-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-blog-f68-new-link-security-speed__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(34, 199, 104, 0.6);
}

.page-blog-f68-new-link-security-speed__btn-secondary {
  background: var(--f68-card-bg);
  color: var(--f68-glow);
  border: 2px solid var(--f68-glow);
  margin-top: 15px;
}

.page-blog-f68-new-link-security-speed__btn-secondary:hover {
  background: var(--f68-glow);
  color: var(--f68-bg-dark);
  transform: translateY(-2px);
}

.page-blog-f68-new-link-security-speed__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-f68-new-link-security-speed__game-grid,
.page-blog-f68-new-link-security-speed__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-f68-new-link-security-speed__game-card,
.page-blog-f68-new-link-security-speed__promo-card {
  background-color: var(--f68-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-f68-new-link-security-speed__game-card:hover,
.page-blog-f68-new-link-security-speed__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-f68-new-link-security-speed__game-image,
.page-blog-f68-new-link-security-speed__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-f68-new-link-security-speed__game-title,
.page-blog-f68-new-link-security-speed__promo-title {
  color: var(--f68-text-main);
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-f68-new-link-security-speed__game-title a,
.page-blog-f68-new-link-security-speed__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-f68-new-link-security-speed__game-title a:hover,
.page-blog-f68-new-link-security-speed__promo-title a:hover {
  color: var(--f68-glow);
}

.page-blog-f68-new-link-security-speed__game-description,
.page-blog-f68-new-link-security-speed__promo-description {
  color: var(--f68-text-secondary);
  font-size: 0.95em;
  padding: 0 15px;
}

.page-blog-f68-new-link-security-speed__faq-list {
  margin-top: 30px;
}

.page-blog-f68-new-link-security-speed__faq-item {
  background-color: var(--f68-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--f68-border);
}

.page-blog-f68-new-link-security-speed__faq-item[open] {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-f68-new-link-security-speed__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--f68-text-main);
  font-weight: 600;
  font-size: 1.15em;
  background-color: var(--f68-deep-green);
  border-bottom: 1px solid var(--f68-divider);
  list-style: none; /* For details/summary */
}

.page-blog-f68-new-link-security-speed__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f68-new-link-security-speed__faq-question:hover {
  background-color: var(--f68-primary-color);
}

.page-blog-f68-new-link-security-speed__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-f68-new-link-security-speed__faq-item[open] .page-blog-f68-new-link-security-speed__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-f68-new-link-security-speed__faq-answer {
  padding: 20px 25px;
  color: var(--f68-text-secondary);
  font-size: 1em;
  border-top: 1px solid var(--f68-divider);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-f68-new-link-security-speed__hero-image {
    max-height: 600px;
  }
  .page-blog-f68-new-link-security-speed__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-f68-new-link-security-speed__section-title {
    font-size: clamp(1.6em, 4vw, 2.4em);
  }
  .page-blog-f68-new-link-security-speed__game-grid,
  .page-blog-f68-new-link-security-speed__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-f68-new-link-security-speed {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-f68-new-link-security-speed__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-f68-new-link-security-speed__hero-image {
    max-height: 400px;
  }
  .page-blog-f68-new-link-security-speed__hero-content {
    padding: 20px;
  }
  .page-blog-f68-new-link-security-speed__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-f68-new-link-security-speed__intro-text {
    font-size: 1em;
  }
  .page-blog-f68-new-link-security-speed__section {
    padding: 40px 0;
  }
  .page-blog-f68-new-link-security-speed__section-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-blog-f68-new-link-security-speed__sub-title {
    font-size: clamp(1.2em, 4vw, 1.8em);
  }
  .page-blog-f68-new-link-security-speed__image,
  .page-blog-f68-new-link-security-speed__game-image,
  .page-blog-f68-new-link-security-speed__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-f68-new-link-security-speed__container,
  .page-blog-f68-new-link-security-speed__hero-content,
  .page-blog-f68-new-link-security-speed__game-card,
  .page-blog-f68-new-link-security-speed__promo-card,
  .page-blog-f68-new-link-security-speed__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-f68-new-link-security-speed__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-f68-new-link-security-speed__btn-primary,
  .page-blog-f68-new-link-security-speed__btn-secondary {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-f68-new-link-security-speed__game-grid,
  .page-blog-f68-new-link-security-speed__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-f68-new-link-security-speed__game-image,
  .page-blog-f68-new-link-security-speed__promo-image {
    height: 180px; /* Adjust height for mobile */
  }
  .page-blog-f68-new-link-security-speed__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }
  .page-blog-f68-new-link-security-speed__faq-answer {
    padding: 15px 20px;
  }
}