/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-promotions__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__section:last-of-type {
    border-bottom: none;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #8B0000 0%, #330000 100%); /* Dark red gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero > .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promotions__overview p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions__image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions__image-full {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__category-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__category-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

.page-promotions__category-card p {
    color: #cccccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__featured .page-promotions__promotion-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-promotions__promotion-header {
    display: flex;
    align-items: center;
    background-color: #3a3a3a;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__promotion-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #FFD700;
}

.page-promotions__promotion-info {
    flex-grow: 1;
}

.page-promotions__promotion-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 5px;
}

.page-promotions__promotion-status {
    display: inline-block;
    background-color: #8B0000; /* Dark Red */
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.page-promotions__promotion-body {
    padding: 30px;
}

.page-promotions__promotion-body p {
    margin-bottom: 15px;
    color: #cccccc;
}

.page-promotions__promotion-body h4 {
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-promotions__promotion-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-promotions__promotion-body ul li {
    margin-bottom: 8px;
}

.page-promotions__how-to-claim .page-promotions__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-promotions__how-to-claim .page-promotions__steps li {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    padding-left: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__how-to-claim .page-promotions__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

.page-promotions__step-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__step-title a:hover {
    text-decoration: underline;
}

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

.page-promotions__detail-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__detail-title {
    font-size: 1.4em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

.page-promotions__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__detail-title a:hover {
    text-decoration: underline;
}

.page-promotions__detail-description {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__terms ul,
.page-promotions__responsible-gambling ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-promotions__terms ul li,
.page-promotions__responsible-gambling ul li {
    margin-bottom: 10px;
}

.page-promotions__final-cta {
    text-align: center;
    background-color: #8B0000; /* Dark Red background */
    padding: 80px 0;
    color: #ffffff;
}

.page-promotions__final-cta .page-promotions__section-title {
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
}

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

.page-promotions__final-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Floating Promotion Menu */
.page-promotions__floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-promotions__floating-btn {
    display: flex;
    align-items: center;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.page-promotions__floating-btn:hover {
    background-color: #e6c200;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__floating-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(330deg) brightness(0.8); /* Adjust to match Dark Red */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions__floating-menu {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: center;
        gap: 8px;
    }
    .page-promotions__floating-btn {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    .page-promotions__floating-icon {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__promotion-header {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__promotion-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions__how-to-claim .page-promotions__steps li {
        padding-left: 20px;
        text-align: center;
    }
    .page-promotions__how-to-claim .page-promotions__steps li::before {
        position: static;
        margin-bottom: 15px;
    }
    .page-promotions__floating-menu {
        flex-wrap: wrap;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-promotions__floating-menu {
        bottom: 5px;
        right: 5px;
        left: 5px;
        gap: 5px;
    }
    .page-promotions__floating-btn {
        flex-grow: 1;
        font-size: 0.8em;
        padding: 6px 8px;
        justify-content: center;
    }
    .page-promotions__floating-icon {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
}