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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #FFD700, #1A1A1A);
    color: #1A1A1A; /* Dark text on gold gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:bet88,promotions,hero_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__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A1A; /* Dark text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-promotions__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Slightly lighter dark text for contrast */
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #1A1A1A; /* Dark button */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #1A1A1A; /* Dark text on hover */
    transform: translateY(-3px);
    border-color: #1A1A1A;
}

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #2A2A2A; /* Slightly lighter dark background for contrast */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions__section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #E0E0E0;
}

.page-promotions__image-wrapper {
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__image {
    width: 100%;
    height: auto;
    display: block;
}

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

.page-promotions__promotion-card {
    background-color: #222222; /* Darker card background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold title */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #FFE066; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #CCCCCC; /* Light grey text */
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__card-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.page-promotions__button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-promotions__button--details {
    background-color: #333333; /* Dark grey */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
}

.page-promotions__button--details:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    border-color: #1A1A1A;
}

.page-promotions__button--claim {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text */
    border: 1px solid #1A1A1A;
}

.page-promotions__button--claim:hover {
    background-color: #E6C200; /* Slightly darker gold */
    color: #000000;
    border-color: #000000;
}

.page-promotions__how-to-join ol {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    counter-reset: step-counter;
    text-align: left;
}

.page-promotions__how-to-join li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-promotions__how-to-join li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700; /* Gold number */
    color: #1A1A1A; /* Dark text */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions__how-to-join li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__how-to-join li a:hover {
    text-decoration: underline;
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-promotions__benefits-list li {
    background-color: #222222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 45px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-promotions__benefits-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1.2em;
}

.page-promotions__faq .page-promotions__accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    background-color: #2A2A2A;
    color: #FFD700; /* Gold text */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-header:hover {
    background-color: #3A3A3A;
}

.page-promotions__accordion-content {
    background-color: #1F1F1F;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #CCCCCC;
    font-size: 1em;
}

.page-promotions__accordion-content.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px;
}

.page-promotions__cta-button--large {
    font-size: 1.4em;
    padding: 18px 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__title {
        font-size: 2.2em;
    }
    .page-promotions__subtitle {
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-actions {
        flex-direction: column;
    }
    .page-promotions__button {
        width: 100%;
        text-align: center;
    }
    .page-promotions__how-to-join li, .page-promotions__benefits-list li {
        padding-left: 20px;
    }
    .page-promotions__how-to-join li::before, .page-promotions__benefits-list li::before {
        position: static;
        display: inline-flex;
        margin-right: 10px;
        vertical-align: middle;
    }
    .page-promotions__how-to-join ol, .page-promotions__benefits-list {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content {
        padding: 0 20px;
    }
    .page-promotions__accordion-content.active {
        padding: 10px 20px;
    }
}