/* style/promotions-referral-rewards.css */

/* Base styles for the page content */
.page-promotions-referral-rewards {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text on light background */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background */
}

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

/* Hero Section */
.page-promotions-referral-rewards__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%); /* Main color to auxiliary color gradient */
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    color: #FFFFFF; /* White text on dark/gradient background */
    text-align: center;
}

.page-promotions-referral-rewards__hero-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left;
}

.page-promotions-referral-rewards__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-referral-rewards__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-promotions-referral-rewards__hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions-referral-rewards__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-promotions-referral-rewards__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-promotions-referral-rewards__section:nth-child(even) {
    background-color: #f0f0f0; /* Slightly different background for alternating sections */
}

.page-promotions-referral-rewards__section h2 {
    font-size: 2.5em;
    color: #CC0000; /* Main brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-referral-rewards__section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color for underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions-referral-rewards__section h3 {
    font-size: 1.8em;
    color: #CC0000; /* Main brand color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-referral-rewards__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444444; /* Darker gray for readability */
}

/* Buttons */
.page-promotions-referral-rewards__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-promotions-referral-rewards__btn--primary {
    background-color: #FFD700; /* Auxiliary color for primary button */
    color: #CC0000; /* Main color for text on auxiliary button */
    border: 2px solid #FFD700;
}

.page-promotions-referral-rewards__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-referral-rewards__btn--secondary {
    background-color: transparent;
    color: #FFFFFF; /* White text on hero section */
    border: 2px solid #FFFFFF;
}

.page-promotions-referral-rewards__hero .page-promotions-referral-rewards__btn--secondary {
    color: #FFFFFF; /* White text on hero section */
    border-color: #FFFFFF;
}

.page-promotions-referral-rewards__hero .page-promotions-referral-rewards__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-promotions-referral-rewards__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    background-color: #CC0000; /* Main color for small button */
    color: #FFD700; /* Auxiliary color for text */
    border: 2px solid #CC0000;
}

.page-promotions-referral-rewards__btn--small:hover {
    background-color: #a30000; /* Darker red on hover */
    border-color: #a30000;
}

.page-promotions-referral-rewards__btn--contact {
    background-color: #333333; /* Dark gray for contact button */
    color: #FFD700; /* Auxiliary color for text */
    border: 2px solid #333333;
}

.page-promotions-referral-rewards__btn--contact:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

/* Lists */
.page-promotions-referral-rewards__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions-referral-rewards__list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #444444;
}

.page-promotions-referral-rewards__list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #CC0000; /* Main brand color for icons */
    font-size: 1.2em;
}

.page-promotions-referral-rewards__list--styled li {
    background-color: #fdfdfd;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.page-promotions-referral-rewards__list--styled li:before {
    content: '\2713'; /* Checkmark */
    color: #CC0000;
    font-weight: bold;
    margin-right: 10px;
}

/* How It Works Steps */
.page-promotions-referral-rewards__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-referral-rewards__step {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1 1 calc(25% - 30px);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-referral-rewards__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-promotions-referral-rewards__step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #CC0000;
    box-shadow: inset 0 0 0 5px rgba(255,255,255,0.3);
}

.page-promotions-referral-rewards__step-icon img {
    max-width: 60%;
    max-height: 60%;
    display: block;
}

.page-promotions-referral-rewards__step h3 {
    color: #CC0000;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions-referral-rewards__step p {
    font-size: 1em;
    color: #555555;
}

.page-promotions-referral-rewards__cta-block {
    text-align: center;
    margin-top: 60px;
    background-color: #CC0000;
    padding: 40px;
    border-radius: 10px;
    color: #FFFFFF;
}

.page-promotions-referral-rewards__cta-block p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Feature List (Rewards Types) */
.page-promotions-referral-rewards__feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.page-promotions-referral-rewards__feature-list li {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-top: 100px; /* Space for icon */
}

.page-promotions-referral-rewards__feature-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-promotions-referral-rewards__feature-icon {
    width: 70px;
    height: 70px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    color: #CC0000;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-promotions-referral-rewards__feature-list h3 {
    color: #CC0000;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions-referral-rewards__feature-list p {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section */
.page-promotions-referral-rewards__faq {
    background-color: #fdfdfd;
}

.page-promotions-referral-rewards__faq-item {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-promotions-referral-rewards__faq-item h3 {
    color: #CC0000;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-referral-rewards__faq-item p {
    color: #444444;
    font-size: 1.05em;
}

/* Final CTA Section */
.page-promotions-referral-rewards__cta-final {
    background: linear-gradient(45deg, #CC0000, #a30000); /* Darker red gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.page-promotions-referral-rewards__cta-final-content {
    max-width: 900px;
}

.page-promotions-referral-rewards__cta-final h2 {
    color: #FFD700; /* Auxiliary color for final CTA title */
    font-size: 3em;
    margin-bottom: 20px;
}

.page-promotions-referral-rewards__cta-final h2::after {
    background-color: #FFD700;
}

.page-promotions-referral-rewards__cta-final p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-promotions-referral-rewards__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-referral-rewards__hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-promotions-referral-rewards__hero-content {
        text-align: center;
        padding-top: 40px;
    }
    .page-promotions-referral-rewards__hero h1 {
        font-size: 2.8em;
    }
    .page-promotions-referral-rewards__steps, .page-promotions-referral-rewards__feature-list {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-referral-rewards__step, .page-promotions-referral-rewards__feature-list li {
        flex: 1 1 90%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .page-promotions-referral-rewards__hero h1 {
        font-size: 2.2em;
    }
    .page-promotions-referral-rewards__section h2 {
        font-size: 2em;
    }
    .page-promotions-referral-rewards__section h3 {
        font-size: 1.5em;
    }
    .page-promotions-referral-rewards__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-referral-rewards__cta-final h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions-referral-rewards__hero {
        padding: 40px 15px;
    }
    .page-promotions-referral-rewards__hero h1 {
        font-size: 1.8em;
    }
    .page-promotions-referral-rewards__hero p {
        font-size: 1em;
    }
    .page-promotions-referral-rewards__section {
        padding: 40px 0;
    }
    .page-promotions-referral-rewards__section h2 {
        font-size: 1.8em;
    }
    .page-promotions-referral-rewards__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-promotions-referral-rewards__cta-buttons {
        flex-direction: column;
    }
    .page-promotions-referral-rewards__step, .page-promotions-referral-rewards__feature-list li {
        padding: 20px;
    }
    .page-promotions-referral-rewards__feature-list li {
        padding-top: 80px;
    }
    .page-promotions-referral-rewards__feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8em;
        top: 15px;
    }
}

/* Icon styles (placeholders, assuming a shared icon font or SVG system) */
.icon-star:before { content: '\2605'; /* Example Unicode star */ }
.icon-game:before { content: '\1F3AE'; /* Example Unicode gamepad */ }
.icon-secure:before { content: '\1F512'; /* Example Unicode lock */ }
.icon-bonus:before { content: '\1F381'; /* Example Unicode gift */ }
.icon-app:before { content: '\1F4F1'; /* Example Unicode mobile phone */ }
.icon-cash:before { content: '\1F4B0'; /* Example Unicode money bag */ }
.icon-percent:before { content: '\0025'; /* Example Unicode percent */ }
.icon-gift:before { content: '\1F381'; /* Example Unicode gift */ }
.icon-trophy:before { content: '\1F3C6'; /* Example Unicode trophy */ }