/* style/blog-how-to-use-g666-code-for-exclusive-offers.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --card-bg: #FFFFFF;
  --body-bg: #F4F7FB;
  --text-main: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Body background is light, so use dark text */
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__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 as body handles header offset */
  background: var(--body-bg);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__main-title {
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__description {
  color: var(--text-main);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--body-bg);
  color: var(--text-main);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__section-title {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers p {
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers strong {
  color: var(--primary-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__benefit-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__benefit-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__card-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-section {
  margin-bottom: 50px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-list {
  list-style: none;
  padding: 0;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item a:hover {
  text-decoration: underline;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__offer-list,
.page-blog-how-to-use-g666-code-for-exclusive-offers__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__offer-item,
.page-blog-how-to-use-g666-code-for-exclusive-offers__terms-list li {
  margin-bottom: 10px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__terms-conditions {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__terms-conditions p {
  margin-bottom: 15px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__tips-section {
  text-align: center;
  margin-bottom: 50px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__tips-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__tip-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__tip-icon {
  font-size: 28px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__tip-item p {
  margin: 0;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__button-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__button-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-item img {
  
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-item h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-container {
  margin-bottom: 50px;
}

details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
}
details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item summary.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item summary.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item summary.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-question:hover {
  background: #f5f5f5;
}
.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item .page-blog-how-to-use-g666-code-for-exclusive-offers__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__conclusion-cta {
  text-align: center;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-use-g666-code-for-exclusive-offers__conclusion-cta .page-blog-how-to-use-g666-code-for-exclusive-offers__section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-use-g666-code-for-exclusive-offers__section-title {
    font-size: 28px;
  }
  .page-blog-how-to-use-g666-code-for-exclusive-offers__description {
    font-size: 16px;
  }
  .page-blog-how-to-use-g666-code-for-exclusive-offers__tip-item {
    max-width: calc(100% - 20px);
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-use-g666-code-for-exclusive-offers__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-use-g666-code-for-exclusive-offers__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-how-to-use-g666-code-for-exclusive-offers__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__benefits-grid,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__guide-item,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__benefit-card,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__terms-conditions,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-item,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__conclusion-cta {
    padding: 20px;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-item img {
    
    min-
    min-
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__main-title {
    font-size: 28px;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__button-primary {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-use-g666-code-for-exclusive-offers__tip-item {
    padding: 20px;
  }

  details.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-item summary.page-blog-how-to-use-g666-code-for-exclusive-offers__faq-question { padding: 15px; }
  .page-blog-how-to-use-g666-code-for-exclusive-offers__faq-qtext { font-size: 15px; }

  .page-blog-how-to-use-g666-code-for-exclusive-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-use-g666-code-for-exclusive-offers__section,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__card,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__container,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__benefits-grid,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__guide-section,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__tips-section,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__why-choose-us-list,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__faq-container,
  .page-blog-how-to-use-g666-code-for-exclusive-offers__conclusion-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}