/* ===== Anti-Clone Protection Toggle ===== */
.anti-clone-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 0.1px solid rgba(121, 121, 121, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}


.anti-clone-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.anti-clone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.anti-clone-title {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-weight: 600;
}


/* BUTTON ANTI CLONE */
/* Modern Toggle Switch */
.toggle-wrapper {
    position: relative;
    margin-top: 0.3em;
}

.toggle-wrapper input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    background: rgba(100, 116, 139, 0.4);
    border-radius: 34px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-wrapper input[type="checkbox"]:checked+.toggle-slider {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.toggle-wrapper input[type="checkbox"]:checked+.toggle-slider::before {
    transform: translateX(24px);
}

.toggle-wrapper input[type="checkbox"]:focus+.toggle-slider {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}