/* style/blog-how-to-use-mayclub-code.css */

/* General Page Styling */
.page-blog-how-to-use-mayclub-code {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default to Text Main for overall page */
  background-color: var(--bg-primary, #08160F); /* Default to Background color */
}

.page-blog-how-to-use-mayclub-code__dark-bg {
  background-color: var(--bg-primary, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-mayclub-code__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-how-to-use-mayclub-code__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-use-mayclub-code__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__section-title,
.page-blog-how-to-use-mayclub-code__light-bg h3 {
  color: #11271B; /* Deep Green for light background titles */
}

.page-blog-how-to-use-mayclub-code__text-block {
  line-height: 1.6;
  font-size: 1.1em;
}

.page-blog-how-to-use-mayclub-code__text-block h3 {
  font-size: 1.6em;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-use-mayclub-code__text-block p {
  margin-bottom: 15px;
}

.page-blog-how-to-use-mayclub-code__text-block ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-blog-how-to-use-mayclub-code__text-block li {
  margin-bottom: 8px;
}

/* Hero Section */
.page-blog-how-to-use-mayclub-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--bg-primary, #08160F);
}

.page-blog-how-to-use-mayclub-code__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust based on typical hero image width */
  margin-bottom: 30px;
}

.page-blog-how-to-use-mayclub-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-use-mayclub-code__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-use-mayclub-code__main-title {
  font-size: 2.8em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-use-mayclub-code__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

/* CTA Button */
.page-blog-how-to-use-mayclub-code__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-mayclub-code__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-use-mayclub-code__cta-button--secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-blog-how-to-use-mayclub-code__cta-button--secondary:hover {
  background: #f0f0f0;
  color: #0A4B2C;
}

/* Image inline styling */
.page-blog-how-to-use-mayclub-code__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Lists */
.page-blog-how-to-use-mayclub-code__benefits-list,
.page-blog-how-to-use-mayclub-code__info-list,
.page-blog-how-to-use-mayclub-code__payment-methods-list,
.page-blog-how-to-use-mayclub-code__promotions-list,
.page-blog-how-to-use-mayclub-code__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-use-mayclub-code__benefits-list li,
.page-blog-how-to-use-mayclub-code__info-list li,
.page-blog-how-to-use-mayclub-code__payment-methods-list li,
.page-blog-how-to-use-mayclub-code__promotions-list li,
.page-blog-how-to-use-mayclub-code__terms-list li {
  background-color: var(--card-bg, #11271B);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: var(--text-main, #F2FFF6);
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__benefits-list li,
.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__info-list li,
.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__payment-methods-list li,
.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__promotions-list li,
.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__terms-list li {
  background-color: #f8f8f8;
  color: #333333;
  border-color: #e0e0e0;
}

.page-blog-how-to-use-mayclub-code__benefits-list li:before,
.page-blog-how-to-use-mayclub-code__info-list li:before,
.page-blog-how-to-use-mayclub-code__payment-methods-list li:before,
.page-blog-how-to-use-mayclub-code__promotions-list li:before,
.page-blog-how-to-use-mayclub-code__terms-list li:before {
  content: '✔️';
  margin-right: 10px;
  font-size: 1.2em;
  color: var(--glow, #57E38D);
}

/* FAQ Section */
.page-blog-how-to-use-mayclub-code__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-use-mayclub-code__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__faq-item {
  background-color: #ffffff;
  color: #333333;
  border-color: #e0e0e0;
}

.page-blog-how-to-use-mayclub-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__faq-question {
  background-color: #f0f0f0;
  color: #11271B;
}

.page-blog-how-to-use-mayclub-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-use-mayclub-code__faq-question::marker {
  display: none;
}

.page-blog-how-to-use-mayclub-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow, #57E38D);
}

.page-blog-how-to-use-mayclub-code__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
}

.page-blog-how-to-use-mayclub-code__light-bg .page-blog-how-to-use-mayclub-code__faq-answer {
  background-color: #ffffff;
  color: #333333;
}

/* Final CTA Section */
.page-blog-how-to-use-mayclub-code__final-cta {
  text-align: center;
  padding: 60px 20px;
}

.page-blog-how-to-use-mayclub-code__final-cta .page-blog-how-to-use-mayclub-code__section-title {
  margin-bottom: 20px;
}

.page-blog-how-to-use-mayclub-code__final-cta .page-blog-how-to-use-mayclub-code__description {
  font-size: 1.2em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-use-mayclub-code__main-title {
    font-size: 2.4em;
  }
  .page-blog-how-to-use-mayclub-code__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-use-mayclub-code__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-use-mayclub-code__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-how-to-use-mayclub-code__main-title {
    font-size: 2em;
  }
  .page-blog-how-to-use-mayclub-code__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-how-to-use-mayclub-code__hero-description,
  .page-blog-how-to-use-mayclub-code__final-cta .page-blog-how-to-use-mayclub-code__description {
    font-size: 1em;
  }
  .page-blog-how-to-use-mayclub-code__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    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-mayclub-code__content-area {
    padding: 30px 15px;
  }
  .page-blog-how-to-use-mayclub-code__text-block h3 {
    font-size: 1.4em;
  }
  .page-blog-how-to-use-mayclub-code__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-how-to-use-mayclub-code__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  /* All images */
  .page-blog-how-to-use-mayclub-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* All image containers */
  .page-blog-how-to-use-mayclub-code__hero-image-wrapper,
  .page-blog-how-to-use-mayclub-code__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  /* All sections and main containers */
  .page-blog-how-to-use-mayclub-code__hero-section,
  .page-blog-how-to-use-mayclub-code__content-area,
  .page-blog-how-to-use-mayclub-how-to-use-mayclub-code__final-cta {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  /* Ensure text blocks within content area handle padding */
  .page-blog-how-to-use-mayclub-code__content-area .page-blog-how-to-use-mayclub-code__text-block {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-use-mayclub-code__main-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-use-mayclub-code__section-title {
    font-size: 1.6em;
  }
  .page-blog-how-to-use-mayclub-code__cta-button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}

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