/* style/promotions-referral-program.css */
.page-promotions-referral-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
}

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

.page-promotions-referral-program .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-referral-program .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-promotions-referral-program .hero-title .highlight {
    color: #E0E0E0;
}

.page-promotions-referral-program .hero-subtitle {
    font-size: 1.3em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-referral-program .hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-referral-program .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-referral-program .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
}

.page-promotions-referral-program .btn-primary:hover {
    background-color: #E6C200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions-referral-program .btn-secondary {
    background-color: #1A3F6D; /* Darker blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 1px solid #FFD700;
}

.page-promotions-referral-program .btn-secondary:hover {
    background-color: #2A5F9D; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

.page-promotions-referral-program .btn-lg {
    padding: 15px 40px;
    font-size: 1.3em;
}

.page-promotions-referral-program .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-referral-program .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-referral-program .section-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.page-promotions-referral-program .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* How It Works Section */
.page-promotions-referral-program .section-how-it-works {
    padding: 80px 0;
    background-color: #0A2342;
}

.page-promotions-referral-program .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-referral-program .step-item {
    background-color: #1A3F6D; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-referral-program .step-item:hover {
    transform: translateY(-5px);
}

.page-promotions-referral-program .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-referral-program .step-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-referral-program .step-item p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Rewards Section */
.page-promotions-referral-program .section-rewards {
    padding: 80px 0;
    background-color: #112F53; /* Another shade of dark blue */
}

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

.page-promotions-referral-program .reward-item {
    background-color: #0A2342;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #FFD70044;
}

.page-promotions-referral-program .reward-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-promotions-referral-program .reward-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-referral-program .reward-item h4 {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-referral-program .reward-item p {
    font-size: 0.95em;
    color: #C0C0C0;
    line-height: 1.5;
}

/* Why new88 Section */
.page-promotions-referral-program .section-why-new88 {
    padding: 80px 0;
    background-color: #0A2342;
}

.page-promotions-referral-program .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-referral-program .why-item {
    background-color: #1A3F6D;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-referral-program .why-item:hover {
    transform: translateY(-5px);
}

.page-promotions-referral-program .why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-referral-program .why-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-referral-program .why-item p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
}

/* Tips Section */
.page-promotions-referral-program .section-tips {
    padding: 80px 0;
    background-color: #112F53;
}

.page-promotions-referral-program .section-tips ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 50px auto;
}

.page-promotions-referral-program .section-tips ul li {
    background-color: #0A2342;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-promotions-referral-program .section-tips ul li strong {
    color: #FFD700;
}

.page-promotions-referral-program .content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-promotions-referral-program .section-faq {
    padding: 80px 0;
    background-color: #0A2342;
}

.page-promotions-referral-program .faq-item {
    background-color: #1A3F6D;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-referral-program .faq-item h3 {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-referral-program .faq-item p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
    margin-top: 10px;
}

/* CTA Section */
.page-promotions-referral-program .section-cta {
    background: linear-gradient(90deg, #0A2342, #112F53); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-referral-program .cta-banner {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-referral-program .cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-referral-program .cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

    .page-promotions-referral-program .hero-subtitle,
    .page-promotions-referral-program .section-description {
        font-size: 1em;
    }

    .page-promotions-referral-program .section-title {
        font-size: 2em;
    }

    .page-promotions-referral-program .steps-grid, 
    .page-promotions-referral-program .rewards-grid, 
    .page-promotions-referral-program .why-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-referral-program .btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-promotions-referral-program .btn-lg {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .page-promotions-referral-program .cta-title {
        font-size: 2em;
    }

    .page-promotions-referral-program .cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-referral-program .hero-title {
        font-size: 2em;
    }
    .page-promotions-referral-program .section-title {
        font-size: 1.8em;
    }
    .page-promotions-referral-program .hero-section, 
    .page-promotions-referral-program .section-how-it-works, 
    .page-promotions-referral-program .section-rewards, 
    .page-promotions-referral-program .section-why-new88, 
    .page-promotions-referral-program .section-tips, 
    .page-promotions-referral-program .section-faq, 
    .page-promotions-referral-program .section-cta {
        padding: 40px 0;
    }
}