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

.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--gg888-text-main); /* Light text for dark body background */
    background-color: var(--gg888-deep-navy); /* Ensure consistency */
    line-height: 1.6;
    padding-bottom: 30px;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__section-title {
    font-size: 38px;
    color: var(--gg888-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions__text-block {
    font-size: 17px;
    color: var(--gg888-text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 25px;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    padding-top: 10px; /* Small top padding for first section */
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.page-promotions__hero-content {
    position: relative;
    padding: 20px 15px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(17, 59, 122, 0.7);
    border-radius: 0 0 15px 15px;
    margin-top: -15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-promotions__main-title {
    font-size: 52px;
    color: var(--gg888-gold);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-promotions__description {
    font-size: 19px;
    color: var(--gg888-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    background: var(--gg888-button-gradient);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-promotions__cta-button--primary {
    background: var(--gg888-button-gradient);
    color: var(--gg888-text-main);
}

.page-promotions__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--gg888-gold);
    color: var(--gg888-gold);
}

.page-promotions__cta-button--secondary:hover {
    background: rgba(242, 193, 78, 0.1);
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 60px 0;
    background-color: rgba(16, 35, 63, 0.6);
    border-radius: 10px;
    margin-bottom: 50px;
}

/* Types Section */
.page-promotions__types-section {
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__promo-card {
    background-color: var(--gg888-card-bg);
    border: 1px solid var(--gg888-border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--gg888-divider);
    min-height: 200px;
}

.page-promotions__card-title {
    font-size: 24px;
    color: var(--gg888-gold);
    margin: 20px 15px 10px;
    font-weight: 600;
    flex-grow: 1;
}

.page-promotions__card-text {
    font-size: 16px;
    color: var(--gg888-text-secondary);
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background: var(--gg888-button-gradient);
    color: var(--gg888-text-main);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 0 15px 20px;
    transition: all 0.3s ease;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__card-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Claim Guide Section */
.page-promotions__claim-guide-section {
    padding: 60px 0;
    background-color: var(--gg888-card-bg);
    border-top: 1px solid var(--gg888-border);
    border-bottom: 1px solid var(--gg888-border);
    margin-bottom: 50px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    counter-reset: step-counter;
}

.page-promotions__steps-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--gg888-text-secondary);
    text-align: left;
}

.page-promotions__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--gg888-gold);
    color: var(--gg888-deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.page-promotions__step-highlight {
    color: var(--gg888-text-main);
}

.page-promotions__steps-list li a {
    color: var(--gg888-secondary);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

/* Terms Section */
.page-promotions__terms-section {
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-promotions__terms-list {
    list-style: disc;
    padding-left: 40px;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--gg888-text-secondary);
}

.page-promotions__terms-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

.page-promotions__term-highlight {
    color: var(--gg888-text-main);
}

.page-promotions__terms-section a {
    color: var(--gg888-secondary);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__terms-section a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 60px 0;
    background-color: rgba(16, 35, 63, 0.6);
    border-radius: 10px;
    margin-bottom: 50px;
}

.page-promotions__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions__feature-card {
    background-color: var(--gg888-card-bg);
    border: 1px solid var(--gg888-border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-promotions__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--gg888-divider);
    min-height: 200px;
}

.page-promotions__feature-title {
    font-size: 22px;
    color: var(--gg888-gold);
    margin: 20px 15px 10px;
    font-weight: 600;
}

.page-promotions__feature-text {
    font-size: 16px;
    color: var(--gg888-text-secondary);
    padding: 0 15px;
    flex-grow: 1;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--gg888-border);
  overflow: hidden;
  background: var(--gg888-card-bg);
}
details.page-promotions__faq-item summary.page-promotions__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(--gg888-text-main);
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(var(--gg888-border), 0.5);
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gg888-gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: rgba(var(--gg888-deep-navy), 0.7);
  border-radius: 0 0 5px 5px;
  color: var(--gg888-text-secondary);
}
.page-promotions__faq-answer p {
    margin-bottom: 0;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--gg888-primary);
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Global Image Styling for Responsiveness and Min Size */
.page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
    }

    .page-promotions__hero-image {
        min-height: 250px;
    }

    .page-promotions__hero-content {
        padding: 15px 10px 25px;
        margin-top: -10px;
    }

    .page-promotions__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-promotions__description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .page-promotions__cta-button {
        font-size: 18px;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .page-promotions__intro-section,
    .page-promotions__types-section,
    .page-promotions__claim-guide-section,
    .page-promotions__terms-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section,
    .page-promotions__cta-bottom-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__promo-image {
        height: 200px;
    }

    .page-promotions__card-title {
        font-size: 20px;
        margin: 15px 10px 8px;
    }

    .page-promotions__card-text {
        font-size: 15px;
        padding: 0 10px 15px;
    }

    .page-promotions__card-button {
        padding: 10px 20px;
        font-size: 15px;
        margin: 0 10px 15px;
        max-width: calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__steps-list {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .page-promotions__steps-list li {
        padding-left: 45px;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-promotions__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .page-promotions__terms-list {
        padding-left: 20px;
    }

    .page-promotions__terms-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .page-promotions__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__feature-image {
        height: 150px;
    }

    .page-promotions__feature-title {
        font-size: 20px;
        margin: 15px 10px 8px;
    }

    .page-promotions__feature-text {
        font-size: 15px;
        padding: 0 10px;
    }
    
    details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
    .page-promotions__faq-qtext { font-size: 16px; }
    details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 15px 15px; }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__promo-card,
    .page-promotions__feature-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}