/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A2342 0%, #304e7a 100%); /* Dark blue to slightly lighter blue */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-promotions__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-title .highlight {
    color: #FFD700; /* Gold highlight */
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.9;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    color: #0A2342;
}

.page-promotions__cta-button--bottom {
    margin-top: 40px;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-promotions__intro, 
.page-promotions__promotion-categories, 
.page-promotions__how-to-claim, 
.page-promotions__responsible-gambling, 
.page-promotions__faq, 
.page-promotions__final-cta, 
.page-promotions__sub-pages {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__intro {
    background-color: #fff;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2342; /* Dark blue */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title .highlight {
    color: #FFD700; /* Gold highlight */
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-promotions__text-block {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

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

.page-promotions__feature-item {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-item h3 {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    color: #666;
    font-size: 1em;
}

.page-promotions__promotion-categories {
    background-color: #f0f5fa; /* Light blueish grey */
}

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

.page-promotions__category-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-promotions__category-item h3 {
    font-size: 1.6em;
    color: #0A2342;
    margin: 25px 20px 10px 20px;
}

.page-promotions__category-item p {
    color: #666;
    font-size: 1em;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-promotions__category-item .highlight {
    color: #0A2342;
    font-weight: bold;
}

.page-promotions__read-more-button {
    display: inline-block;
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #0A2342;
}

.page-promotions__read-more-button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A2342; /* Dark blue text on hover */
    border-color: #0A2342;
}

.page-promotions__how-to-claim {
    background-color: #fff;
}

.page-promotions__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__step-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.page-promotions__step-number {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 25px auto;
    border: 3px solid #0A2342;
}

.page-promotions__step-item h3 {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions__step-item a {
    color: #0A2342;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__step-item a:hover {
    color: #FFD700;
}

.page-promotions__responsible-gambling {
    background-color: #e6f0f5; /* Lighter blue */
}

.page-promotions__responsible-gambling-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq {
    background-color: #fff;
}

.page-promotions__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promotions__faq-item h3 {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-promotions__faq-item p {
    color: #555;
    font-size: 1em;
}

.page-promotions__final-cta {
    background-color: #0A2342; /* Dark blue background */
    color: #fff;
    padding: 80px 20px;
}

.page-promotions__final-cta .page-promotions__section-title {
    color: #fff;
}

.page-promotions__final-cta .page-promotions__section-title::after {
    background-color: #FFD700;
}

.page-promotions__final-cta .page-promotions__text-block {
    color: #e0e0e0;
}

.page-promotions__sub-pages {
    background-color: #f8f8f8;
}

.page-promotions__sub-page-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-promotions__sub-page-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.page-promotions__sub-page-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions__sub-page-item h3 a {
    color: #0A2342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__sub-page-item h3 a:hover {
    color: #FFD700;
}

.page-promotions__sub-page-item p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__features,
    .page-promotions__category-list,
    .page-promotions__steps,
    .page-promotions__sub-page-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__step-number {
        margin-top: 0;
    }

    .page-promotions__step-item {
        padding-top: 60px; /* Adjust for number */
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__category-item h3 {
        font-size: 1.4em;
    }
}