/* style/promotions-refer-a-friend-bonus-program.css */
.page-promotions-refer-a-friend-bonus-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #000000; /* Main background color */
    line-height: 1.6;
}

.page-promotions-refer-a-friend-bonus-program__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-refer-a-friend-bonus-program__section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-refer-a-friend-bonus-program__section:nth-of-type(odd) {
    background-color: #1a1a1a; /* Slightly lighter black for contrast */
}

.page-promotions-refer-a-friend-bonus-program__hero-section {
    background: linear-gradient(135deg, #FFD700, #000000);
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.page-promotions-refer-a-friend-bonus-program__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.page-promotions-refer-a-friend-bonus-program__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-promotions-refer-a-friend-bonus-program__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.page-promotions-refer-a-friend-bonus-program__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #FFFFFF; /* White for hero text on dark overlay */
}

.page-promotions-refer-a-friend-bonus-program__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-refer-a-friend-bonus-program__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-promotions-refer-a-friend-bonus-program__cta-button {
    display: inline-block;
    background-color: #DC143C; /* Deep red accent for CTA */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__cta-button:hover {
    background-color: #C00028;
    transform: translateY(-3px);
}

.page-promotions-refer-a-friend-bonus-program__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-promotions-refer-a-friend-bonus-program__section-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #B0B0B0;
}

.page-promotions-refer-a-friend-bonus-program__features-grid,
.page-promotions-refer-a-friend-bonus-program__bonus-types,
.page-promotions-refer-a-friend-bonus-program__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-refer-a-friend-bonus-program__feature-item,
.page-promotions-refer-a-friend-bonus-program__bonus-item,
.page-promotions-refer-a-friend-bonus-program__step-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #333;
}

.page-promotions-refer-a-friend-bonus-program__feature-item:hover,
.page-promotions-refer-a-friend-bonus-program__bonus-item:hover {
    transform: translateY(-10px);
}

.page-promotions-refer-a-friend-bonus-program__feature-title,
.page-promotions-refer-a-friend-bonus-program__bonus-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-refer-a-friend-bonus-program__feature-item p,
.page-promotions-refer-a-friend-bonus-program__bonus-item p {
    color: #A0A0A0;
    font-size: 1em;
}

.page-promotions-refer-a-friend-bonus-program__bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-refer-a-friend-bonus-program__example-text {
    font-style: italic;
    margin-top: 40px;
    color: #C0C0C0;
    font-size: 1.1em;
}

.page-promotions-refer-a-friend-bonus-program__step-item {
    position: relative;
    padding-top: 60px;
}

.page-promotions-refer-a-friend-bonus-program__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #000000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-promotions-refer-a-friend-bonus-program__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-refer-a-friend-bonus-program__step-item p {
    color: #A0A0A0;
    margin-bottom: 20px;
}

.page-promotions-refer-a-friend-bonus-program__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.page-promotions-refer-a-friend-bonus-program__step-button {
    display: inline-block;
    background-color: #DC143C;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__step-button:hover {
    background-color: #C00028;
}

.page-promotions-refer-a-friend-bonus-program__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-refer-a-friend-bonus-program__terms-list li {
    background-color: #1a1a1a;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-refer-a-friend-bonus-program__contact-us {
    margin-top: 30px;
    font-size: 1.1em;
    color: #B0B0B0;
}

.page-promotions-refer-a-friend-bonus-program__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-refer-a-friend-bonus-program__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-refer-a-friend-bonus-program__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-refer-a-friend-bonus-program__faq-answer {
    color: #A0A0A0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
}

.page-promotions-refer-a-friend-bonus-program__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-promotions-refer-a-friend-bonus-program__cta-bottom {
    background: url('[IMAGE:cta_background]') no-repeat center center/cover;
    position: relative;
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-promotions-refer-a-friend-bonus-program__cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.page-promotions-refer-a-friend-bonus-program__cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-refer-a-friend-bonus-program__cta-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.page-promotions-refer-a-friend-bonus-program__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.page-promotions-refer-a-friend-bonus-program__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-promotions-refer-a-friend-bonus-program__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
}

.page-promotions-refer-a-friend-bonus-program__info-links {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-promotions-refer-a-friend-bonus-program__info-links li {
    background-color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__info-links li:hover {
    background-color: #333333;
}

.page-promotions-refer-a-friend-bonus-program__info-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__info-links a:hover {
    color: #FFFFFF;
}

.page-promotions-refer-a-friend-bonus-program__final-note {
    margin-top: 50px;
    font-size: 1.1em;
    color: #B0B0B0;
    font-style: italic;
}

/* Text links within content */
.page-promotions-refer-a-friend-bonus-program__text-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-refer-a-friend-bonus-program__text-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Keyword highlighting */
.page-promotions-refer-a-friend-bonus-program__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-refer-a-friend-bonus-program__hero-title {
        font-size: 3em;
    }
    .page-promotions-refer-a-friend-bonus-program__section-title {
        font-size: 2.2em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-refer-a-friend-bonus-program__hero-section {
        padding: 80px 15px;
    }
    .page-promotions-refer-a-friend-bonus-program__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-refer-a-friend-bonus-program__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-refer-a-friend-bonus-program__section {
        padding: 40px 0;
    }
    .page-promotions-refer-a-friend-bonus-program__section-title {
        font-size: 1.8em;
    }
    .page-promotions-refer-a-friend-bonus-program__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions-refer-a-friend-bonus-program__features-grid,
    .page-promotions-refer-a-friend-bonus-program__bonus-types,
    .page-promotions-refer-a-friend-bonus-program__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-refer-a-friend-bonus-program__feature-item,
    .page-promotions-refer-a-friend-bonus-program__bonus-item,
    .page-promotions-refer-a-friend-bonus-program__step-item {
        padding: 25px;
    }
    .page-promotions-refer-a-friend-bonus-program__feature-title,
    .page-promotions-refer-a-friend-bonus-program__bonus-title {
        font-size: 1.4em;
    }
    .page-promotions-refer-a-friend-bonus-program__step-title {
        font-size: 1.3em;
    }
    .page-promotions-refer-a-friend-bonus-program__terms-list li {
        font-size: 0.95em;
        padding: 12px 20px;
    }
    .page-promotions-refer-a-friend-bonus-program__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-title {
        font-size: 2em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-description {
        font-size: 1em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-refer-a-friend-bonus-program__info-links {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-refer-a-friend-bonus-program__info-links li {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions-refer-a-friend-bonus-program__hero-title {
        font-size: 2em;
    }
    .page-promotions-refer-a-friend-bonus-program__hero-description {
        font-size: 1em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-refer-a-friend-bonus-program__section-title {
        font-size: 1.6em;
    }
    .page-promotions-refer-a-friend-bonus-program__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-refer-a-friend-bonus-program__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-refer-a-friend-bonus-program__faq-answer {
        font-size: 0.9em;
    }
}