:root {
        --primary-color: #007bff;
        --secondary-color: #6c757d;
        --accent-color: #28a745;
        --background-color: #1a1a2e; /* Dark background */
        --card-background-color: #2e2e4e; /* Slightly lighter dark for cards */
        --text-color: #ffffff; /* White text for contrast */
        --heading-color: #ffffff;
        --border-color: #4a4a6e;
        --link-color: #00bcd4;
        --link-hover-color: #00e5ff;
    }

    body {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
        line-height: 1.6;
    }

    .page-22bet-welcome-bonus {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-22bet-welcome-bonus__section {
        padding: 40px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .page-22bet-welcome-bonus__section:last-of-type {
        border-bottom: none;
    }

    .page-22bet-welcome-bonus__heading {
        font-size: 2.5em;
        color: var(--heading-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-22bet-welcome-bonus__heading::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .page-22bet-welcome-bonus__subheading {
        font-size: 1.8em;
        color: var(--heading-color);
        margin-bottom: 20px;
        text-align: center;
    }

    .page-22bet-welcome-bonus__text {
        font-size: 1.1em;
        margin-bottom: 15px;
        color: #e0e0e0;
    }

    .page-22bet-welcome-bonus__button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        text-align: center;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-22bet-welcome-bonus__button:hover {
        background-color: #218838;
    }

    /* HERO Section */
    .page-22bet-welcome-bonus__hero-section {
        position: relative;
        background-color: #0d0d1a;
        padding: 10px 0 60px; /* 10px top padding for fixed header offset */
        text-align: center;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .page-22bet-welcome-bonus__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        filter: brightness(0.5); /* Darken image for text readability */
    }

    .page-22bet-welcome-bonus__hero-content {
        position: relative;
        z-index: 1;
        padding: 80px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-22bet-welcome-bonus__hero-title {
        font-size: 3.5em;
        color: var(--heading-color);
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-22bet-welcome-bonus__hero-description {
        font-size: 1.4em;
        color: #e0e0e0;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Payment Providers Section */
    .page-22bet-welcome-bonus__payment-providers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 30px 0;
        background-color: var(--card-background-color);
        border-radius: 8px;
        margin-bottom: 40px;
        flex-direction: column; /* Changed to column for heading placement */
    }
    .page-22bet-welcome-bonus__payment-logos-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-22bet-welcome-bonus__payment-logo {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
        box-sizing: border-box;
    }
    .page-22bet-welcome-bonus__payment-logo img {
        display: block;
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        object-fit: contain;
    }

    /* Introduction Section */
    .page-22bet-welcome-bonus__introduction-section .page-22bet-welcome-bonus__text {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Quick Access Section */
    .page-22bet-welcome-bonus__quick-access-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-22bet-welcome-bonus__quick-access-item {
        flex: 1 1 auto;
        min-width: 200px;
        max-width: 280px;
        background-color: var(--card-background-color);
        border-radius: 8px;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-22bet-welcome-bonus__quick-access-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-22bet-welcome-bonus__quick-access-link {
        display: block;
        font-size: 1.2em;
        color: var(--link-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .page-22bet-welcome-bonus__quick-access-link:hover {
        color: var(--link-hover-color);
    }

    /* Core Games/Services Section */
    .page-22bet-welcome-bonus__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-22bet-welcome-bonus__game-card {
        background-color: var(--card-background-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-22bet-welcome-bonus__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-22bet-welcome-bonus__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-22bet-welcome-bonus__game-content {
        padding: 20px;
    }

    .page-22bet-welcome-bonus__game-title {
        font-size: 1.5em;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

    .page-22bet-welcome-bonus__game-description {
        font-size: 0.95em;
        color: #ccc;
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-22bet-welcome-bonus__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-22bet-welcome-bonus__promotion-card {
        background-color: var(--card-background-color);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-22bet-welcome-bonus__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-22bet-welcome-bonus__promotion-title {
        font-size: 1.6em;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

    .page-22bet-welcome-bonus__promotion-description {
        font-size: 1em;
        color: #ccc;
        margin-bottom: 20px;
    }

    /* Security & Customer Service Section */
    .page-22bet-welcome-bonus__security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .page-22bet-welcome-bonus__security-item {
        background-color: var(--card-background-color);
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-22bet-welcome-bonus__security-icon {
        width: 200px; /* Min size 200x200 */
        height: 200px;
        margin: 0 auto 15px;
        object-fit: contain;
        display: block;
    }

    .page-22bet-welcome-bonus__security-title {
        font-size: 1.4em;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

    .page-22bet-welcome-bonus__security-text {
        font-size: 0.95em;
        color: #ccc;
    }

    /* FAQ Section */
    .page-22bet-welcome-bonus__faq-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 800px;
    }

    .page-22bet-welcome-bonus__faq-item {
        background-color: var(--card-background-color);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .page-22bet-welcome-bonus__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        background-color: #3a3a5a;
        color: var(--heading-color);
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-22bet-welcome-bonus__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-22bet-welcome-bonus__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-22bet-welcome-bonus__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-22bet-welcome-bonus__faq-item.active .page-22bet-welcome-bonus__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-22bet-welcome-bonus__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #e0e0e0;
        font-size: 1em;
        opacity: 0;
    }

    .page-22bet-welcome-bonus__faq-item.active .page-22bet-welcome-bonus__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px !important;
        opacity: 1;
    }
    
    /* Blog Section */
    .page-22bet-welcome-bonus__blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-22bet-welcome-bonus__blog-card {
        background-color: var(--card-background-color);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-22bet-welcome-bonus__blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-22bet-welcome-bonus__blog-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .page-22bet-welcome-bonus__blog-content {
        padding: 20px;
    }

    .page-22bet-welcome-bonus__blog-title {
        font-size: 1.3em;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

    .page-22bet-welcome-bonus__blog-link {
        color: var(--link-color);
        text-decoration: none;
        font-weight: bold;
        display: block;
        margin-top: 15px;
    }

    .page-22bet-welcome-bonus__blog-link:hover {
        color: var(--link-hover-color);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-22bet-welcome-bonus__hero-title {
            font-size: 3em;
        }
        .page-22bet-welcome-bonus__hero-description {
            font-size: 1.2em;
        }
    }

    @media (max-width: 768px) {
        .page-22bet-welcome-bonus__hero-title {
            font-size: 2.5em;
        }
        .page-22bet-welcome-bonus__hero-description {
            font-size: 1.1em;
        }
        .page-22bet-welcome-bonus__hero-content {
            padding: 60px 15px;
        }
        .page-22bet-welcome-bonus__heading {
            font-size: 2em;
        }
        .page-22bet-welcome-bonus__subheading {
            font-size: 1.5em;
        }
        .page-22bet-welcome-bonus__quick-access-list {
            flex-direction: column;
            align-items: center;
        }
        .page-22bet-welcome-bonus__quick-access-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-22bet-welcome-bonus__games-grid,
        .page-22bet-welcome-bonus__promotions-grid,
        .page-22bet-welcome-bonus__security-grid,
        .page-22bet-welcome-bonus__blog-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-22bet-welcome-bonus__game-image,
        .page-22bet-welcome-bonus__blog-image {
            height: 150px;
        }
        .page-22bet-welcome-bonus__faq-question {
            padding: 15px;
            font-size: 1em;
        }
        .page-22bet-welcome-bonus__faq-answer {
            padding: 15px !important;
        }
        /* Payment Providers Mobile CSS */
        .page-22bet-welcome-bonus__payment-providers {
            flex-direction: column; /* Keep column for heading */
            gap: 16px;
        }
        .page-22bet-welcome-bonus__payment-logos-wrapper {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .page-22bet-welcome-bonus__payment-logo,
        .page-22bet-welcome-bonus__payment-logo img {
            width: 80px !important;
            height: 80px !important;
            max-width: 80px !important;
            max-height: 80px !important;
        }
        .page-22bet-welcome-bonus__security-item {
            padding: 20px;
        }
        .page-22bet-welcome-bonus__security-icon {
            width: 150px;
            height: 150px;
        }

        /* All images responsive */
        .page-22bet-welcome-bonus img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-22bet-welcome-bonus__game-card img,
        .page-22bet-welcome-bonus__blog-card img {
            width: 100% !important; /* Ensure content images fill their container */
            height: auto !important;
        }
    }

    @media (max-width: 480px) {
        .page-22bet-welcome-bonus__hero-title {
            font-size: 2em;
        }
        .page-22bet-welcome-bonus__hero-description {
            font-size: 1em;
        }
        .page-22bet-welcome-bonus__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }