/* Section Anti-triche - Basée sur le design Figma */
.heho-anti-cheat {
    background: var(--color-black);
    padding: 125px 0;
    position: relative;
    overflow: hidden;
}

.heho-anti-cheat__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/anti-cheat-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.heho-anti-cheat__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.996%, rgba(0, 0, 0, 1) 100%), 
                linear-gradient(90deg, rgba(143, 47, 17, 0.2) 0%, rgba(143, 47, 17, 0.2) 100%);
    z-index: 2;
}

.heho-anti-cheat__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.heho-anti-cheat__logo-left {
    width: 322px;
    height: 458px;
    background-image: url('../images/logo-hehokdo-large.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.heho-anti-cheat__content {
    border: 1px solid var(--color-white);
    border-radius: 10px;
    padding: 75px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    flex: 1;
    max-width: 1107px;
}

.heho-anti-cheat__content-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.heho-anti-cheat__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.heho-anti-cheat__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 438px;
    color: var(--color-white);
}

.heho-anti-cheat__title {
    font-family: var(--font-accent);
    font-size: var(--font-h2-desktop);
    line-height: var(--line-height-normal);
}

.heho-anti-cheat__title .bold {
    font-weight: 700;
}

.heho-anti-cheat__title .italic {
    font-weight: 300;
    font-style: italic;
}

.heho-anti-cheat__description {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: var(--font-text-desktop);
    line-height: var(--line-height-normal);
}

.heho-anti-cheat__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 452px;
}

.heho-anti-cheat__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.heho-anti-cheat__feature-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.heho-anti-cheat__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.heho-anti-cheat__feature-text {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    flex: 1;
}

.heho-anti-cheat__bottom-text {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    text-align: center;
}

.heho-anti-cheat__logo-right {
    width: 322px;
    height: 458px;
    background-image: url('../images/logo-hehokdo-large.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .heho-anti-cheat__inner {
        gap: 40px;
    }
    
    .heho-anti-cheat__logo-left,
    .heho-anti-cheat__logo-right {
        width: 250px;
        height: 350px;
    }
    
    .heho-anti-cheat__content {
        padding: 50px;
    }
    
    .heho-anti-cheat__text {
        width: 350px;
    }
    
    .heho-anti-cheat__features {
        width: 380px;
    }
}

@media (max-width: 1200px) {
    .heho-anti-cheat {
        padding: 75px 0;
    }
    
    .heho-anti-cheat__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .heho-anti-cheat__logo-left {
        order: 1;
        width: 250px;
        height: 350px;
    }
    
    .heho-anti-cheat__content {
        order: 2;
        width: 100%;
        max-width: 900px;
        padding: 40px;
    }
    
    .heho-anti-cheat__logo-right {
        order: 3;
        width: 250px;
        height: 350px;
    }
    
    .heho-anti-cheat__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .heho-anti-cheat__text,
    .heho-anti-cheat__features {
        width: 100%;
        max-width: 600px;
    }
    
    .heho-anti-cheat__features {
        align-items: center;
    }
    
    .heho-anti-cheat__feature {
        justify-content: flex-start;
        max-width: 600px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .heho-anti-cheat {
        padding: 50px 0;
    }
    
    .heho-anti-cheat__inner {
        gap: 20px;
    }
    
    .heho-anti-cheat__logo-left,
    .heho-anti-cheat__logo-right {
        width: 150px;
        height: 200px;
    }
    
    .heho-anti-cheat__content {
        padding: 25px;
        max-width: 100%;
    }
    
    .heho-anti-cheat__content-inner {
        gap: 25px;
    }
    
    .heho-anti-cheat__main {
        gap: 25px;
    }
    
    .heho-anti-cheat__title {
        font-size: var(--font-h2-mobile);
    }
    
    .heho-anti-cheat__description {
        font-size: var(--font-text-mobile);
    }
    
    .heho-anti-cheat__features {
        gap: 15px;
    }
    
    .heho-anti-cheat__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .heho-anti-cheat__feature-text {
        font-size: var(--font-text-mobile);
        text-align: center;
    }
    
    .heho-anti-cheat__bottom-text {
        font-size: var(--font-text-mobile);
    }
}

@media (max-width: 480px) {
    .heho-anti-cheat__logo-left,
    .heho-anti-cheat__logo-right {
        width: 120px;
        height: 160px;
    }
    
    .heho-anti-cheat__content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .heho-anti-cheat__title {
        font-size: 24px;
    }
    
    .heho-anti-cheat__description {
        font-size: 14px;
    }
    
    .heho-anti-cheat__feature-text {
        font-size: 13px;
    }
    
    .heho-anti-cheat__bottom-text {
        font-size: 13px;
        line-height: 1.4;
    }
}
