/* style/promotions-referral-rewards.css */
.page-promotions-referral-rewards {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-referral-rewards__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-promotions-referral-rewards__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-promotions-referral-rewards__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-referral-rewards__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-referral-rewards__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Secondary color */
    color: #000; /* High contrast for text on yellow */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #ffc107;
}

.page-promotions-referral-rewards__cta-button:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    transform: translateY(-3px);
}

.page-promotions-referral-rewards__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-promotions-referral-rewards__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* General Section Styling */
.page-promotions-referral-rewards__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-promotions-referral-rewards__section:nth-of-type(even) {
    background-color: #fff;
}

.page-promotions-referral-rewards__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-referral-rewards__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Why Refer Section */
.page-promotions-referral-rewards__why-refer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-referral-rewards__why-refer-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promotions-referral-rewards__why-refer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-promotions-referral-rewards__why-refer-item h3 {
    font-size: 1.5em;
    color: #0056b3; /* Darker primary for contrast */
    margin-bottom: 15px;
}

.page-promotions-referral-rewards__why-refer-item p {
    color: #666;
}

/* How To Section */
.page-promotions-referral-rewards__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-promotions-referral-rewards__step-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.page-promotions-referral-rewards__step-number {
    background-color: #007bff; /* Primary color */
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: -50px auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-promotions-referral-rewards__step-item h3 {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-promotions-referral-rewards__step-item p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions-referral-rewards__step-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-referral-rewards__step-item a:hover {
    text-decoration: underline;
}

.page-promotions-referral-rewards__steps-illustration {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Rewards Types Section */
.page-promotions-referral-rewards__rewards-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.page-promotions-referral-rewards__rewards-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #444;
    font-size: 1.05em;
}

.page-promotions-referral-rewards__reward-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(255, 193, 7, 0.4));
}

.page-promotions-referral-rewards__rewards-list li strong {
    color: #0056b3;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-referral-rewards__rewards-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Terms Section */
.page-promotions-referral-rewards__terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.page-promotions-referral-rewards__terms-content h3 {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-promotions-referral-rewards__terms-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-promotions-referral-rewards__terms-content li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-referral-rewards__disclaimer {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #777;
}

/* Tips Section */
.page-promotions-referral-rewards__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-promotions-referral-rewards__tips-list li {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    color: #444;
    font-size: 1.1em;
    border-left: 5px solid #ffc107; /* Accent with secondary color */
}

.page-promotions-referral-rewards__tips-list li strong {
    color: #0056b3;
}

.page-promotions-referral-rewards__tips-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsible Gambling Section */
.page-promotions-referral-rewards__responsible-gambling p {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05em;
}

.page-promotions-referral-rewards__responsible-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-promotions-referral-rewards__faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.page-promotions-referral-rewards__faq-item h3 {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
}

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

/* Final CTA Section */
.page-promotions-referral-rewards__cta-final {
    background-color: #0056b3; /* Darker primary for strong contrast */
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-promotions-referral-rewards__cta-final .page-promotions-referral-rewards__section-title {
    color: #fff;
}

.page-promotions-referral-rewards__cta-final .page-promotions-referral-rewards__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-promotions-referral-rewards__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    background-color: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
}

.page-promotions-referral-rewards__cta-button--large:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-promotions-referral-rewards__contact-text {
    margin-top: 30px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-promotions-referral-rewards__contact-text a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-referral-rewards__contact-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-referral-rewards__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-referral-rewards__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-referral-rewards__section-title {
        font-size: 2em;
    }
    .page-promotions-referral-rewards__rewards-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-referral-rewards__hero {
        padding: 60px 0;
    }
    .page-promotions-referral-rewards__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-referral-rewards__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-referral-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-referral-rewards__section {
        padding: 40px 0;
    }
    .page-promotions-referral-rewards__section-title {
        font-size: 1.8em;
    }
    .page-promotions-referral-rewards__terms-content {
        padding: 25px;
    }
    .page-promotions-referral-rewards__terms-content h3 {
        font-size: 1.5em;
    }
    .page-promotions-referral-rewards__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-promotions-referral-rewards__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-referral-rewards__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-referral-rewards__why-refer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-referral-rewards__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-referral-rewards__rewards-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .page-promotions-referral-rewards__reward-icon {
        margin-bottom: 15px;
    }
    .page-promotions-referral-rewards__terms-content {
        padding: 15px;
    }
    .page-promotions-referral-rewards__terms-content ul {
        margin-left: 20px;
    }
}