:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --body-bg: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-eo88-latest-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Main text color for the page */
    background-color: var(--body-bg); /* Ensure consistency with body-bg from shared */
}

.page-blog-eo88-latest-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--body-bg);
}

.page-blog-eo88-latest-promotions__hero-image {
    width: 100%;
    max-height: 500px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-eo88-latest-promotions__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Default for desktop */
    display: block;
    min-height: 200px; /* Minimum image size */
}

.page-blog-eo88-latest-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-eo88-latest-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 clamp font size */
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-eo88-latest-promotions__description {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-eo88-latest-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%; /* For responsive */
    max-width: 500px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-eo88-latest-promotions__btn-primary,
.page-blog-eo88-latest-promotions__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;
    text-align: center;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog-eo88-latest-promotions__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-eo88-latest-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

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

.page-blog-eo88-latest-promotions__btn-secondary:hover {
    background: rgba(255, 165, 58, 0.1);
    color: var(--text-main);
}

.page-blog-eo88-latest-promotions__section {
    padding: 60px 20px;
    background-color: var(--body-bg);
}

.page-blog-eo88-latest-promotions__section--dark-bg {
    background-color: var(--card-bg); /* Darker background for contrast */
}

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

.page-blog-eo88-latest-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem); /* H2 clamp font size */
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-eo88-latest-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-eo88-latest-promotions__text-block {
    font-size: 1.1rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-eo88-latest-promotions__text-block .keyword {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-blog-eo88-latest-promotions__card-grid,
.page-blog-eo88-latest-promotions__steps-grid,
.page-blog-eo88-latest-promotions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-eo88-latest-promotions__card,
.page-blog-eo88-latest-promotions__step-card,
.page-blog-eo88-latest-promotions__benefit-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px; /* Minimum card height */
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-eo88-latest-promotions__card:hover,
.page-blog-eo88-latest-promotions__step-card:hover,
.page-blog-eo88-latest-promotions__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-eo88-latest-promotions__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog-eo88-latest-promotions__card-title,
.page-blog-eo88-latest-promotions__step-title,
.page-blog-eo88-latest-promotions__benefit-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-blog-eo88-latest-promotions__card p,
.page-blog-eo88-latest-promotions__step-card p,
.page-blog-eo88-latest-promotions__benefit-item p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0;
}

.page-blog-eo88-latest-promotions__card p a,
.page-blog-eo88-latest-promotions__step-card p a,
.page-blog-eo88-latest-promotions__benefit-item p a,
.page-blog-eo88-latest-promotions__list p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-blog-eo88-latest-promotions__card p a:hover,
.page-blog-eo88-latest-promotions__step-card p a:hover,
.page-blog-eo88-latest-promotions__benefit-item p a:hover,
.page-blog-eo88-latest-promotions__list p a:hover {
    color: var(--secondary-color);
}


.page-blog-eo88-latest-promotions__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 140, 26, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.page-blog-eo88-latest-promotions__article-figure {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-blog-eo88-latest-promotions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-eo88-latest-promotions__list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}