.gamegenesis-steps-container {
    background: #000;
    color: #fff;
    position: relative;
}

.gamegenesis-step {
    position: relative;
    border: 2px solid #f6a1bc;
    border-radius: 12px;
    padding: 30px 40px;
    margin: 60px 0;
}

.gamegenesis-step::before {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f6a1bc;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-family: "Nova Flat", Sans-serif;
    z-index: 1;
}

.gamegenesis-step:nth-child(even) {
    text-align: end;
}

.gamegenesis-step:nth-child(odd)::before {
    left: -25px;
}

.gamegenesis-step:nth-child(even)::before {
    right: -25px;
}

.gamegenesis-step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Nova Flat", Sans-serif;
    color: #fff;
}

.gamegenesis-step-description {
    font-size: 16px;
    margin: 0;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

@media (max-width: 768px) {
    .gamegenesis-step {
        padding: 30px 20px;
    }

    .gamegenesis-step::before {
        left: 10px !important;
        right: auto !important;
        top: -20px;
        transform: none;
    }
}
