/* style/latest-promotions-refer-a-friend-bonus-program.css */

:root {
    --primary-color: #1A2E4E;
    --secondary-color: #FFD700;
    --text-on-dark: #F8F8F8;
    --text-on-light: #1A2E4E;
    --light-grey: #e0e0e0;
    --dark-grey: #333;
}

.page-latest-promotions-refer-a-friend-bonus-program {
    font-family: 'Arial', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
}

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

.page-latest-promotions-refer-a-friend-bonus-program .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-latest-promotions-refer-a-friend-bonus-program .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: var(--primary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-latest-promotions-refer-a-friend-bonus-program .btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Hero Section */
.page-latest-promotions-refer-a-friend-bonus-program .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5c8e 100%); /* Dark blue gradient */
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-promotions-refer-a-friend-bonus-program .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-latest-promotions-refer-a-friend-bonus-program .hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-latest-promotions-refer-a-friend-bonus-program .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
}

.page-latest-promotions-refer-a-friend-bonus-program .hero-image-wrapper {
    max-width: 600px;
    margin-top: 40px;
}

.page-latest-promotions-refer-a-friend-bonus-program .hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-latest-promotions-refer-a-friend-bonus-program section {
    padding: 60px 0;
    text-align: center;
}

.page-latest-promotions-refer-a-friend-bonus-program section:nth-of-type(even) {
    background-color: #f5f5f5;
}

.page-latest-promotions-refer-a-friend-bonus-program h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.page-latest-promotions-refer-a-friend-bonus-program h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-latest-promotions-refer-a-friend-bonus-program h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-latest-promotions-refer-a-friend-bonus-program p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

/* Why Join Section */
.page-latest-promotions-refer-a-friend-bonus-program .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-promotions-refer-a-friend-bonus-program .benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-latest-promotions-refer-a-friend-bonus-program .benefit-item:hover {
    transform: translateY(-10px);
}

.page-latest-promotions-refer-a-friend-bonus-program .benefit-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-latest-promotions-refer-a-friend-bonus-program .benefit-item h3 {
    color: var(--primary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .benefit-item p {
    font-size: 0.95em;
    color: var(--dark-grey);
}

/* How It Works Section */
.page-latest-promotions-refer-a-friend-bonus-program .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-promotions-refer-a-friend-bonus-program .step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: left;
    padding-top: 70px; /* Space for step number */
}

.page-latest-promotions-refer-a-friend-bonus-program .step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-latest-promotions-refer-a-friend-bonus-program .step-item h3 {
    margin-top: 0;
}

.page-latest-promotions-refer-a-friend-bonus-program .process-diagram {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Reward Structure Section */
.page-latest-promotions-refer-a-friend-bonus-program .reward-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-promotions-refer-a-friend-bonus-program .reward-item {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.page-latest-promotions-refer-a-friend-bonus-program .reward-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-latest-promotions-refer-a-friend-bonus-program .reward-item p {
    color: var(--text-on-dark);
    opacity: 0.9;
    font-size: 0.98em;
}

.page-latest-promotions-refer-a-friend-bonus-program .note {
    margin-top: 30px;
    font-style: italic;
    color: var(--primary-color);
    font-size: 0.95em;
}

.page-latest-promotions-refer-a-friend-bonus-program .reward-showcase-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Terms & Conditions Section */
.page-latest-promotions-refer-a-friend-bonus-program .terms-conditions-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-latest-promotions-refer-a-friend-bonus-program .terms-conditions-section ul li {
    background-color: #fff;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--dark-grey);
}

/* Responsible Gaming Section */
.page-latest-promotions-refer-a-friend-bonus-program .responsible-gaming-section {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 80px 0;
}

.page-latest-promotions-refer-a-friend-bonus-program .responsible-gaming-section h2 {
    color: var(--secondary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .responsible-gaming-section p {
    color: var(--text-on-dark);
    max-width: 900px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.page-latest-promotions-refer-a-friend-bonus-program .responsible-gaming-icon {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--secondary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item p {
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    color: var(--dark-grey);
}

.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item.active h3::after {
    content: '-';
}

.page-latest-promotions-refer-a-friend-bonus-program .faq-section .faq-item.active p {
    display: block;
}

/* CTA Section */
.page-latest-promotions-refer-a-friend-bonus-program .cta-section {
    background: linear-gradient(45deg, var(--primary-color), #3a5c8e);
    color: var(--text-on-dark);
    padding: 80px 0;
}

.page-latest-promotions-refer-a-friend-bonus-program .cta-section h2 {
    color: var(--secondary-color);
}

.page-latest-promotions-refer-a-friend-bonus-program .cta-section p {
    color: var(--text-on-dark);
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-latest-promotions-refer-a-friend-bonus-program .cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-latest-promotions-refer-a-friend-bonus-program .hero-content h1 {
        font-size: 2.2em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .hero-content p {
        font-size: 1em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program h2 {
        font-size: 1.8em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program h3 {
        font-size: 1.4em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .hero-section .container {
        flex-direction: column;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .process-diagram {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .page-latest-promotions-refer-a-friend-bonus-program .hero-content h1 {
        font-size: 1.8em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program h2 {
        font-size: 1.6em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-latest-promotions-refer-a-friend-bonus-program .benefit-item, 
    .page-latest-promotions-refer-a-friend-bonus-program .step-item, 
    .page-latest-promotions-refer-a-friend-bonus-program .reward-item {
        padding: 20px;
    }
}