.arcade-benefits-strip {
    position: relative;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 20px;
    overflow: hidden;
}

.arcade-benefits-strip__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 0;
    pointer-events: none;
}

.arcade-benefits-strip__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.arcade-benefits-strip__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
    text-align: center;
}

.arcade-benefits-strip__heading {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.arcade-benefits-strip__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    /* Keep list text left-aligned */
    display: inline-block;
    /* Allow it to be centered by parent flex */
}

.arcade-benefits-strip__list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: #e5e5e5;
    list-style-type: none !important;
}

/* Custom Checkmark Icon - using a bright accent color */
.arcade-benefits-strip__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    /* Inline SVG checkmark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* responsive */
@media (max-width: 768px) {
    .arcade-benefits-strip__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arcade-benefits-strip__heading {
        text-align: left;
    }

    .arcade-benefits-strip__column {
        align-items: flex-start;
        text-align: left;
    }
}