:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --button-register: #C30808;
    --button-login: #C30808;
    --button-font-color: #FFFF00;
}

.page-resources-win55-latest-promotions-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--secondary-color); /* Default body background is white */
}

.page-resources-win55-latest-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* HERO Intro Section */
.page-resources-win55-latest-promotions-guide__hero-intro {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    background-color: #f8f8f8; /* Light background for the intro section */
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

.page-resources-win55-latest-promotions-guide__main-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-win55-latest-promotions-guide__intro-text {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-win55-latest-promotions-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-win55-latest-promotions-guide__btn-primary,
.page-resources-win55-latest-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
}

.page-resources-win55-latest-promotions-guide__btn-primary {
    background-color: var(--button-register); /* Custom color for register */
    color: var(--button-font-color); /* Custom font color */
    border: 2px solid var(--button-register);
}

.page-resources-win55-latest-promotions-guide__btn-primary:hover {
    background-color: #a00606; /* Darker red on hover */
    border-color: #a00606;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-win55-latest-promotions-guide__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-win55-latest-promotions-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-win55-latest-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    max-width: 1000px; /* Max width for the image */
    margin: 30px auto 0;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min image size requirement */
    min-height: 200px; /* Min image size requirement */
}

/* General Section Styles */
.page-resources-win55-latest-promotions-guide__section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-resources-win55-latest-promotions-guide__section:nth-of-type(even) {
    background-color: #f5f5f5; /* Alternate background for readability */
}

.page-resources-win55-latest-promotions-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-resources-win55-latest-promotions-guide__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-win55-latest-promotions-guide__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-resources-win55-latest-promotions-guide__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-win55-latest-promotions-guide__promo-card,
.page-resources-win55-latest-promotions-guide__vip-card {
    display: flex;
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.page-resources-win55-latest-promotions-guide__promo-card:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image/content order */
}

.page-resources-win55-latest-promotions-guide__promo-image,
.page-resources-win55-latest-promotions-guide__vip-image {
    flex: 1;
    min-width: 300px; /* Ensure image is not too small */
    min-height: 200px; /* Min image size requirement */
    height: auto;
    object-fit: cover;
    display: block;
}