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

.page-blog-latest-promotions-top88 {
    background-color: var(--color-background-main);
    color: var(--color-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

.page-blog-latest-promotions-top88__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 40px;
    background-color: var(--color-deep-green);
}

.page-blog-latest-promotions-top88__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-blog-latest-promotions-top88__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-blog-latest-promotions-top88__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: var(--color-text-main);
}

.page-blog-latest-promotions-top88__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions-top88__hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-latest-promotions-top88__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-latest-promotions-top88__btn-primary,
.page-blog-latest-promotions-top88__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    text-align: center;
}

.page-blog-latest-promotions-top88__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    border: 2px solid transparent;
}

.page-blog-latest-promotions-top88__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-top88__btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-latest-promotions-top88__btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-top88__btn-text {
    color: var(--color-text-secondary);
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

.page-blog-latest-promotions-top88__btn-text:hover {
    color: var(--color-primary);
}

.page-blog-latest-promotions-top88__content-section {
    padding: 60px 20px;
}

.page-blog-latest-promotions-top88__dark-bg {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-blog-latest-promotions-top88__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-latest-promotions-top88__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-latest-promotions-top88__text-block {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-latest-promotions-top88__text-block a {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-blog-latest-promotions-top88__text-block a:hover {
    color: var(--color-gold);
}

.page-blog-latest-promotions-top88__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-latest-promotions-top88__card {
    background-color: var(--color-background-main);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.page-blog-latest-promotions-top88__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions-top88__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-blog-latest-promotions-top88__card-title {
    font-size: 1.5rem;
    color: var(--color-text-main);
    padding: 0 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-latest-promotions-top88__card-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-blog-latest-promotions-top88__list {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-blog-latest-promotions-top88__list-item {
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-blog-latest-promotions-top88__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.1em;
    top: 0;
}

.page-blog-latest-promotions-top88__guide-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-blog-latest-promotions-top88__guide-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-top88__guide-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.page-blog-latest-promotions-top88__guide-title {
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-latest-promotions-top88__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    color: var(--color-text-secondary);
}

.page-blog-latest-promotions-top88__ordered-list .page-blog-latest-promotions-top88__list-item {
    padding-left: 0;
    margin-bottom: 15px;
}

.page-blog-latest-promotions-top88__ordered-list .page-blog-latest-promotions-top88__list-item::before {
    content: none;
}

.page-blog-latest-promotions-top88__promotion-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-latest-promotions-top88__category-card {
    background-color: var(--color-background-main);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-blog-latest-promotions-top88__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions-top88__category-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-blog-latest-promotions-top88__category-title {
    font-size: 1.6rem;
    color: var(--color-text-main);
    margin-bottom: 15px;
    padding: 0 20px;
    font-weight: 600;
}

.page-blog-latest-promotions-top88__category-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-blog-latest-promotions-top88__advice-list,
.page-blog-latest-promotions-top88__safety-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-latest-promotions-top88__advice-list .page-blog-latest-promotions-top88__list-item,
.page-blog-latest-promotions-top88__safety-list .page-blog-latest-promotions-top88__list-item {
    margin-bottom: 15px;
    padding-left: 35px;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: left;
}

.page-blog-latest-promotions-top88__advice-list .page-blog-latest-promotions-top88__list-item::before {
    content: '💡';
    font-size: 1.2em;
    color: var(--color-gold);
}
.page-blog-latest-promotions-top88__safety-list .page-blog-latest-promotions-top88__list-item::before {
    content: '🛡️';
    font-size: 1.2em;
    color: var(--color-primary);
}


.page-blog-latest-promotions-top88__faq-section {
    padding: 60px 20px;
    background-color: var(--color-background-main);
}

.page-blog-latest-promotions-top88__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-latest-promotions-top88__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-top88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
    list-style: none;
}

.page-blog-latest-promotions-top88__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-latest-promotions-top88__faq-question:hover {
    background-color: #0A5A38;
}

.page-blog-latest-promotions-top88__faq-qtext a {
    color: var(--color-primary);
    text-decoration: underline;
}
.page-blog-latest-promotions-top88__faq-qtext a:hover {
    color: var(--color-gold);
}