/* style/blog-how-to-get-gacam67-giftcode.css */

:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy-color: #08162B;
}

.page-blog-how-to-get-gacam67-giftcode {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Body background is dark, so text should be light */
    line-height: 1.6;
    background-color: var(--deep-navy-color); /* Inherited from shared, but for safety */
}

.page-blog-how-to-get-gacam67-giftcode__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, header offset handled by body */
    background: var(--deep-navy-color);
}

.page-blog-how-to-get-gacam67-giftcode__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-get-gacam67-giftcode__hero-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-gacam67-giftcode__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.page-blog-how-to-get-gacam67-giftcode__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-blog-how-to-get-gacam67-giftcode__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-get-gacam67-giftcode__description {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-get-gacam67-giftcode__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-blog-how-to-get-gacam67-giftcode__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}

.page-blog-how-to-get-gacam67-giftcode__content-section {
    padding: 40px 20px;
    background-color: var(--deep-navy-color);
}

.page-blog-how-to-get-gacam67-giftcode__container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-how-to-get-gacam67-giftcode__article {
    color: var(--text-secondary);
}

.page-blog-how-to-get-gacam67-giftcode__article p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

.page-blog-how-to-get-gacam67-giftcode__article strong {
    color: var(--text-main);
}

.page-blog-how-to-get-gacam67-giftcode__heading {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--gold-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-gacam67-giftcode__sub-heading {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-get-gacam67-giftcode__list,
.page-blog-how-to-get-gacam67-giftcode__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-blog-how-to-get-gacam67-giftcode__ordered-list {
    list-style-type: decimal;
}

.page-blog-how-to-get-gacam67-giftcode__list-item {
    margin-bottom: 10px;
}

.page-blog-how-to-get-gacam67-giftcode__image-wrapper {
    margin: 30px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-get-gacam67-giftcode__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog-how-to-get-gacam67-giftcode__link-text {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-how-to-get-gacam67-giftcode__link-text:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-blog-how-to-get-gacam67-giftcode__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.page-blog-how-to-get-gacam67-giftcode__btn-primary,
.page-blog-how-to-get-gacam67-giftcode__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-how-to-get-gacam67-giftcode__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-get-gacam67-giftcode__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-blog-how-to-get-gacam67-giftcode__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-blog-how-to-get-gacam67-giftcode__btn-secondary:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Styles */
.page-blog-how-to-get-gacam67-giftcode__faq-list {
    margin-top: 40px;
}

details.page-blog-how-to-get-gacam67-giftcode__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--deep-navy-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-how-to-get-gacam67-giftcode__faq-item summary.page-blog-how-to-get-gacam67-giftcode__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;
  color: var(--text-main);
}
details.page-blog-how-to-get-gacam67-giftcode__faq-item summary.page-blog-how-to-get-gacam67-giftcode__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-get-gacam67-giftcode__faq-item summary.page-blog-how-to-get-gacam67-giftcode__faq-question:hover {
  background: rgba(var(--primary-color), 0.2);
}
.page-blog-how-to-get-gacam67-giftcode__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-blog-how-to-get-gacam67-giftcode__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-get-gacam67-giftcode__faq-item .page-blog-how-to-get-gacam67-giftcode__faq-answer {
  padding: 0 20px 20px;
  background: var(--card-bg);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-how-to-get-gacam67-giftcode {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-get-gacam67-giftcode__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-get-gacam67-giftcode__hero-image img {
        border-radius: 8px;
    }

    .page-blog-how-to-get-gacam67-giftcode__main-title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .page-blog-how-to-get-gacam67-giftcode__description {
        font-size: clamp(15px, 4vw, 18px);
    }

    .page-blog-how-to-get-gacam67-giftcode__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;
        margin-left: auto;
        margin-right: auto;
    }

    .page-blog-how-to-get-gacam67-giftcode__content-section {
        padding: 20px 15px;
    }

    .page-blog-how-to-get-gacam67-giftcode__container {
        padding: 20px;
        border-radius: 8px;
    }

    .page-blog-how-to-get-gacam67-giftcode__heading {
        font-size: clamp(20px, 6vw, 28px);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-get-gacam67-giftcode__sub-heading {
        font-size: clamp(17px, 5vw, 22px);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-how-to-get-gacam67-giftcode__image-wrapper {
        margin: 20px 0;
    }

    .page-blog-how-to-get-gacam67-giftcode__image-wrapper img,
    .page-blog-how-to-get-gacam67-giftcode img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-how-to-get-gacam67-giftcode__button-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-how-to-get-gacam67-giftcode__btn-primary,
    .page-blog-how-to-get-gacam67-giftcode__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-blog-how-to-get-gacam67-giftcode__faq-item summary.page-blog-how-to-get-gacam67-giftcode__faq-question { padding: 15px; }
    .page-blog-how-to-get-gacam67-giftcode__faq-qtext { font-size: 15px; }
    details.page-blog-how-to-get-gacam67-giftcode__faq-item .page-blog-how-to-get-gacam67-giftcode__faq-answer { padding: 0 15px 15px; }

    .page-blog-how-to-get-gacam67-giftcode__section,
    .page-blog-how-to-get-gacam67-giftcode__card,
    .page-blog-how-to-get-gacam67-giftcode__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure no image filters */
.page-blog-how-to-get-gacam67-giftcode img {
    filter: none; /* Explicitly disable any potential filters */
}