/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    color: #333333; /* Dark text for light body background */
}

.page-index-latest-promotions__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero section */
    color: #ffffff;
    overflow: hidden;
}

.page-index-latest-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.page-index-latest-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-index-latest-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff; /* White text for hero title */
    line-height: 1.2;
    font-weight: 700;
}

.page-index-latest-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.5;
}

.page-index-latest-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-latest-promotions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 200px; /* Ensure buttons are large enough */
    text-align: center;
}

.page-index-latest-promotions__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-index-latest-promotions__button--register:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.page-index-latest-promotions__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-index-latest-promotions__button--login:hover {
    background-color: #e6a73c;
    transform: translateY(-2px);
}

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

.page-index-latest-promotions__intro-section,
.page-index-latest-promotions__how-to-claim,
.page-index-latest-promotions__terms-conditions,
.page-index-latest-promotions__why-choose,
.page-index-latest-promotions__featured-games,
.page-index-latest-promotions__mobile-app,
.page-index-latest-promotions__responsible-gaming,
.page-index-latest-promotions__faq,
.page-index-latest-promotions__call-to-action {
    padding: 60px 0;
    background-color: #FFFFFF; /* Default background for sections */
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-index-latest-promotions__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
}

.page-index-latest-promotions__promotions-grid {
    background-color: #f8f8f8;
    padding: 60px 0;
}

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

.page-index-latest-promotions__promotion-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-index-latest-promotions__card-title {
    font-size: 1.5em;
    color: #000000;
    margin: 25px 20px 15px;
    font-weight: 600;
}

.page-index-latest-promotions__card-description {
    font-size: 0.95em;
    color: #555555;
    padding: 0 20px 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.page-index-latest-promotions__button--claim,
.page-index-latest-promotions__button--learn-more,
.page-index-latest-promotions__button--play-all,
.page-index-latest-promotions__button--download,
.page-index-latest-promotions__button--register-small {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    margin: 0 20px 25px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.page-index-latest-promotions__button--claim:hover,
.page-index-latest-promotions__button--learn-more:hover,
.page-index-latest-promotions__button--play-all:hover,
.page-index-latest-promotions__button--download:hover,
.page-index-latest-promotions__button--register-small:hover {
    background-color: #e6a73c;
    transform: translateY(-2px);
}

.page-index-latest-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-latest-promotions__step-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-index-latest-promotions__step-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-index-latest-promotions__step-description a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-index-latest-promotions__step-description a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__image-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 40px;
    min-width: 200px;
    min-height: 200px;
}

.page-index-latest-promotions__list {
    list-style: disc;
    margin-left: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

.page-index-latest-promotions__list-item {
    margin-bottom: 10px;
}

.page-index-latest-promotions__list--two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-index-latest-promotions__list--two-cols .page-index-latest-promotions__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FCBC45;
}

.page-index-latest-promotions__list-item strong {
    color: #000000;
}

.page-index-latest-promotions__list-item a {
    color: #FCBC45;
    text-decoration: none;
}

.page-index-latest-promotions__list-item a:hover {
    text-decoration: underline;
}

.page-index-latest-promotions__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-promotions__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__game-card:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions__game-card .page-index-latest-promotions__card-image {
    height: 200px;
    min-width: 200px;
    min-height: 200px;
}

.page-index-latest-promotions__game-card .page-index-latest-promotions__card-title {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index-latest-promotions__game-card .page-index-latest-promotions__card-title a {
    color: #000000;
    text-decoration: none;
}

.page-index-latest-promotions__game-card .page-index-latest-promotions__card-title a:hover {
    color: #FCBC45;
}

.page-index-latest-promotions__game-card .page-index-latest-promotions__card-description {
    font-size: 0.9em;
    padding: 0 20px 20px;
    color: #666666;
}

.page-index-latest-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}